/* --- Professional Layout Settings --- */
:root {
    --bg-main: #e1f7ff;
    --deep-blue: #062A3D;
    --electric-blue: #1DA1F2;
    --text-muted: #5F6F81;
    --white: #ffffff;
}

/* .container {
    padding: 75px 15px 0 15px;
} */

.row {
    --bs-gutter-x: 30px;
    /* Horizontal gap */
    --bs-gutter-y: 30px;
    /* Vertical gap when cards wrap to next line */
}

p {
    margin: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: #062A3D;
    /* Your Primary Deep Blue */
    margin-bottom: 1.2rem;
    line-height: 1.2;
    transition: all 0.3s ease-in-out;
    /* For smooth hover interactions */
}

/* Specific Heading Styling */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -1.5px;
    font-weight: 800;
    /* Extra bold for main impact */
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -1px;
    font-weight: 700;
}

h3 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    /* Slightly wider for professional look */
    color: #1DA1F2;
    /* Electric Blue often looks great on H6 labels */
}

/* Optional: Different touch for the 'businesses' emphasis */
h1 strong,
h2 strong {
    color: #1DA1F2;
    /* Electric Blue for emphasized text */
    font-weight: 800;
}

/* Home Page Hero Section Area Start  */

/* 1. Controlled Section Structure */
.hero-section {
    max-width: 100%;
    background-color: var(--bg-main);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 75px 0 75px 0;
    overflow: hidden;
}

/* 2. Unique Typography: Thin to Bold Contrast */
.heading {
    font-family: 'Poppins', sans-serif;
    color: var(--deep-blue);
    font-size: clamp(2rem, 4vw, 3.5rem);
    /* Responsive sizing */
    line-height: 1.1;
    letter-spacing: -1px;
    font-weight: 300;
    /* Light weight for the sentence */
}

.heading strong {
    font-weight: 800;
    /* Extra bold for the impact word */
    color: var(--electric-blue);
    display: block;
    /* Moves "businesses" to its own line for punch */
    margin-top: 10px;
}

.container{
    padding: 75px 0 0 0;
}

.text {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 85%;
    margin-top: 25px;
}

/* 3. Unique "Soft-Edge" Image Styling */
.hero-section .col-md-6:last-child {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-section .col-md-6:last-child img {
    padding: 20px;
    width: 100%;
    max-width: 550px;
    /* Width control */
    height: auto;
    border-radius: 40px 40px;
    /* Unique organic shape */
    box-shadow: 0 30px 60px rgba(6, 42, 61, 0.15);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-section:hover .col-md-6:last-child img {
    transform: scale(.9) rotate(0deg);
}

/* 4. Minimalist Pill Button */
.portfolio-button button {
    background: var(--deep-blue);
    color: var(--white);
    border: 2px solid var(--deep-blue);
    padding: 14px 40px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.portfolio-button button:hover {
    background: transparent;
    color: var(--deep-blue);
    transform: translateY(-5px);
}

/* 5. Subdued Logo Styling */
.hero-logo img {
    height: 35px;
    opacity: 0.5;
    filter: grayscale(1);
    transition: 0.4s;
}

.hero-logo img:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* --- Responsive Management --- */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 80px 20px;
    }

    .heading {
        text-align: center;
    }

    .text {
        text-align: center;
        margin: 25px auto;
    }

    .portfolio-button {
        text-align: center;
    }

    .hero-logo {
        text-align: center;
    }

    .hero-section .col-md-6:last-child {
        justify-content: center;
        margin-top: 50px;
    }
}

/* Home Page Hero Section Area End  */
/* Home page Trusted Partner Area Start  */

.logo-slider {
    box-shadow: inset 0 4px 12px rgba(6, 42, 61, 0.08);
    border-radius: 10px;
    background-color: var(--bg-main);
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

/* The moving track */
.logo-track {
    display: flex;
    width: calc(250px * 10);
    /* Adjust based on (logo width * total logos) */
    animation: scroll 20s linear infinite;
}

/* Individual Logo Boxes */
.logo-box {
    width: 250px;
    /* Adjust width to fit 4 per row in container */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.logo-box img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    /* Optional: Make them grey */
    transition: 0.3s;
    opacity: 0.7;
}

.logo-box img:hover {
    filter: grayscale(0%);
    /* Color on hover */
    opacity: 1;
}

/* The Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 5));
    }

    /* Move by half the total logos */
}

/* Responsive: 2 logos on mobile */
@media (max-width: 768px) {
    .logo-box {
        width: 150px;
    }

    .logo-track {
        width: calc(150px * 10);
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-150px * 5));
        }
    }
}

/* Home page Trusted Partner Area End */
/* Home Page Featured Product Area Start  */
.heading-h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    /* Slightly smaller heading */
    color: var(--deep-blue);
    line-height: 1.1;
    margin-bottom: 20px;
}

.text {
    font-size: 1rem;
    /* Smaller body text */
    color: var(--body-text);
    border-left: 3px solid var(--electric-blue);
    padding-left: 15px;
    margin-bottom: 15px;
}

/* Compact Button */
.featured .buttons {
    display: inline-flex;
    align-items: center;
    background: var(--grad);
    color: #000;
    /* Changed to white for better contrast */
    padding: 10px 25px;
    /* Smaller padding */
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    /* Smaller font */
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 114, 255, 0.2);
}

.featured .buttons:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 114, 255, 0.3);
    color: #062A3D;
    text-decoration: none;
}

