﻿/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #0a1e3c;
    backdrop-filter: blur(10px);
    color: white;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column; /* forces vertical stack */
    line-height: 1.1;
}

.nav {
    display: flex;
}

    .nav a {
        margin: 0 12px;
        color: white;
        text-decoration: none;
    }

.menu-btn {
    display: none;
}

/* HERO */
.hero {
    position: relative;
    height: 85vh;
}

.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(10, 30, 60, 0.95) 0%, rgba(10, 30, 60, 0.85) 30%, rgba(10, 30, 60, 0.55) 55%, rgba(10, 30, 60, 0.2) 75%, transparent 100% );
}

.hero-content {
    position: relative;
    color: white;
    padding-top: 120px;
}

.hero-buttons {
    margin-top: 20px;
}

/* BUTTONS */
.btn-primary {
    background: linear-gradient(45deg, #ff8a00, #ff5e00);
    border: none;
    padding: 12px 20px;
    color: white;
    border-radius: 8px;
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    border: none;
    padding: 12px 20px;
    color: white;
    margin-left: 10px;
    border-radius: 8px;
}

/* STATS */
.stats-section {
    background: #f5f7fb;
    padding: 50px 0 30px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 22px;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

    .stat-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

/* ABOUT */
.about {
    margin-top: 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card img {
    width: 100%;
    border-radius: 10px;
}

/* WHY */
/* WHY SECTION BG */
.why-section {
    padding: 70px 0;
    background: linear-gradient(to bottom, #f8fbff, #eef3fa);
}

/* TITLE */
.section-title {
    font-size: 28px;
    margin-bottom: 30px;
    padding-left: 5px;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.why-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    /* HOVER */
    .why-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }

/* HEADER */
.why-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.icon {
    font-size: 22px;
    background: linear-gradient(45deg, #ff8a00, #ff5e00);
    color: white;
    padding: 8px;
    border-radius: 10px;
}

/* TEXT */
.why-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* FOOTER */
.why-footer {
    margin-top: 15px;
    font-weight: 600;
    color: #ff7a00;
    font-size: 14px;
}

/* OPTIONAL decorative background */
.why-card::after {
    content: "";
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1), transparent);
}

/* CTA */
.cta {
    position: relative;
    height: 380px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* IMAGE */
.cta-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(10, 30, 60, 0.95) 0%, /* strong left */
    rgba(10, 30, 60, 0.9) 25%, rgba(10, 30, 60, 0.75) 50%, /* mid readable */
    rgba(10, 30, 60, 0.6) 70%, rgba(10, 30, 60, 0.5) 100% /* keep map visible */
    );
}
/* CONTENT */
.cta-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
}

/* SMALL TITLE */
.cta-top {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}

/* MAIN TITLE */
.cta-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* LIST */
.cta-points {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 8px 20px;
    margin-bottom: 20px;
    list-style: none;
    padding: 0;
}

    .cta-points li::before {
        content: "✔";
        color: #4da3ff; /* keep OR change to white for max contrast */
        font-weight: bold;
    }

.cta-content h2 {
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.cta-content li {
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    margin: 10px;
}

    .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

    .card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .card h3 {
        padding: 15px;
    }

.about,
.why {
    padding: 60px 0;
}

/* FOOTER */
.footer {
    background: #0a1e3c;
    color: #cbd5e1;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer h3,
.footer h4 {
    color: white;
}

.footer a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-top: 8px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}

.section-soft {
    position: relative;
}

    .section-soft::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.6), transparent 60%);
        z-index: 0;
        pointer-events: none;
    }

    .section-soft > * {
        position: relative;
        z-index: 1;
    }

/* HERO */
.about-hero {
    position: relative;
    height: 45vh;
}

    .about-hero .hero-img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about-hero .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(10,30,60,0.9), rgba(10,30,60,0.4));
    }

.hero-content {
    position: relative;
    color: white;
    padding-top: 80px;
}

