html {
    scroll-behavior: smooth;
}

body.no-scroll {
    overflow: hidden;
}

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}


/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #ffffff;
    /* Default white for the rest of the site */
    color: #333;
    overflow-x: hidden;
    /* Prevent horizontal scrollbar */
}

/* ============================
           3. GLOBE HERO SECTION (New)
           ============================ */
#globe-hero-section {
    /* This section gets the dark gradient, NOT the body */
    background: linear-gradient(135deg, #020617 0%, #0B1120 40%, #1e3a8a 100%);
    min-height: 100vh;
    /* Takes full screen height */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    /* Space for fixed header */
    position: relative;
    color: white;
}

.hero-container-globe-content {
    display: flex;
    flex-direction: row;
    background: linear-gradient(180deg,
            #07134b 0%,
            #182647 35%,
            #1e3a8a 65%,
            #93a4ff 85%,
            #ffffff 100%);
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 2rem 5%;
    z-index: 10;
}

/* Text Side */
.content-left {
    flex: 1;
    max-width: 600px;
    padding-right: 2rem;
    z-index: 2;
}

.content-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-left p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
}

.btn-primary-globe {
    display: inline-block;
    background-color: #1675FF;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 14px 0 rgba(22, 117, 255, 0.39);
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary-globe:hover {
    background-color: #3b8aff;
    transform: translateY(-2px);
}

/* Globe Side */
.visual-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe2d {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 1/1;
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
    outline: none;
    cursor: grab;
}

canvas:active {
    cursor: grabbing;
}


/* ===== RESPONSIVE FIX ===== */
@media (max-width: 968px) {

    /* 1. Fix the Section Wrapper */
    #globe-hero-section {
        /* Stop forcing content to the center, let it start from top */
        align-items: flex-start;

        /* Add extra padding so text starts clearly below the navbar */
        padding-top: 140px;

        /* Allow the section to grow taller than the screen if needed */
        height: auto;
        min-height: 100vh;
    }

    /* 2. Fix the Inner Container */
    .hero-container-globe-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 80px;
        /* Add breathing room at bottom */
    }

    .content-left {
        padding-right: 0;
        margin-bottom: 3rem;
        max-width: 100%;
    }

    h1 {
        font-size: 2.5rem;
        /* Slightly smaller for mobile to save space */
    }

    p {
        margin-left: auto;
        margin-right: auto;
    }

    .visual-right {
        width: 100%;
        height: 50vh;
        /* Keep globe visible */
    }
}


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

.btn {
    background: #0073e6;
    color: #fff;
    padding: 8px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
    margin-right: 10px;
}

.btn {
    display: inline-block;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #005bb5;
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 30px;
    color: #0073e6;
    cursor: pointer;
    padding: 5px 8px;
}

/* MOBILE STYLES */
@media (max-width: 900px) {
    .container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 8px 12px !important;
        /* Reduced from default 12px 20px */
        gap: 0 !important;
        /* No gap between logo/nav/cta */
        min-height: 50px;
    }

    .logo {
        flex-shrink: 1;
        max-width: 45%;
        /* Constrain logo */
    }

    .logo-text {
        font-size: 14px !important;
        letter-spacing: -0.04em;
        /* Tighter spacing */
        gap: 1px !important;
        /* Reduce icon-text gap */
    }

    .cta {
        flex: 0 0 auto !important;
        display: flex;
        align-items: center;
        gap: 4px !important;
        /* Minimal space between btn and toggle */
        margin-left: auto;
        /* Push to right edge */
    }

    .btn {
        padding: 6px 8px !important;
        /* Smaller btn */
        font-size: 12px !important;
        white-space: nowrap;
        flex-shrink: 1;
    }

    .nav-toggle {
        padding: 2px 4px !important;
        font-size: 24px !important;
        /* Slightly smaller toggle */
        margin: 0 !important;
    }

    .site-header {
        position: fixed !important;
        /* Ensure it stays fixed */
        z-index: 1000 !important;
        left: 10px !important;
        right: 10px !important;
        top: 15px;
        width: auto;
        /* Reset width */
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        /* Adjust this to sit right below your header */

        /* FIX: Make it wider than the parent to cover the screen edges */
        left: -10px;
        width: calc(100% + 20px);
        /* 100% of parent + 10px left + 10px right */

        min-height: 50vh;
        /* Optional: Adjust height as needed */
        padding: 20px;
        background: #ffffff;
        /* Ensure background is solid white */
        border-radius: 12px;
        /* Matches your header style */

        /* Shadow to separate it from content */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

        display: none;
        flex-direction: column;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-toggle {
        display: inline-block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 8px;
        padding: 16px 0;
        align-items: flex-start;
    }

    .nav-menu a {
        color: #000000 !important;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .logo-text {
        font-size: 12px !important;
    }

    .btn {
        padding: 4px 6px !important;
        font-size: 11px !important;
    }
}