/* 2. Small/Compact Featured Card */
.featured-card {
    border: 1px solid rgba(6, 42, 61, 0.1);
    /* Lighter border for clean look */
    background: var(--light-gray);
    border-radius: 16px;
    /* Slightly smaller radius */
    padding: 15px;
    /* Reduced padding from 25px to 15px */
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.featured-card:hover {
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(6, 42, 61, 0.08);
    /* Tight, clean shadow */
    transform: translateY(-5px);
}

.featured-card img {
    border-radius: 12px;
    width: 100%;
    height: 220px;
    /* Reduced image height from 220px to 160px */
    object-fit: contain;
    margin-bottom: 15px;
    filter: grayscale(10%);
    transition: 0.5s ease;
}

.featured-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.heading-4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--deep-blue);
    font-size: 1.15rem;
    /* Smaller title size */
    margin-bottom: 5px;
}

/* 3. Tightened Stats List */
.project-list {
    list-style: none;
    padding: 0;
    margin-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 12px;
}

.project-list li {
    font-size: 0.85rem;
    /* Smaller list text */
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    line-height: 1.3;
}

.project-list li strong {
    color: var(--deep-blue);
    background: var(--accent-cyan);
    padding: 1px 6px;
    border-radius: 4px;
    margin-right: 6px;
    font-weight: 700;
}

/* Small Accent dot */
.featured-card::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 6px;
    height: 6px;
    background: var(--neon-pink);
    border-radius: 50%;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .container {
        padding: 40px 15px;
    }

    .col-md-6 {
        margin-bottom: 30px;
    }
}

/* Home Page Featured Product Area End */
/* Home Page Expert Area Start  */
/* --- Home Page Experties Area Start --- */

.Experties {
    background-color: var(--white);
    /* Aligns with your container padding settings */
    padding: 75px 0 0 0;
}

/* Header Styling - Using your Poppins & Variable settings */
.Experties .heading-4 {
    font-family: 'Poppins', sans-serif;
    color: var(--deep-blue);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    /* Matches your heading-h3 logic */
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.Experties .text {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto 50px auto !important;
    /* Center the intro text */
    text-align: center;
}

/* Card Styling - Inheriting from your Featured Card style for consistency */
.Experties .card {
    border: 1px solid rgba(6, 42, 61, 0.1);
    background: var(--white);
    border-radius: 16px;
    padding: 30px 25px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.Experties .card:hover {
    background: var(--white);
    box-shadow: 0 12px 25px rgba(6, 42, 61, 0.08);
    transform: translateY(-8px);
}

/* Icon & Content Logic */
.Experties .icon-list {
    border-left: 3px solid var(--electric-blue);
    /* Matches your 'text' border-left style */
    padding-left: 20px;
}

.Experties .icon-list img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-bottom: 20px;
}

.Experties .heading-5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 12px;
    line-height: 1.3;
}

.Experties .card p.text {
    text-align: left;
    font-size: 0.9rem;
    padding-left: 0;
    border-left: none;
    margin-bottom: 25px !important;
}

/* Button - Using your Minimalist Pill Button style */
.Experties .buttons {
    display: inline-block;
    background: var(--deep-blue);
    color: var(--white);
    border: 2px solid var(--deep-blue);
    padding: 10px 25px;
    border-radius: 50px;
    /* Pill shape from your hero button */
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    /* Keeps button at the bottom */
    width: fit-content;
}

.Experties .buttons:hover {
    background: transparent;
    color: var(--deep-blue);
    transform: scale(1.05);
}

/* --- Responsive CSS --- */

@media (max-width: 991px) {

    /* Adjust grid for tablets (2 columns) */
    .Experties .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .Experties {
        padding: 50px 15px;
    }

    /* Stack to 1 column on mobile */
    .Experties .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .Experties .heading-4 {
        font-size: 1.6rem;
    }

    .Experties .icon-list {
        padding-left: 15px;
    }
}

/* --- Home Page Experties Area End --- */
/* --- Home Page Success Area Start --- */

.success {
    padding: 80px 15px;
    background-color: var(--white);
}

/* Header Area: Split Layout */
.success .heading-4 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--deep-blue);
    margin-bottom: 25px;
}

.success p.text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    border-left: 3px solid var(--electric-blue);
    padding-left: 20px;
    margin-bottom: 40px !important;
}

/* Counter Cards */
.success .card {
    background: var(--bg-main);
    /* Light Blue Tint from your root */
    border: none;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success .card:hover {
    background: var(--white);
    box-shadow: 0 15px 35px rgba(6, 42, 61, 0.1);
    transform: translateY(-10px);
}

.success .heading-5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Large Impact Numbers */
.success .counter {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--electric-blue);
    margin-bottom: 10px;
    line-height: 1;
}

.success .card .text {
    font-size: 0.9rem;
    color: var(--text-muted);
    border-left: none;
    /* Removing the global border-left for card text */
    padding-left: 0;
    text-align: center;
    margin-bottom: 0 !important;
}

/* --- Responsive Settings --- */

@media (max-width: 991px) {
    .success .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 20px;
        /* Gap for wrapped cards */
    }
}

@media (max-width: 767px) {
    .success {
        padding: 60px 20px;
    }

    .success .heading-4 {
        text-align: center;
        font-size: 1.8rem;
    }

    .success p.text {
        text-align: center;
        border-left: none;
        padding-left: 0;
    }

    .success .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .success .counter {
        font-size: 2.2rem;
    }
}

/* --- Home Page Success Area End --- */
/* --- Home Page Google Reviews Section Start --- */
.reviews-container {
   padding: 75px 0 0 0;
    background-color: #FFFFFF;
    overflow: hidden;
}

/* --- Left Brand Box --- */
.brand-rating-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.rating-stars span {
    color: #FFB400;
    /* Google Star Color */
    font-size: 1.2rem;
}

.review-meta {
    font-size: 0.9rem;
    color: #000;
    margin: 4px 0 12px;
}