/* STORY */
.about-story {
    padding: 70px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.story-image img {
    width: 100%;
    border-radius: 16px;
}

/* TIMELINE */
/* TIMELINE WRAPPER */
.timeline {
    position: relative;
    margin-top: 40px;
    padding-left: 60px;
}

    /* VERTICAL LINE */
    .timeline::before {
        content: "";
        position: absolute;
        left: 20px;
        top: 8px;
        bottom: 8px;
        width: 2px;
        background: #ff7a00;
    }

/* ROW */
.timeline-row {
    position: relative;
    display: grid;
    grid-template-columns: 80px 180px 1fr;
    align-items: start;
    margin-bottom: 35px;
}

    /* DOT */
    .timeline-row::before {
        content: "";
        position: absolute;
        left: -43px;
        top: 8px;
        width: 12px;
        height: 12px;
        background: #ff7a00;
        border-radius: 50%;
    }

/* YEAR */
.year {
    color: #ff7a00;
    font-weight: 600;
}

/* TITLE */
.title {
    font-weight: 600;
}

/* DESCRIPTION */
.desc {
    color: #555;
    line-height: 1.6;
}

/* INFRA */
.infra {
    padding: 70px 0;
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.infra-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
}

    .infra-card img {
        width: 100%;
        height: 140px;
        object-fit: cover;
    }

/* CERT */
.cert-block {
    margin-top: 60px;
}

    /* TITLE */
    .cert-block h3 {
        margin-bottom: 10px;
    }

/* DESC */
.cert-desc {
    color: #666;
    margin-bottom: 25px;
    max-width: 400px;
}

/* GRID */
.cert-grid {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

/* CARD */
.cert-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

    /* HOVER */
    .cert-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 35px rgba(0,0,0,0.12);
    }

/* BUTTON */
.cert-btn {
    display: inline-block;
}

/* CTA */
.cta-about {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(10, 30, 60, 0.85) 0%, rgba(10, 30, 60, 0.7) 40%, rgba(10, 30, 60, 0.5) 70%, rgba(10, 30, 60, 0.3) 100% );
}

.cta-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

    /* TEXT */
    .cta-content h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
/* MAIN BACKGROUND */
.about-main {
    padding: 80px 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.08), transparent 40%), radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.06), transparent 40%), linear-gradient(to bottom, #f8fbff, #eef3fa);
}

/* GRID */
.main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

/* LEFT */
.desc {
    color: #555;
    margin-bottom: 30px;
}

/* TIMELINE */
.timeline {
    position: relative;
    margin-top: 30px;
}

    .timeline::before {
        content: "";
        position: absolute;
        left: 22px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: #ff7a00;
    }

/* ITEM */
.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

/* LEFT SIDE */
.timeline-left {
    position: relative;
    width: 60px;
}

/* DOT */
.dot {
    width: 12px;
    height: 12px;
    background: #ff7a00;
    border-radius: 50%;
    position: absolute;
    left: 16px;
    top: 6px;
}

/* YEAR */
.year {
    margin-left: 35px;
    color: #ff7a00;
    font-weight: 600;
}

/* CONTENT */
.timeline-content h4 {
    margin: 0;
}

.timeline-content p {
    margin-top: 5px;
    color: #555;
}

/* RIGHT */
.main-img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 20px;
}

.infra-title {
    margin-top: 10px;
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.infra-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
}

    .infra-card img {
        width: 100%;
        height: 110px;
        object-fit: cover;
    }

/* CERT */
.cert-block {
    margin-top: 50px;
}

.cert-desc {
    color: #555;
    margin-bottom: 20px;
}

/* GRID */
.cert-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* CARD */
.cert-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

    .cert-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

/* BUTTON */
.cert-btn {
    margin-top: 25px;
}

/* CTA */
.cta-about {
    background: linear-gradient(135deg, #0a1e3c, #1f3b75);
    color: white;
    text-align: center;
    padding: 80px 0;
}

/* HERO */
.contact-hero {
    position: relative;
    height: 45vh;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,30,60,0.95), rgba(10,30,60,0.5));
}

