
:root {
    --blue: #2f4f7f;
    --green: #1f9a5a;
    --orange: #f28c38;
    --dark: #0f172a;
    --light: #f8fafc;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
/* HERO SECTION */

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    font-weight: 600;
    color: var(--dark);
    transition: 0.3s;
    font-size: 0.85rem;
}

nav a:hover {
    color: var(--green);
}

/* Typography & Layout */
section {
    padding: 6rem 8%;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    opacity: 0.7;
}

span.highlight {
    color: var(--green);
}

/* Hero */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(248, 250, 252, 0.8), rgba(248, 250, 252, 0.8)), url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(31, 154, 90, 0.1);
    color: var(--green);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.7rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* Components */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary {
    background: var(--blue);
    color: white;
}

.btn-green {
    background: var(--green);
    color: white;
}

/* Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Team Section */
.team-member {
    text-align: center;
}

.team-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 5px solid var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }

    nav {
        margin-top: 1rem;
        display: none;
    }

    /* Simplified for demo */
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* HERO SECTION */
.hero-section {
    padding: 6rem 1.5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

/* TEXT */
.hero-tag {
    display: inline-block;
    /* Vertical and horizontal padding to match the elongated pill shape */
    padding: 0.6rem 2rem;

    /* Gradient from a sky blue to a lime/yellow-green */
    background: linear-gradient(to right, #5fb8d3, #b6d986);

    /* Deep navy/charcoal color for the text */
    color: #1a365d;

    /* Font adjustments */
    font-family: sans-serif; /* Use a clean sans-serif */
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;

    /* Perfect pill shape */
    border-radius: 999px;

    /* Optional: subtle smoothing */
    -webkit-font-smoothing: antialiased;
}

.hero-title {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.2rem;
}

.hero-title .highlight {
    color: var(--blue);
}

.hero-description {
    max-width: 520px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 2rem;
}

/* BUTTON */
.btn-primary {
    margin: 10px;
    display: inline-block;
    padding: 0.8rem 2.5rem; /* Increased horizontal padding for the elongated pill shape */

    /* Linear gradient from dark indigo/blue to a bright sky blue */
    background: linear-gradient(to right, #253a8a, #0ea5e9);

    color: #ffffff;
    font-family: 'Inter', sans-serif; /* A modern, clean sans-serif */
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;

    /* Perfect pill shape */
    border-radius: 999px;

    /* Match the subtle shadow from the image */
    box-shadow: 0 4px 15px rgba(37, 58, 138, 0.2);

    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    /* Slightly brighten the gradient on hover */
    filter: brightness(1.1);
    box-shadow: 0 8px 25px rgba(37, 58, 138, 0.35);
}

/* IMAGE SIDE */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 420px;
    height: auto;
}

/* CERTIFICATION BADGE */
.cert-badge {
    position: absolute;
    bottom: -1rem;
    right: 1rem;
    background: #ffffff;
    border-radius: 1rem;
    padding: 0.6rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.cert-badge img {
    width: 42px;
    height: auto;
}

.cert-badge span {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--dark);
}



/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        margin-top: 3rem;
    }

    .cert-badge {
        right: 50%;
        transform: translateX(50%);
    }
}

/* Presidential Impact Slider */
.presidential-container {
    max-width: 1100px;
    margin: 4rem auto;
    position: relative;
    background: #0f172a; /* Dark background for prestige */
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.pres-slides-wrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.pres-slide {
    display: none;
    height: 450px;
}

.pres-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pres-content {
    flex: 1;
    min-width: 300px;
    padding: 3rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pres-badge {
    background: #fbbf24;
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    align-self: flex-start;
    margin-bottom: 1rem;
}

.pres-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.pres-nav button {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.pres-nav button:hover {
    background: #22c55e;
}


/* Awards Slider Styling */
.awards-section {
    background: #ffffff;
    padding: 6rem 8%;
}

.awards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 40px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    min-height: 400px;
    flex-wrap: wrap;
}

.award-slide {
    display: none;
    width: 100%;
}

.award-flex {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.award-image {
    flex: 1;
    min-width: 300px;
}

.award-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 25px;
}

.award-text {
    flex: 1;
    min-width: 300px;
}

.year-tag {
    display: inline-block;
    background: var(--green);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 8px;
    font-weight: 800;
    margin-bottom: 1rem;
}

.award-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.award-text p {
    color: #64748b;
    line-height: 1.6;
}
/* Production Slideshow Styles */
.production-slider {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.slides {
    display: none;
    width: 100%;
}

.slides img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    text-align: center;
}

/* Next/Prev Buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background: rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background: var(--green);
}

/* Animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

:root {
    --blue: #2f4f7f;
    --green: #1f9a5a;
    --orange: #f28c38;
    --dark: #0f172a;
    --light: #f8fafc;
    --accent: #38bdf8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

/* ---------------- NAVIGATION ---------------- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 8%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

nav a {
    margin-left: 2.5rem;
    text-decoration: none;
    font-weight: 600;
    color: var(--dark);
    transition: 0.3s;
    font-size: 0.9rem;
}

nav a:hover {
    color: var(--green);
}

/* ---------------- HERO SECTION ---------------- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background: radial-gradient(circle at top right, rgba(31, 154, 90, 0.1), transparent),
    radial-gradient(circle at bottom left, rgba(47, 79, 127, 0.1), transparent);
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(31, 154, 90, 0.1);
    color: var(--green);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--dark);
}

.hero h1 span {
    background: linear-gradient(to right, var(--blue), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Enhanced Problem Section */
.problem-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.problem-visual {
    position: relative;
}

.problem-image-main {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    z-index: 2;
    position: relative;
}

/* Decorative background element */
.problem-visual::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--green);
    border-radius: 20px;
    opacity: 0.2;
    z-index: 1;
}