.btn-review {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid #000;
    border-radius: 10px;
    /* Brand kit rounded corners */
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-review:hover {
    background: #000;
    color: #fff;
}

/* --- Carousel Track --- */
.carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Review Card --- */
.review-card {
    min-width: calc(33.33% - 14px);
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 24px;
    position: relative;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    position: relative;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.bg-orange {
    background-color: #C53929;
}

.bg-orange-light {
    background-color: #E37400;
}

.user-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0;
    color: #000;
}

.review-date {
    font-size: 0.8rem;
    color: #70757a;
}

.google-logo {
    position: absolute;
    right: 0;
    top: 5px;
}

.google-logo img {
    width: 18px;
}

.review-stars span {
    color: #FFB400;
    font-size: 1rem;
}

.verified-icon {
    color: var(--electric-blue);
    font-size: 0.8rem;
    margin-left: 5px;
}

.review-content {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #000;
    margin: 12px 0;
    /* Limit text lines to match screenshot */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-size: 0.85rem;
    color: #70757a;
    text-decoration: none;
    font-weight: 600;
}

/* --- Arrow Button --- */
.slider-arrow {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .review-card {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 767px) {
    .review-card {
        min-width: 100%;
    }

    .brand-rating-box {
        margin-bottom: 40px;
        justify-content: center;
    }

    .slider-arrow {
        display: none;
    }
}

.carousel-viewport {
    overflow: hidden;
    /* Important: Hides cards outside the container */
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.8s cubic-bezier(0.45, 0, 0.55, 1);
    /* Premium smooth feel */
    will-change: transform;
}

.review-card {
    min-width: calc(33.33% - 14px);
    /* 3 cards per view on desktop */
    background-color: #F1F3F4;
    border-radius: 12px;
    padding: 24px;
    box-sizing: border-box;
}

/* Match the exact UI from your screenshot */
.rating-stars {
    color: #FFB400;
    font-size: 1.1rem;
}

.btn-review {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid #000;
    border-radius: 10px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.verified-icon {
    color: #1DA1F2;
    font-size: 0.8rem;
    margin-left: 5px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .review-card {
        min-width: calc(50% - 10px);
    }

    /* 2 cards on tablet */
}

@media (max-width: 767px) {
    .review-card {
        min-width: 100%;
    }

    /* 1 card on mobile */
}

/* --- Success/Innovation Header Section --- */

/* Parent container padding adjustment (if not already wrapped) */
.success-header-row {
    padding-bottom: 50px;
    align-items: center;
    /* Vertically centers the text and heading */
}

/* Heading Styling */
.success-header-row .heading-4 {
    font-family: 'Poppins', sans-serif;
    color: var(--deep-blue);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    /* Responsive size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    /* Let the row gutter handle spacing */
}

/* Descriptive Text Styling */
.success-header-row .text {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;

    /* The Brand Accent Line seen in your images */
    border-left: 3px solid var(--electric-blue);
    padding-left: 20px;
    margin: 0 !important;
}

/* --- Responsive Adjustments --- */

@media (max-width: 767px) {
    .success-header-row {
        text-align: center;
        padding-bottom: 30px;
    }

    .success-header-row .heading-4 {
        margin-bottom: 20px;
        font-size: 1.8rem;
    }

    .success-header-row .text {
        border-left: none;
        /* Remove line on mobile for better centering */
        padding-left: 0;
        text-align: center;
    }
}

/* --- Home Page Google Reviews Section End --- */
/* --- Home Page Featured In Section  Start--- */
.featured-press {
   padding: 75px 0 0 0;
    background-color: var(--white);
}

/* Reusing your Success Header Logic */
.featured-press .success-header-row .heading-4 {
    font-family: 'Poppins', sans-serif;
    color: var(--deep-blue);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
}

.featured-press .success-header-row .text {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    border-left: 4px solid var(--electric-blue);
    padding-left: 25px;
}

/* --- Interactive Logo Track --- */
.press-track {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.press-item {
    background: var(--white);
    padding: 20px 45px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 110px;

    /* Subtle Brand Shadow */
    box-shadow: 0 10px 30px rgba(6, 42, 61, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);

    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.press-item img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.4s ease;
}

/* Hover Interactivity */
.press-item:hover {
    transform: translateY(-8px);
    border-color: var(--electric-blue);
    box-shadow: 0 20px 40px rgba(29, 161, 242, 0.1);
}

.press-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .featured-press .success-header-row .text {
        border-left: none;
        padding-left: 0;
        text-align: center;
        margin-top: 15px !important;
    }

    .featured-press .success-header-row {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .press-item {
        min-width: calc(50% - 20px);
        /* 2 per row on mobile */
        padding: 15px;
        height: 90px;
    }

    .press-item img {
        max-width: 100px;
    }
}

/* --- Home Page Featured In Section End --- */
/* Home Page Cta SEction Area Start  */
.cta-section {
    padding: 75px 0 75px 0;
    background-color: #FFFFFF;
    /* Outside background */
}

.cta-box {
    background-color: #2E265A;
    /* The specific Deep Purple/Blue from the image */
    padding: 60px 80px;
    border-radius: 30px;
    /* Large rounded corners */
    color: #FFFFFF;
}

/* Left Side Styling */
.cta-main-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.btn-collaborate {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border: 1px solid #FFFFFF;
    border-radius: 10px;
    /* Matches your 10px brand kit rule */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-collaborate:hover {
    background-color: #FFFFFF;
    color: #2E265A;
}

/* Right Side Styling */
.cta-sub-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #FFB400;
    /* Yellow accent from image */
    margin-bottom: 15px;
}

.cta-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 !important;
}

/* --- Responsive Adjustments --- */

@media (max-width: 991px) {
    .cta-box {
        padding: 40px;
    }

    .cta-main-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .cta-box {
        text-align: center;
        padding: 40px 20px;
    }

    .btn-collaborate {
        justify-content: center;
    }

    .cta-sub-heading {
        margin-top: 20px;
    }
}

/* Home Page Cta SEction Area End */
/* Home Page contact section area start  */
/* --- 2. Section Container --- */
.contact-faq-section {
   padding: 75px 0 75px 0;
    background-color: var(--bg-light);
    /* Light Gray Background */
    font-family: 'Open Sans', sans-serif;
}

/* --- 3. Left Form Styling (The Slab) --- */
.form-card-exact {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(6, 42, 61, 0.06);
    /* Soft Deep Blue Shadow */
}

.input-field {
    margin-bottom: 35px;
    position: relative;
}

.input-field label {
    display: block;
    font-family: 'Open Sans', sans-serif;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.input-field input {
    width: 100%;
    border: none;
    border-bottom: 1.5px solid var(--deep-blue);
    padding: 10px 0;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    color: var(--deep-blue);
    outline: none;
    background: transparent;
    transition: border-color 0.3s ease;
}

.input-field input:focus {
    border-bottom-color: var(--electric-blue);
}

/* Submit Button - 10px Rounded per Brand Kit */
.btn-submit-exact {
    background: var(--electric-blue);
    color: var(--white);
    border: none;
    padding: 12px 35px;
    border-radius: 10px;
    /* Exact 10px rounding */
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-exact:hover {
    background: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 42, 61, 0.2);
}

/* --- 4. Right FAQ Accordion --- */
.faq-exact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-card {
    background: var(--white);
    border: 1px solid var(--cyan-tint);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(6, 42, 61, 0.03);
}

.faq-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    /* Heading Typography */
    font-weight: 600;
    color: var(--deep-blue);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.faq-icon {
    font-style: normal;
    font-size: 1.4rem;
    color: var(--electric-blue);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    font-family: 'Open Sans', sans-serif;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Active State Styles */
.faq-card.active {
    background-color: var(--cyan-tint);
    border-color: var(--electric-blue);
}

.faq-card.active .faq-body {
    max-height: 500px;
    /* High enough to accommodate content */
    padding-bottom: 25px;
    transition: max-height 0.4s ease-in, padding 0.3s ease;
}

.faq-card.active .faq-header {
    color: var(--deep-blue);
}

/* --- 5. Responsive Adjustments --- */
@media (max-width: 991px) {
    .form-card-exact {
        margin-bottom: 50px;
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .contact-faq-section {
        padding: 75px 0 75px 0;
    }

    .faq-header {
        padding: 20px;
        font-size: 0.95rem;
    }

    .btn-submit-exact {
        width: 100%;
        justify-content: center;
    }
}

/* Home Page contact section area  end */
/* Website Design Page tech Area Start  */
.tech-stack-section {
   padding: 75px 0 0 0;
    background-color: #FFFFFF;
    /* White Background */
}

/* Header Styling */
.tech-stack-section .heading-2 {
    font-family: 'Poppins', sans-serif;
    color: #062A3D;
    /* Deep Blue */
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.tech-stack-section .text-description {
    font-family: 'Open Sans', sans-serif;
    color: #5F6F81;
    /* Body Color */
    max-width: 800px;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Card Styling */
.tech-card {
    background: #FFFFFF;
    border: 1px solid #F5F8FB;
    /* Light Gray Border */
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(6, 42, 61, 0.04);
    /* Soft Shadow */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(29, 161, 242, 0.1);
    /* Electric Blue tinted shadow */
    border-color: #E6F7FF;
    /* Cyan Tint on hover */
}

.tech-logo {
    margin-bottom: 25px;
    height: 50px;
    /* Consistent height for logos */
    display: flex;
    align-items: center;
}

.tech-logo img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.tech-text {
    font-family: 'Open Sans', sans-serif;
    color: #5F6F81;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 !important;
}

/* --- Responsive Adjustments --- */

@media (max-width: 991px) {
    .tech-stack-section {
        padding: 75px 0 75px 0;
    }

    .tech-card {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .tech-stack-section .heading-2 {
        font-size: 1.8rem;
    }
}

/* Website Design Page tech Area end */
/* Website Design Page Time tested  Area start */
.methodology-section {
   padding: 75px 0 0 0;
    background-color: #FFFFFF;
}

/* Reusing your Split Header logic */
.methodology-section .success-header-row .heading-4 {
    font-family: 'Poppins', sans-serif;
    color: var(--deep-blue);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
}

.methodology-section .success-header-row .text {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-muted);
    border-left: 4px solid var(--electric-blue);
    padding-left: 25px;
}

/* Card Styling */
.method-card {
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-10px);
}

.step-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--deep-blue);
    margin-bottom: 10px;
}

.method-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--deep-blue);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.method-desc {
    font-family: 'Open Sans', sans-serif;
    color: var(--deep-blue);
    /* Dark text for contrast on light colors */
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 !important;
}

/* Exact Background Colors from Image */
.card-red {
    background-color: #FFC5C0;
}

.card-green {
    background-color: #A2D9CE;
}

.card-purple {
    background-color: #D2D0F0;
}

.card-yellow {
    background-color: #FEF0B2;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .methodology-section .success-header-row .text {
        border-left: none;
        padding-left: 0;
        text-align: center;
        margin-top: 15px !important;
    }

    .methodology-section .success-header-row {
        text-align: center;
    }
}

/* Website Design Page Time tested  Area end */
/* Social Media MArketing Page insta Feed Area Start  */
.insta-feed-section {
    padding: 75px 0 0 0;
}

/* Instagram Card */
.insta-card {
    background: #FFFFFF;
    border: 1px solid #EAECEF;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(6, 42, 61, 0.05);
    transition: transform 0.3s ease;
}

.insta-card:hover {
    transform: translateY(-5px);
}

/* Header */
.insta-header {
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-info img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    object-fit: cover;
}

.user-meta strong {
    display: block;
    font-size: 0.85rem;
    color: #062A3D;
}

.user-meta span {
    font-size: 0.75rem;
    color: #7A7A7A;
}

.btn-view-profile {
    background-color: #0095F6;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
}

.btn-view-profile:hover {
    background-color: #0077cc;
}

/* Media */
.insta-media {
    position: relative;
    aspect-ratio: 4 / 5;
    background: #000;
    overflow: hidden;
}

.insta-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play Button Overlay */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #fff;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.35);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
.insta-footer {
    padding: 12px;
    border-top: 1px solid #efefef;
}

.view-more-link {
    font-size: 0.8rem;
    color: #0095F6;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
}

.view-more-link:hover {
    text-decoration: underline;
}

/* Action Bar */
.action-bar {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    color: #062A3D;
    margin-bottom: 10px;
}

.left-actions {
    display: flex;
    gap: 15px;
}

.action-bar i {
    cursor: pointer;
}

/* Likes Count */
.likes-count {
    font-weight: 700;
    font-size: 0.85rem;
    color: #062A3D;
    margin-bottom: 10px;
}

/* Comment Box */
.comment-box {
    border-top: 1px solid #efefef;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-box input {
    border: none;
    font-size: 0.85rem;
    width: 80%;
    outline: none;
    background: transparent;
}

.comment-box i {
    color: #7A7A7A;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .insta-feed-section {
        padding: 50px 0;
    }

    .insta-media {
        aspect-ratio: 1 / 1;
    }

    .btn-view-profile {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    .play-overlay {
        width: 55px;
        height: 55px;
        font-size: 2rem;
    }
}

/* Social Media MArketing Page insta Feed Area end */
/* Video Production page video Area start  */
.featured-video-section {
   padding: 75px 0 0 0;
    background-color: #FFFFFF;
}

/* Header Re-use Logic */
.featured-video .heading-4 {
    font-family: 'Poppins', sans-serif;
    color: #062A3D;
    /* Deep Blue */
    font-weight: 700;
    margin-bottom: 0;
}

.featured-video .text {
    font-family: 'Open Sans', sans-serif;
    color: #5F6F81;
    /* Text Muted */
    border-left: 4px solid #1DA1F2;
    /* Electric Blue */
    padding-left: 25px;
    line-height: 1.7;
}

/* Card & Video Box */
.featured-video-card {
    background: transparent;
    height: 100%;
}

.video-container-box {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(6, 42, 61, 0.08);
}

.video-container-box img,
.video-container-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    transition: transform 0.4s ease;
}

.video-container-box:hover img {
    transform: scale(1.05);
}

/* Play Button Overlay */
.play-btn-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FF0000;
    /* YouTube Red */
    color: #fff;
    width: 60px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.video-container-box:hover .play-btn-centered {
    background: #000;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Content Area */
.video-content {
    padding: 20px 0;
}

.video-content .heading-4 {
    font-size: 1.2rem !important;
    margin-bottom: 5px;
}

.video-type {
    color: #1DA1F2;
    /* Electric Blue */
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.text-small {
    font-family: 'Open Sans', sans-serif;
    color: #5F6F81;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .featured-video-section {
        padding: 75px 0 75px 0;
    }
}

@media (max-width: 767px) {
    .featured-video .success-header-row {
        text-align: center;
    }

    .featured-video .text {
        border-left: none;
        padding-left: 0;
        margin-top: 20px;
    }
}

.yt-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Video Production page video Area end */
/* Video Production page Brand Language Area start */
.brand-language-section {
   padding: 75px 0 0 0;
    background-color: #FFFFFF;
}

/* Header Styling */
.brand-language-section .heading-2 {
    font-family: 'Poppins', sans-serif;
    color: #062A3D;
    /* Deep Blue */
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.brand-language-section .text-description {
    font-family: 'Open Sans', sans-serif;
    color: #5F6F81;
    /* Body Text Color */
    max-width: 700px;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Service Card Styling */
.brand-service-card {
    background: #FFFFFF;
    border: 1px solid #F5F8FB;
    /* Light Gray border */
    border-radius: 20px;
    padding: 45px 30px;
    height: 100%;
    text-align: left;
    transition: all 0.3s ease;
    /* Soft shadow from your brand kit */
    box-shadow: 0 10px 30px rgba(6, 42, 61, 0.04);
    display: flex;
    flex-direction: column;
}

.brand-service-card:hover {
    transform: translateY(-8px);
    border-color: #1DA1F2;
    /* Electric Blue hover border */
    box-shadow: 0 15px 35px rgba(29, 161, 242, 0.1);
}

.service-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #062A3D;
    /* Deep Blue */
    font-size: 1.25rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-text {
    font-family: 'Open Sans', sans-serif;
    color: #5F6F81;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 !important;
}

/* --- Responsive Adjustments --- */

@media (max-width: 991px) {
    .brand-service-card {
        padding: 35px 25px;
    }
}

@media (max-width: 767px) {
    .brand-language-section {
        padding: 75px 0 75px 0;
    }

    .brand-language-section .heading-2 {
        font-size: 1.6rem;
    }
}

/* Video Production page Brand Language Area end */
/* Creative Brand logo Page featured area start  */
.featured-brand-logo {
    padding: 75px 0 0 0;
}

.featured-brand-logo-heading-h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.featured-brand-logo-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.featured-brand-logo-card {
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.featured-brand-logo-card:hover {
    transform: translateY(-5px);
}

.featured-brand-logo-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
}

.featured-brand-logo-heading-4 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 15px;
    color: #222;
}

@media (max-width: 768px) {
    .featured-brand-logo-heading-h3 {
        font-size: 26px;
    }

    .featured-brand-logo-heading-4 {
        font-size: 18px;
    }

    .featured-brand-logo-text {
        font-size: 14px;
    }
}

/* Creative Brand logo Page featured area end */
/* Projects page Hero Area Start  */

.case-studies-hero {
    background-color: #e1f7ff;
    /* Specific Cyan Tint BG requested */
    padding: 120px 0;
    font-family: 'Open Sans', sans-serif;
}

/* Breadcrumb Styling */
.breadcrumb-nav {
    font-size: 0.9rem;
    color: #5F6F81;
    /* Body color */
    margin-bottom: 30px;
}

.breadcrumb-nav a {
    text-decoration: none;
    color: #5F6F81;
    transition: 0.3s;
}

.breadcrumb-nav a:hover {
    color: #1DA1F2;
    /* Electric Blue */
}

/* Heading & Typography */
.heading-hero {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #062A3D;
    /* Deep Blue */
    line-height: 1.1;
    margin-bottom: 25px;
}

.accent-text {
    color: #1DA1F2;
    /* Changed from Yellow to Electric Blue for your Brand Palette */
}

.hero-description {
    font-family: 'Open Sans', sans-serif;
    color: #5F6F81;
    max-width: 650px;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 50px;
}

/* Statistics Layout */
.stats-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: #062A3D;
    /* Deep Blue */
    margin-bottom: 5px;
}

.stat-label {
    font-family: 'Open Sans', sans-serif;
    color: #5F6F81;
    font-size: 0.95rem;
    margin: 0;
}

/* Vertical Dividers */
.stat-divider {
    width: 2px;
    height: 50px;
    background-color: rgba(6, 42, 61, 0.1);
    /* Subtle Deep Blue line */
}

/* --- Responsive Adjustments --- */

@media (max-width: 991px) {
    .case-studies-hero {
        padding: 75px 0 0 0;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 50px;
    }

    .stats-row {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .stat-divider {
        display: none;
        /* Hide dividers on mobile stack */
    }

    .stat-item {
        text-align: center;
    }

    .heading-hero {
        font-size: 2.2rem;
    }
}

/* Projects Hero page Area End */
/* Projects Page Project  Area Start */
.portfolio-grid-section {
    padding: 75px 0 75px 0;
    background-color: #FFFFFF;
}

.portfolio-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    /* Soft shadow from your brand kit */
    box-shadow: 0 4px 20px rgba(6, 42, 61, 0.05);
    border: 1px solid #F5F8FB;
    transition: transform 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.1);
}

.portfolio-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    /* Matches the rectangular shape in image */
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-content {
    padding: 20px 25px;
}

/* Tag/Pill Styling */
.tag-group {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.pill-tag {
    background-color: #E6F7FF;
    /* Cyan Tint Accent */
    color: #5F6F81;
    /* Body color */
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: capitalize;
}

/* Heading Styling */
.portfolio-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #062A3D;
    /* Deep Blue */
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 767px) {
    .portfolio-content {
        padding: 20px;
    }

    .portfolio-title {
        font-size: 1rem;
    }
}

/* Projects Page Project  Area End */
/* Contact Page Area Start  */
/* ── Section ────────────────────────────────── */
.contact-page.contact-section {
    padding: 75px 0 0 0 ;
    background: var(--bg);
}

/* ── Grid ───────────────────────────────────── */
.contact-page .contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 36px;
    align-items: stretch;
}

/* ── Shared column base ─────────────────────── */
.contact-page .contact-left,
.contact-page .contact-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ══ LEFT COLUMN ════════════════════════════ */
.contact-page .contact-left {
    background: #062A3D;
    color: #fff;
    padding: 40px;
    border-radius: 16px;
    gap: 20px;
}

.contact-page .tag {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00C6FF;
}

.contact-page .contact-left h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
}