.hero-content {
    position: relative;
    color: white;
    padding-top: 120px;
}

.contact-map-section {
    padding: 80px 0;
    background: #f8fafc;
}

.map-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-details {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

    .contact-details h3 {
        margin-bottom: 20px;
    }

    .contact-details p {
        margin-bottom: 15px;
        color: #374151;
    }
/* OPTIONS */
.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.option-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

    .option-card .icon {
        font-size: 28px;
        margin-bottom: 10px;
    }

.contact-main {
    background: linear-gradient(to bottom, #f5f8fc, #eaf1f8);
    padding: 80px 0;
}

/* MAIN GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 0;
}

/* LEFT */
.contact-info ul {
    margin-top: 20px;
}

.contact-info li {
    margin-bottom: 10px;
}

.btn-primary {
    background: linear-gradient(45deg, #ff8a00, #ff5e00);
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(255, 94, 0, 0.3);
    }

/* FORM */
.contact-form {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

/* INPUTS */
input, textarea {
    background: #f9fbff;
    border: 1px solid #dbe3ee;
    border-radius: 10px;
    padding: 14px;
    transition: all 0.2s ease;
}

    input:focus, textarea:focus {
        border-color: #3b82f6;
        outline: none;
        background: white;
    }

/* MAP */
.contact-map iframe {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    margin-top: 20px;
}

.whatsapp-btn {
    display: block;
    margin-top: 12px;
    text-align: center;
    background: #25D366;
    padding: 14px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
}
/* LEFT SIDE */
.contact-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-info p {
    color: #4a5568;
    line-height: 1.6;
}
/* MOBILE */
@media (max-width: 768px) {
    .options-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }
}

.contact-info ul {
    margin-top: 20px;
}

.contact-info li {
    margin-bottom: 12px;
    font-size: 15px;
}
/* MOBILE */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-top: 80px;
    }
}

@media (max-width: 768px) {
    .stats {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 26px;
    }
}

.fp-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HERO */
.fp-hero {
    position: relative;
    height: 60vh;
    background-size: cover;
    background-position: center;
}

.fp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0a1e3c, rgba(10,30,60,0.4));
}

.fp-hero-card {
    position: relative;
    color: white;
    padding-top: 120px;
    max-width: 600px;
}

.fp-kicker {
    color: #ff8a00;
}

/* SECTION */
.fp-section {
    padding: 80px 0;
    background: #f8fbff;
}

    .fp-section.soft {
        background: linear-gradient(to bottom, #eef3fa, #f8fbff);
    }

.fp-title h2 {
    margin-bottom: 5px;
}

.fp-title p {
    color: #666;
    margin-bottom: 30px;
}

/* GRID */
.fp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */
.doc-card {
    position: relative;
    padding: 25px;
    border-radius: 18px;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.6);
    transition: all 0.35s ease;
    overflow: hidden;
}

    .doc-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #ff8a00, #1f3b75);
    }
    /* HOVER */
    .doc-card:hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }

    .doc-card a {
        display: inline-block;
        margin-top: 15px;
        color: #ff6a00;
        font-weight: 600;
    }

.doc-icon {
    font-size: 26px;
    margin-bottom: 10px;
}
/* CTA */
.fp-cta {
    position: relative;
    padding: 80px 0;
    background-size: cover;
}

.fp-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,30,60,0.8);
}

.fp-cta .fp-container {
    position: relative;
    color: white;
    text-align: center;
}

.doc-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

/* TEXT */
.doc-card p {
    color: #555;
    font-size: 14px;
}