.logo-text {
    font-family: "Poppins", sans-serif;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: #0073e6;
}

.logo a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}



.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s;
}

/* When scrolled */
.scrolled .nav-menu a {
    color: #000000;
}

.nav-menu a:hover {
    color: #0073e6;
}

/* Hero Section */

/* Background video wrapper */
.top-bg-video-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    /* full screen height for nav + hero */
    overflow: hidden;
}

/* The video itself */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ensures video covers the area */
    z-index: -1;
    /* put video behind content */
}

/* Header transparent over video */
.site-header {
    position: fixed;
    top: 15px;
    left: 40px;
    /* increase left spacing */
    right: 40px;
    /* increase right spacing */

    width: auto;
    /* IMPORTANT */
    border-radius: 16px;

    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);

    z-index: 1000;
}


/* Hero section sits on top of video */
.hero-section {
    position: relative;
    color: #fff;
    /* white text for contrast */
    padding: 120px 20px 80px;
    /* top padding to account for header */
    text-align: center;
    z-index: 1;
}

.hero-title,
.hero-subtitle {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    /* make text readable */
}


.hero-container {
    max-width: 900px;
    text-align: start;
    padding-top: 30px;
    padding-left: 60px;
    padding-right: 60px;
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 600px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: start;
    gap: 15px;
    margin-bottom: 60px;
}



.btn-primary {
    background: #0073e6;
    color: #fff;
}

.btn-primary:hover {
    background: #005bb5;
}

.btn-outline {
    background: transparent;
}

.btn-outline:hover {
    color: #fff;
}

/* Counters */
.hero-counters {
    display: flex;
    gap: 30px;
}

.counter-box {
    border-left: 1px solid #f5f5f5;
    border-radius: 8px;
    min-width: 219px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: start;
    transition: transform 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-5px);
}

.counter-box h2 {
    font-size: 16px;
    font-weight: 700;
    color: #0582ff;
    margin-bottom: 10px;
}

.counter-box p {
    font-size: 15px;
    color: #ffffff;
}


/* Submenu */
.has-submenu {
    position: relative;
}

.has-submenu:hover .submenu {
    display: block;
}

.submenu {
    display: none;
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
}

.submenu li {
    padding: 8px 16px;
}

.submenu a {
    color: #333;
    display: block;
}

.submenu a:hover {
    background: #f5f5f5;
}

/* CTA Button */
.btn {
    display: inline-block;
    background: #0073e6;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.btn:hover {
    background: #005bb5;
}


/* Section */

.features {
    padding: 50px 20px;
    background: #f9f9f9;
}

.features .container {
    display: grid !important;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature .icon {
    font-size: 40px;
    text-align: start;
    color: #0073e6;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 19px;
    font-weight: 600;
    text-align: start;
    margin-bottom: 10px;
    color: #333;
    text-transform: capitalize;
}

.feature p {
    font-size: 18px;
    color: #555;
    text-align: start;
    line-height: 1.3;
}

@media (max-width:700px) {
    .feature {
        margin-bottom: 15px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .features .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features .container {
        grid-template-columns: 1fr;
    }
}

/* WHY   Section */
.why-section {
    background: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.why-container {
    max-width: 1200px;
    margin: auto;
}

.why-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #222;
}

/* Grid */
.why-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    text-align: start;
}

/* Cards */
.why-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    flex: 1 1 calc(33.333% - 30px);
    max-width: 350px;
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: start;
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-card h5 {
    font-size: 20px;
    margin: 15px 0 10px;
}

.why-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Icon */
.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 15px;
    padding: 4px;
    border: 1px solid #0073e6;
    background: #6595fc;
}