.contact-page .contact-left .desc {
    font-size: 14px;
    color: #b0c4d4;
    line-height: 1.6;
}

/* ── Form layout ────────────────────────────── */
.contact-page .form-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.contact-page .form-row {
    display: flex;
    gap: 14px;
}

.contact-page .form-row .form-group {
    flex: 1;
}

.contact-page .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-page .form-group label {
    font-size: 12px;
    color: #a0b8c8;
}

.contact-page .form-group .req {
    color: #00C6FF;
}

.contact-page .form-group input,
.contact-page .form-group select {
    width: 100%;
    padding: 11px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border 0.2s, background 0.2s;
}

.contact-page .form-group input::placeholder {
    color: #6a8a9a;
}

.contact-page .form-group select option {
    background: #062A3D;
}

.contact-page .form-group input:focus,
.contact-page .form-group select:focus {
    border-color: rgba(0, 198, 255, 0.4);
    background: rgba(255, 255, 255, 0.11);
}

/* ── Submit button ──────────────────────────── */
.contact-page .submit-btn {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #00C6FF, #0072FF);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}

.contact-page .submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ══ RIGHT COLUMN ═══════════════════════════ */
.contact-page .contact-right {
    padding: 10px 20px;
    gap: 24px;
}

.contact-page .contact-right h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--primary);
}