.doc-card a {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    background: linear-gradient(45deg, #ff8a00, #ff5e00);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

    .doc-card a:hover {
        transform: scale(1.05);
    }

.fancy-bg {
    background-size: cover;
    background-position: center;
    position: relative;
}

    /* keep content above overlay */
    .fancy-bg .fp-container {
        position: relative;
    }

.fp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.fp-title h2 {
    font-size: 28px;
    font-weight: 700;
}

.fp-title p {
    color: #6b7280;
    font-size: 15px;
}

.doc-card:hover::before {
    height: 4px;
    background: linear-gradient(90deg, #ff8a00, #ff3c00);
}

.fancy-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* OVERLAY */
.fp-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.35); /* 🔥 lighter */
    backdrop-filter: blur(4px);
}

.fp-container {
    position: relative;
    z-index: 2;
}

.fp-cta p {
    color: #ffffff;
    font-weight: 500; /* optional for better visibility */
}
/* BUTTON STYLE */
.btn-download {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #ff7a00, #ff9a2f);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-download:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(255,122,0,0.3);
    }

/* REMOVE background from normal section OR override */

.contact-dropdown {
    position: relative;
    display: inline-block;
}

    /* 🔥 invisible bridge to prevent gap */
    .contact-dropdown::after {
        content: "";
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        height: 12px; /* bridge area */
    }

/* dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%; /* remove gap here */
    right: 0;
    min-width: 220px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    padding: 8px 0;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 1000;
}

/* show */
.contact-dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* links */
.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
}

    .dropdown-menu a:hover {
        background: #f2f2f2;
    }

/* 🔥 SHOW ONLY ON HOVER */
.contact-dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.company-name {
    font-size: 18px;
    font-weight: 700;
}

/* tagline BELOW */
.tagline {
    font-size: 12px;
    color: #ccc;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* colors */
.orange {
    color: #ff6a00;
}

.blue {
    color: #1e3a8a;
}

/* ================= FORM ================= */

.contact-form h2,
.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 10px;
}

.form-sub {
    font-size: 14px;
    margin-bottom: 25px;
    max-width: 420px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    margin-top: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border: 1px solid #ccc;
    background: rgba(255,255,255,0.95);
    border-radius: 4px;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.note {
    font-size: 12px;
    margin: 15px 0;
    color: #444;
}

.send-btn {
    background: #111;
    color: #fff;
    padding: 14px 42px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
}

    .send-btn:hover {
        background: #000;
    }

.input,
.textarea {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border: 1px solid #ccc;
    background: rgba(255,255,255,0.95);
    border-radius: 4px;
    display: block;
}
/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
    /* HERO */
    .fp-hero {
        height: auto;
        padding: 80px 0;
    }

    .fp-hero-card {
        padding-top: 40px;
        text-align: center;
        max-width: 100%;
    }

        .fp-hero-card h1 {
            font-size: 26px;
            line-height: 1.3;
        }

        .fp-hero-card p {
            font-size: 14px;
        }

    /* SECTIONS */
    .fp-section {
        padding: 50px 0;
    }

    .fp-title {
        text-align: center;
    }

        .fp-title h2 {
            font-size: 22px;
        }

        .fp-title p {
            font-size: 14px;
        }

    /* GRID → STACK */
    .fp-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* CARD */
    .doc-card {
        padding: 18px;
    }

        .doc-card h3 {
            font-size: 16px;
        }

        .doc-card p {
            font-size: 13px;
        }

        .doc-card a {
            font-size: 14px;
        }

    /* CTA */
    .fp-cta {
        padding: 60px 0;
        text-align: center;
    }

        .fp-cta h2 {
            font-size: 22px;
        }

        .fp-cta p {
            font-size: 14px;
            color: #ffffff;
            font-weight: 500;
        }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .logo span {
        display: none; /* only show logo icon on mobile */
    }

    .logo img {
        height: 32px;
    }
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
    }

    .infra-grid {
        grid-template-columns: 1fr;
    }

    .cert-grid {
        flex-direction: column;
    }

    .hero-content {
        padding-top: 50px;
    }
}

/* HERO */
.contact-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    color: white;
    padding-bottom: 100px;
}

.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,30,60,0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-actions {
    margin-top: 20px;
}