.problem-card-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.problem-mini-card {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 18px;
    display: flex;
    gap: 1.2rem;
    transition: 0.3s;
    border: 1px solid transparent;
}

.problem-mini-card:hover {
    background: white;
    border-color: var(--orange);
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.problem-mini-card i {
    font-size: 1.4rem;
    color: var(--orange);
    background: rgba(242, 140, 56, 0.1);
    padding: 1rem;
    border-radius: 12px;
    height: fit-content;
}

@media (max-width: 968px) {
    .problem-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .problem-mini-card:hover {
        transform: none;
    }
}



/* ---------------- INVESTOR STATS ---------------- */
.stats-bar {
    background: var(--dark);
    color: white;
    padding: 4rem 8%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h2 {
    font-size: 2.5rem;
    color: var(--green);
    margin-bottom: 0.5rem;
}

.stat-item p {
    opacity: 0.7;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* ---------------- THE REVOLUTION (FEATURES) ---------------- */
.revolution {
    padding: 8rem 8%;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.rev-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: 0.4s;
}

.rev-card:hover {
    border-color: var(--green);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.rev-card i {
    font-size: 2.5rem;
    color: var(--green);
    margin-bottom: 1.5rem;
}

/* Ensures consistency in the Innovation/Revolution grid */
.rev-card img {
    width: 100%;
    height: 250px; /* Fixed height for all images */
    object-fit: cover; /* Crops image to fill the area without distortion */
    border-radius: 15px;
    margin-bottom: 1.5rem;
    display: block;
}

.rev-card {
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensures cards themselves are also equal height */
}

/* ---------------- VISIONARY SECTION ---------------- */
.visionary {
    background: var(--blue);
    color: white;
    padding: 8rem 8%;
    border-radius: 0 100px 0 100px;
    margin: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.visionary img {
    width: 100%;
    border-radius: 20px;
    filter: grayscale(0.2) contrast(1.1);
}

/* ---------------- FOOTER ---------------- */
footer {
    background: #050a14;
    color: white;
    padding: 5rem 8% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Product Image Styling */
.product-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.product-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 500px; /* Fixed height to match your quality preference */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 968px) {
    .product-showcase {
        grid-template-columns: 1fr;
    }

    .product-image-container {
        height: 350px;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        text-align: center;
        justify-content: center;
        padding-top: 220px;   /* more space at the top */
        padding-bottom: 220px; /* more space at the bottom */
        padding-left: 6%;
        padding-right: 6%;
        min-height: auto;     /* prevents layout overflow */
        overflow-x: hidden;
    }

    .cta-group {
        justify-content: center;
        flex-direction: column;
    }

    .visionary {
        grid-template-columns: 1fr;
        border-radius: 0;
        margin: 0;
    }
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
}

.footer-logo {
    height: 120px;
}

/* Superiority/Co-Design Section */
.superior-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.process-steps {
    margin-top: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.step-number {
    background: var(--green);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.superior-image-stack {
    position: relative;
    padding: 2rem;
}

.main-superior-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.overlay-img {
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 50%;
    border: 5px solid white;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 968px) {
    .superior-grid {
        grid-template-columns: 1fr;
    }
}


.floating-socials {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    z-index: 999;
}

.floating-socials a {
    width: 46px;
    height: 46px;
    background: var(--green);
    color:white;
    border-radius: 50%;
    text-decoration:none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.floating-socials a:hover {
    transform: scale(1.1);
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}

.contact-desc {
    margin: 1.5rem 0 2.5rem;
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    background: white;
    padding: 1.4rem 1.6rem;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.contact-card i {
    font-size: 1.6rem;
    color: var(--green);
}

.contact-card h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
}

.contact-card p {
    margin: 0.2rem 0 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-card a {
    color: inherit;
    text-decoration: none;
}

.contact-socials {
    display: flex;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.contact-socials a {
    width: 48px;
    height: 48px;
    text-decoration: none;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-socials a:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(34,197,94,0.4);
}

.contact-cta {
    background: #0f172a;
    color: white;
    padding: 3rem;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.contact-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* MOBILE */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}