.contact-page .contact-right .subtitle {
    font-size: 14px;
    color: var(--text);
}

/* ── Office card ────────────────────────────── */
.contact-page .office-card {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.contact-page .office-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #1DA1F2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-page .office-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2px;
}

.contact-page .office-info .country {
    font-size: 11px;
    color: #1DA1F2;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}

.contact-page .office-info p {
    font-size: 13px;
    color: var(--text);
    line-height: 1.7;
}

/* Shared card base (add to office-card too) */
.contact-page .info-card {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 22px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

/* Contact details card */
.contact-page .contact-details-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-page .contact-details-card a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-page .contact-details-card a:hover {
    color: #1DA1F2;
}

.contact-page .detail-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: #EBF5FF;
    color: #1DA1F2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.contact-page .detail-text span {
    display: block;
    font-size: 11px;
    color: #aab8c2;
    margin-bottom: 1px;
}

.contact-page .detail-text strong {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}

.contact-page .info-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #EBF5FF;
    color: #1DA1F2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* ── Social icons ───────────────────────────── */
.contact-page .social-row {
    display: flex;
    gap: 10px;
}

.contact-page .social-row a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #EBF5FF;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.contact-page .social-row a:hover {
    background: #1DA1F2;
    color: #fff;
    transform: translateY(-3px);
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 900px) {
    .contact-page .contact-grid {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .contact-page .form-row {
        flex-direction: column;
    }

    .contact-page .contact-left {
        padding: 28px 22px;
    }
}

/* ══ MAP SECTION ════════════════════════════ */
.map-section {
    padding: 80px 20px;
    background: var(--bg);
}

.map-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Header ─────────────────────────────────── */
.map-header {
    text-align: center;
    margin-bottom: 36px;
}

.map-header .tag {
    color: #00C6FF;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.map-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--primary);
    margin: 8px 0 10px;
}

.map-desc {
    font-size: 14px;
    color: var(--text);
}

/* ── Map iframe wrapper ─────────────────────── */
.map-wrapper {
    width: 100%;
    height: 420px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-bottom: none;
}

/* ── Info strip ─────────────────────────────── */
.map-info-strip {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0 0 16px 16px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.map-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 180px;
}

.map-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #EBF5FF;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.map-info-item span {
    display: block;
    font-size: 11px;
    color: #aab8c2;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 3px;
}