.btn {
    padding: 10px 18px;
    border-radius: 8px;
    margin-right: 10px;
    text-decoration: none;
}

    .btn.primary {
        background: #ff7a00;
        color: white;
    }

    .btn.whatsapp {
        background: #25D366;
        color: white;
    }

.quick-contact-section {
    position: relative;
    margin-top: -80px;
    z-index: 5;
}

.quick-contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 0 20px;
}

.quick-contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.contact-card {
    background: white;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    .contact-card span {
        font-size: 28px;
        display: block;
        margin-bottom: 10px;
    }

    .contact-card h4 {
        margin: 10px 0 5px;
        font-weight: 600;
    }

    .contact-card p {
        color: #555;
        font-size: 14px;
    }

    .contact-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    }

/* FORM */
.contact-form {
    background: #f8f9fb;
    padding: 30px;
    border-radius: 16px;
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px;
        margin-bottom: 15px;
        border-radius: 8px;
        border: 1px solid #ddd;
    }

.send-btn {
    width: 100%;
    padding: 14px;
    background: black;
    color: white;
    border: none;
    border-radius: 8px;
}

/* MAP */
.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: 16px;
    border: none;
}

.sustain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

    .sustain-grid img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 14px;
        transition: all 0.4s ease;
        cursor: pointer;
    }

        /* Hover luxury effect */
        .sustain-grid img:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        }
/* MOBILE */
@media (max-width: 768px) {
    .quick-contact {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.fp-cta {
    margin-top: 34px;
    text-align: center;
    background: rgba(255, 255, 255, 0.90);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
}

    .fp-cta h3 {
        margin: 0 0 8px;
        font-size: 24px;
        font-family: Georgia, serif;
        color: #111;
    }

    .fp-cta p {
        margin: 0 0 16px;
        color: #ffffff;
    }

/* SECTION WIDTH + SPACING */
section.max-w-7xl {
    max-width: 1200px; /* reduce width */
    padding-top: 60px;
    padding-bottom: 60px;
}

/* HEADER */
section header h1 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    color: #111;
}

section header p {
    font-size: 15px;
    color: #6b7280;
}

/* GRID FIX */
.grid {
    gap: 32px !important; /* reduce spacing */
}

    /* CARD */
    .grid a,
    .grid div.group {
        padding: 18px;
        border-radius: 6px;
        border: 1px solid #e5e7eb;
        transition: all 0.3s ease;
        background: #fff;
    }

        /* HOVER */
        .grid a:hover,
        .grid div.group:hover {
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            transform: translateY(-4px);
        }

/* IMAGE CONTAINER */
.img-category {
    height: 220px; /* 🔥 THIS FIXES BIG IMAGE ISSUE */
    border-radius: 4px;
}

/* IMAGE */
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TITLE */
.grid h2 {
    font-size: 18px;
    font-weight: 500;
    color: #111;
}

/* DESCRIPTION */
.grid p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .img-category {
        height: 200px;
    }
}

@media (max-width: 640px) {
    .img-category {
        height: 180px;
    }

    section header h1 {
        font-size: 24px;
    }
}

/* GRID - FORCE 3 CARDS */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* always 3 */
    gap: 30px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* CARD */
.product-grid a,
.product-grid .group {
    display: block;
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

    /* HOVER */
    .product-grid a:hover {
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        transform: translateY(-5px);
    }

/* IMAGE BOX (CRITICAL FIX) */
.img-category {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 4px;
}

    /* IMAGE */
    .img-category img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* TEXT */
.product-grid h2 {
    font-size: 18px;
    margin-top: 12px;
    margin-bottom: 6px;
    color: #111;
}

.product-grid p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}
/* CENTER CONTENT */
.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* SECTION SPACING */
.product-section {
    padding: 60px 0;
}

.fp-title-row h2 {
    color: #ffffff;
    font-weight: 700; /* bold */
}

.fp-title-row p {
    color: #ffffff;
    font-weight: 500; /* semi-bold */
}