.why-icon svg {
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 992px) {
    .why-card {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 600px) {
    .why-grid {
        flex-direction: column;
        align-items: center;
    }

    .why-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Trusted By Section */

.trusted-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.trusted-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trusted-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.trusted-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    color: #555;
}

.trusted-logos {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 40px;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    justify-content: center;
}

.trusted-logo {
    flex: 0 0 auto;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trusted-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.trusted-logo img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Optional: Hide scrollbar */
.trusted-logos::-webkit-scrollbar {
    display: none;
}

.trusted-logos {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Expertise */
.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.expertise-block {
    flex: 1;
    background: #f6f8ff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Allow wrapping of blocks */
.expertise-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.block-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.logo-item img {
    max-width: 100px;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.logo-item img:hover {
    transform: scale(1.1);
}

/* Section Styling */
.expertise-section {
    padding: 50px 20px;
    text-align: center;
    background: #f9f9f9;
}

.expertise-section .section-title {
    font-size: 40px;
    margin-bottom: 40px;
    font-weight: bold;
    color: #333;
}

.section-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
    /* reduced to avoid overflow */
    box-sizing: border-box;
}

/* ===================== */
/* ✅ Responsive Fixes   */
/* ===================== */

/* Medium screens (≤1200px) */
@media (max-width: 1200px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets (≤768px) */
@media (max-width: 768px) {
    .expertise-row {
        flex-direction: column;
        /* stack blocks */
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .logo-item img {
        max-width: 90px;
    }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
    .logo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .logo-item img {
        max-width: 80px;
    }

    .expertise-section .section-title {
        font-size: 28px;
    }
}


/* .logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
} */

.logo-item {
    border: 1px solid #ddd;
    /* border around each logo cell */
    padding: 15px;
    /* gap between logo and border */
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    /* optional: white background */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* .logo-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
} */

/* Call to Action Section */
.cta-section {
    background: #f9f9f9;
    padding: 50px 20px;
}

.cta-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    /* vertically center */
    justify-content: space-between;
    gap: 300px;
    flex-wrap: nowrap;
    /* prevent wrapping */
}

.cta-text {
    flex: 1;
    /* take available space */
    min-width: 0;
    /* allow shrinking */
}

.cta-text h6 {
    font-size: 40px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
    white-space: normal;
    /* allow multi-line wrapping */
    word-break: break-word;
    /* break long text instead of pushing */
}

.cta-btn {
    flex-shrink: 0;
    /* keep button on the right */
}

.cta-btn a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0073e6;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
    white-space: nowrap;
    /* button text never wraps */
}

.cta-btn a:hover {
    background: #005bb5;
}

/* =========================
   CONTACT FORM
========================= */

/* SECTION HEADER */

.form-header {
    text-align: center;
    margin: 60px auto 0;
}

.form-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

/* GRID */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .form-title {
        font-size: 32px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}


.form-wrapper {
    background: #ffffff;
    padding: 120px 0;
    font-family: "Poppins", sans-serif;
}

.form-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

/* LEFT */
.form-contact-details {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    align-self: start;
}

.link-contact {
    margin-bottom: 8px;
}

.link-inline {
    color: #0073e6;
    text-decoration: none;
    font-weight: 500;
}

/* FORM */
.form-2 {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.typo-label {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.input-text,
.input-text-area {
    border: 1px solid #ddd;
    padding: 16px 18px;
    font-size: 16px;
    border-radius: 10px;
    outline: none;
    transition: border 0.2s ease;
}

.input-text:focus,
.input-text-area:focus {
    border-color: #0073e6;
}

.input-text-area {
    min-height: 120px;
    resize: vertical;
}

/* SELECT */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    width: 100%;
}

.select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 14px;
}

/* CHECKBOX */
.checkbox-field {
    margin-top: 10px;
}

.checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-wrap input {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 1.5px solid #999;
    border-radius: 4px;
    position: relative;
}

.checkbox-wrap input:checked+.checkbox-custom::after {
    content: "✓";
    position: absolute;
    font-size: 12px;
    left: 3px;
    top: -1px;
}

.checkbox-label {
    font-size: 14px;
}

/* BUTTON */
.form-2 .btn-primary {
    margin-top: 10px;
    background: #0073e6;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    width: 22%;
    cursor: pointer;
    box-shadow: 0 10px 19px #22222247;
    transition: background 0.2s ease;
}

.form-2 .btn-primary:hover {
    background: #cc6940;
}

/* CONTACT BELOW BUTTON */
.contact-details {
    margin-top: 10px;
}

@media (max-width: 900px) {

    .form-inner {
        display: flex;
        flex-direction: column;
    }

    .form-contact-details {
        position: static;
        /* 🔥 reset sticky */
        top: auto;
        transform: none;
        align-self: stretch;

        margin-bottom: 32px;
        /* spacing above form */
    }

    .form {
        width: 100%;
    }

}

/* =========================
   FOOTER
========================= */

.footer-title {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #0073e6;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    color: #1850ca;
    /* brand accent */
}

.brand-icon svg {
    display: block;
    height: 30px;
    width: 30px;
}

.footer {
    background: #f6f6f6;
    padding: 80px 0 40px;
    font-family: "Poppins", sans-serif;
}

.container-medium {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-wrapper {
    position: relative;
}

/* -------------------------
   TOP GRID
-------------------------- */

.f-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.f-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.f-col.right {
    align-items: flex-start;
}

/* -------------------------
   LOGO + SOCIAL
-------------------------- */

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

.f-social {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

.soc-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.soc-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.img-soc-icon {
    width: 16px;
    height: 16px;
}

/* -------------------------
   CONTACT
-------------------------- */

.f-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
}

/* -------------------------
   LINKS & TITLES
-------------------------- */

.footer-link {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.footer-link:hover {
    opacity: 1;
}

.typo-eyebrow-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.typo-eyebrow-title.orange {
    color: #0073e6;
}

/* -------------------------
   LEGAL
-------------------------- */

.f-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.typo-xs {
    font-size: 13px;
    color: #555;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: #000;
}

.separator {
    opacity: 0.4;
}


/* ---------- Responsive Header ---------- */

/* ------------------ Responsive ------------------ */

/* Tablet */
@media (max-width: 992px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-counters {
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .hero-section {
        padding: 50px 20px;
        text-align: start;
    }

    .hero-title {
        font-size: 28px;
        text-align: start;
        max-width: 100%;
    }

    .hero-container {
        padding: 0 15px;
    }

    .hero-subtitle {
        font-size: 15px;
        text-align: start;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: start;
    }

    .hero-counters {
        flex-direction: column;
        align-items: start;
    }

    .counter-box {
        width: 100%;
        max-width: 320px;
    }
}

/* ---------- Responsive Features Grid ---------- */
@media (max-width: 992px) {
    .features .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features .container {
        grid-template-columns: 1fr;
    }
}

/* ---------- Responsive Section 3 ---------- */
@media (max-width: 768px) {
    .section-3 .content {
        flex-direction: column;
        text-align: center;
    }

    .section-3 .feature-list {
        display: inline-block;
        text-align: left;
    }
}

/* ---------- Responsive Logo Grid ---------- */
@media (max-width: 1200px) {
    .logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------- Responsive CTA Section ---------- */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cta-btn {
        align-self: center;
    }

    .cta-text h6 {
        font-size: 28px;
    }
}

/* ---------- Responsive Footer ---------- */
@media (max-width: 900px) {
    .f-top {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .f-big-logo img {
        transform: translateY(40px);
    }

    .f-legal {
        flex-direction: column;
        align-items: flex-start;
    }
}