.map-info-item p {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

/* ── Divider ────────────────────────────────── */
.map-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

/* ── Directions button ──────────────────────── */
.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: linear-gradient(135deg, #00C6FF, #0072FF);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.2s;
    margin-left: auto;
}

.directions-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 768px) {
    .map-wrapper {
        height: 300px;
    }

    .map-info-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }

    .map-divider {
        width: 100%;
        height: 1px;
    }

    .directions-btn {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }
}

/* Contact Page Area end */
/* About Page area start  */
.about .wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.about .tag {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00C6FF;
    display: block;
    margin-bottom: 10px;
}

.about .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #062A3D;
    margin-bottom: 12px;
}

.about .section-sub {
    font-size: 14px;
    color: #5F6F81;
    line-height: 1.7;
    max-width: 560px;
}

/* ══ HERO ════════════════════════════════════ */
.about .about-hero {
    background: #062A3D;
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.about .about-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(0, 198, 255, 0.05);
    top: -150px;
    right: -100px;
}

.about .about-hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(0, 114, 255, 0.06);
    bottom: -80px;
    left: -60px;
}

.about .about-hero .tag {
    color: #00C6FF;
}

.about .about-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.2;
}

.about .about-hero div {
    font-size: 15px;
    color: #b0c4d4;
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.about .hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: linear-gradient(135deg, #00C6FF, #0072FF);
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.about .hero-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ══ STATS ═══════════════════════════════════ */
.about .stats-bar {
    background: #fff;
    border-bottom: 1px solid #E2E8F0;
    padding: 36px 20px;
}

.about .stats-grid {
    display: flex;
    align-items: stretch;
}

.about .stat-item {
    flex: 1;
    text-align: center;
    padding: 10px 20px;
    border-right: 1px solid #E2E8F0;
}

.about .stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #062A3D;
    line-height: 1;
}

.stat-num span {
    color: #1DA1F2;
}

.stat-label {
    font-size: 13px;
    color: #5F6F81;
    margin-top: 6px;
}

/* ══ WHO WE ARE ══════════════════════════════ */
.who-section {
   padding: 75px 0 75px 0;
    background: #F5F8FB;
}

.who-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.who-left {
    flex: 1;
}

.who-left p {
    font-size: 14px;
    color: #5F6F81;
    line-height: 1.9;
    margin-bottom: 16px;
}

.who-right {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.who-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s;
}

.who-card:hover {
    transform: translateY(-3px);
}

.who-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #EBF5FF;
    color: #1DA1F2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}

.who-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: #062A3D;
    margin-bottom: 6px;
}