/* OPTIONAL (recommended for better visibility on image) */
.fp-title-row {
    position: relative;
    z-index: 2;
}

    /* Add subtle text shadow for readability */
    .fp-title-row h2,
    .fp-title-row p {
        text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    }
/* ensure hover works on div cards */
.product-grid .group {
    transition: all 0.3s ease;
    cursor: default; /* or pointer if you want */
}

    /* card lift effect */
    .product-grid .group:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }

        /* image zoom on hover */
        .product-grid .group:hover .img-cover {
            transform: scale(1.05);
        }

/* FLOATING CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

/* BUTTON */
.cta-toggle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #0d6efd;
    color: white;
    border: none;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* PANEL */
.cta-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 260px;
    background: white;
    border-radius: 14px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s ease;
}

    /* SHOW PANEL */
    .cta-panel.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* TEXT */
    .cta-panel h4 {
        margin-bottom: 5px;
    }

    .cta-panel p {
        font-size: 13px;
        color: #666;
        margin-bottom: 10px;
    }

/* BUTTONS */
.cta-btn {
    display: block;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    text-align: center;
}

    /* COLORS */
    .cta-btn.call {
        background: #0d6efd;
    }

    .cta-btn.whatsapp {
        background: #25D366;
    }

    .cta-btn.email {
        background: #6c757d;
    }
/* FIX CLICK ISSUE */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999; /* increase */
}

.hero-overlay,
.cta-overlay {
    pointer-events: none;
}

.hero {
    position: relative;
    height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding-top: 180px;
}

    .hero-content h1,
    .hero-content p {
        pointer-events: none;
    }

.hero-overlay {
    background: rgba(0, 20, 40, 0.75);
}

@media (max-width: 768px) {
    .hero {
        height: 75vh; /* smaller height for mobile */

        background-size: cover; /* keep cover */
        background-position: center top; /* 🔥 IMPORTANT */
    }

    .hero-content {
        padding-top: 120px; /* less spacing */
        padding-left: 20px;
        padding-right: 20px;
        max-width: 100%;
    }

        .hero-content h1 {
            font-size: 26px;
            line-height: 1.3;
        }

        .hero-content p {
            font-size: 14px;
            line-height: 1.5;
        }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

        .hero-buttons a {
            width: 100%;
            text-align: center;
        }
}

@media (max-width: 768px) {
    .hero-buttons a {
        width: auto; /* ❌ remove full width */
        padding: 10px 16px; /* 🔥 smaller size */
        font-size: 14px;
        border-radius: 8px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* 👈 align left instead of stretch */
        gap: 8px;
    }

    /* PRIMARY BUTTON */
    .btn-primary {
        background: #ff7a00;
    }

    /* SECONDARY BUTTON */
    .btn-secondary {
        background: rgba(255,255,255,0.15);
    }
}

@media (max-width: 768px) {
    .main-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .left,
    .right {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 60vh;
        position: relative;
    }

        .about-hero .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-hero .hero-content {
            padding-top: 100px;
            text-align: left;
        }

        .about-hero h1 {
            font-size: 26px;
        }

        .about-hero p {
            font-size: 14px;
        }
}

@media (max-width: 768px) {
    .timeline-row {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 10px 0;
    }

        .timeline-row .year {
            font-weight: bold;
            font-size: 14px;
        }
}

@media (max-width: 768px) {
    .infra-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .infra-card img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .cert-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .sustain-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

        .sustain-grid img {
            width: 100%;
            height: auto;
        }
}

@media (max-width: 768px) {
    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    .desc,
    .intro,
    .infra-desc,
    .closing {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    height: 100vh;
    background: #0b1f3a;
    color: white;
    z-index: 9999;
    padding: 20px;
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s ease;
}

/* HEADER */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

    .mobile-menu-header button {
        background: none;
        border: none;
        font-size: 24px;
        color: white;
        cursor: pointer;
    }

/* LINKS */
.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .mobile-menu-links a {
        color: white;
        font-size: 18px;
        text-decoration: none;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

/* ANIMATION */
@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}