.who-card p {
    font-size: 12px;
    color: #5F6F81;
    line-height: 1.7;
}

/* ══ MISSION & VISION ════════════════════════ */
.mv-section {
    padding: 80px 20px;
    background: #062A3D;
}

.mv-grid {
    display: flex;
    gap: 28px;
}

.mv-card {
    flex: 1;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 36px;
}

.mv-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(0, 198, 255, 0.15);
    color: #00C6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.mv-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
}

.mv-card p {
    font-size: 14px;
    color: #b0c4d4;
    line-height: 1.8;
}

/* ══ VALUES ══════════════════════════════════ */
.values-section {
   padding: 75px 0 0 0;
    background: #F5F8FB;
}

.values-header {
    text-align: center;
    margin-bottom: 50px;
}

.values-header .section-sub {
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.value-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.value-num {
    font-size: 11px;
    font-weight: 600;
    color: #1DA1F2;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.value-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #062A3D;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 13px;
    color: #5F6F81;
    line-height: 1.7;
}


/* ══ CTA ═════════════════════════════════════ */
.cta-section {
   padding: 75px 0 75px 0;
    background: #F5F8FB;
    text-align: center;
}

.cta-box {
    max-width: 680px;
    margin: 0 auto;
    background: #062A3D;
    border-radius: 20px;
    padding: 60px 40px;
}

.cta-box h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.3;
}

.cta-box p {
    font-size: 14px;
    color: #b0c4d4;
    margin-bottom: 28px;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    padding: 13px 28px;
    background: linear-gradient(135deg, #00C6FF, #0072FF);
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.cta-btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.cta-btn-outline {
    padding: 13px 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.14);
}

/* ══ RESPONSIVE ══════════════════════════════ */
@media (max-width: 900px) {

    .about .who-grid,
    .about .mv-grid {
        flex-direction: column;
    }

    .about .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about .stats-grid {
        flex-wrap: wrap;
    }

    .about .stat-item {
        flex: 1 1 40%;
        border-right: none;
        border-bottom: 1px solid #E2E8F0;
    }

    .about .stat-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 560px) {
    .about .about-hero h1 {
        font-size: 32px;
    }

    .about .values-grid {
        grid-template-columns: 1fr;
    }

    .about .team-grid {
        grid-template-columns: 1fr;
    }

    .about .who-right {
        grid-template-columns: 1fr;
    }

    .about .cta-box {
        padding: 40px 24px;
    }
}

/* About Page area end */
/* Header Area start  */
/* ── Topbar ─────────────────────────────────── */
.topbar {
    background: #060E1C;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 7px 0;
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    gap: 20px;
}

.topbar-left a {
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .2s;
}

.topbar-left a:hover {
    color: #00C6FF;
}

.topbar-social {
    display: flex;
    gap: 10px;
}

.topbar-social a {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    text-decoration: none;
    transition: all .2s;
}

.topbar-social a:hover {
    background: #00C6FF;
    color: #fff;
    border-color: #00C6FF;
}

/* ── Main header ─────────────────────────────── */
.main-header {
    background: var(--deep-blue);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 68px;
    gap: 36px;
}

/* ── Logo ───────────────────────────────────── */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #00C6FF, #0072FF);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
}

.logo-text span {
    color: #00C6FF;
}

/* ── Nav ────────────────────────────────────── */
nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border-radius: 8px;
    color: #CBD5E1;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s, color .2s;
    border: none;
    background: none;
    position: relative;
}

.nav-link:hover,
.nav-item.open .nav-link {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.nav-link.active {
    color: #fff;
}

.nav-link.active::after {
    content: '';
    display: block;
    height: 2px;
    background: linear-gradient(135deg, #00C6FF, #0072FF);
    border-radius: 2px;
    position: absolute;
    bottom: -1px;
    left: 14px;
    right: 14px;
}

.chev {
    font-size: 9px;
    color: #fff;
    transition: transform .2s;
}

.nav-item.open .chev {
    transform: rotate(180deg);
    color: #00C6FF;
}

/* ── Mega menu ──────────────────────────────── */
.mega {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: -80px;
    background: #0F2040;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
    min-width: 700px;
}

.nav-item.open .mega {
    display: flex;
    gap: 8px;
}

.mega-col {
    flex: 1;
    min-width: 0;
}

.mega-col+.mega-col {
    border-left: 1px solid rgba(255,255,255,0.08);
    padding-left: 24px;
    margin-left: 4px;
}

.mega-col-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mega-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 9px;
    text-decoration: none;
    transition: background .2s;
    margin-bottom: 2px;
}

.mega-link:hover {
    background: rgba(0, 198, 255, 0.07);
}

.mega-link-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 198, 255, 0.1);
    border: 1px solid rgba(0, 198, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00C6FF;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

.mega-link-text strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #E2EAF4;
    line-height: 1.3;
}

.mega-link-text span {
    font-size: 11px;
    color: #d4d3d3;
    line-height: 1.4;
}

.mega-link:hover .mega-link-text strong {
    color: #00C6FF;
}

/* Featured strip */
.mega-featured {
    background: rgba(0, 198, 255, 0.06);
    border: 1px solid rgba(0, 198, 255, 0.15);
    border-radius: 10px;
    padding: 12px 14px;
    margin-top: 14px;
}

.mega-featured p {
    font-size: 11px;
    color: #fff;
    margin-bottom: 4px;
}

.mega-featured a {
    font-size: 13px;
    font-weight: 600;
    color: #00C6FF;
    text-decoration: none;
}

/* ── Header right buttons ───────────────────── */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: auto;
}

.btn-ghost {
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #CBD5E1;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s;
}

.btn-ghost:hover {
    border-color: #00C6FF;
    color: #00C6FF;
}

.btn-primary {
    padding: 9px 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, #00C6FF, #0072FF);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .2s, transform .2s;
}

.btn-primary:hover {
    opacity: .9;
    transform: translateY(-1px);
}

/* ── Hamburger (mobile) ─────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #CBD5E1;
    border-radius: 2px;
    transition: all .3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile nav ─────────────────────────────── */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: #0F2040;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 20px 24px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a,
.mob-group span {
    display: block;
    padding: 11px 14px;
    border-radius: 8px;
    color: #CBD5E1;
    font-size: 14px;
    text-decoration: none;
    transition: background .2s, color .2s;
    cursor: pointer;
}

.mobile-nav a:hover,
.mob-group span:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.mob-sub {
    display: none;
    padding-left: 16px;
}

.mob-group.open .mob-sub {
    display: block;
}

.mob-sub a {
    font-size: 13px;
    padding: 8px 14px;
    color: #7A90A8;
}

.mob-cta {
    margin-top: 12px !important;
    background: linear-gradient(135deg, #00C6FF, #0072FF) !important;
    color: #fff !important;
    text-align: center;
    border-radius: 9px !important;
    font-weight: 600 !important;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 960px) {

    nav,
    .header-right .btn-ghost {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .topbar-left a:nth-child(3) {
        display: none;
    }
}

@media (max-width: 600px) {
    .topbar {
        display: none;
    }

    .header-right {
        display: none;
    }
}

/* Header Area end  */
/* Footer Area start  */
.site-footer {
    background: #060E1C;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 64px 24px 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    font-size: 13px;
    color: #fff;
    line-height: 1.8;
    max-width: 260px;
    margin: 16px 0 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #5A7090;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    transition: all .2s;
}

.footer-social a:hover {
    background: #00C6FF;
    color: #fff;
    border-color: #00C6FF;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color .2s;
}

.footer-col a:hover {
    color: #00C6FF;
}

.footer-cta-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 10px 18px !important;
    margin-top: 16px !important;
    background: linear-gradient(135deg, #00C6FF, #0072FF) !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}

.footer-cta-btn:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 12px;
    color: #fff;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    transition: color .2s;
}

.footer-bottom-links a:hover {
    color: #00C6FF;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 540px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* Footer Area end */