        :root {
            --brand-blue: #1b2a63;
            --brand-red: #dc2626;
            --brand-dark: #0f172a;
            --brand-light: #f8fafc;
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
           
        }

        body {
            font-family: var(--font-body);
            color: var(--brand-dark);
            background-color: #ffffff;
            overflow-x: hidden;
        }


 /* =================================================--
   1. TOP INFORMATIONAL BAR (DESKTOP)
-------------------------------------------------- */
.top-info-bar {
    background-color: var(--brand-dark, #0f172a);
    color: #94a3b8;
    font-size: 0.825rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-info-bar a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}
.top-info-bar a:hover {
    color: var(--brand-red, #dc2626);
}

/* ==================================================
   2. MAIN NAVBAR & BRANDING
================================================== */
.main-navbar {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0; 
    height: 75px; 
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1030;
}

.main-navbar.scrolled {
    height: 65px; 
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(27, 42, 99, 0.08);
}

.navbar-brand-wrapper {
    position: relative; 
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
}

/* LOGO IMAGE STYLING */
.navbar-logo-img {
    height: 96px; 
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-brand-wrapper:hover .navbar-logo-img {
    transform: scale(1.04);
}

/* BRAND TEXT STYLING */
.brand-text {
    text-align: center;
    margin-left: 10px; 
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--brand-blue, #1b2a63);
    letter-spacing: 0.4px;
    line-height: 1.2;
    white-space: nowrap;
}

.brand-text .text-red {
    color: var(--brand-red, #dc2626) !important;
}

.brand-text {
    font-size: 1.2rem;
    color: #1b2a63;
}

.brand-accent {
    color: #dc2626;
}

.nav-link {
    color: var(--brand-blue, #1b2a63) !important;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 8px 14px !important;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-red, #dc2626) !important;
}

/* Desktop Dropdown Hover */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        margin-top: 8px !important;
    }
}

.dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 8px;
    background: #ffffff;
}

.dropdown-item {
    font-weight: 600;
    color: var(--brand-blue, #1b2a63);
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.88rem;
}

.dropdown-item i {
    font-size: 0.75rem;
    margin-right: 8px;
    color: var(--brand-red, #dc2626);
}

.dropdown-item:hover {
    background-color: rgba(220, 38, 38, 0.06);
    color: var(--brand-red, #dc2626);
    padding-left: 18px;
}

.btn-brand-primary {
    background: linear-gradient(135deg, var(--brand-red, #dc2626) 0%, #b91c1c 100%);
    color: #ffffff !important;
    font-weight: 500;
    font-size: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 9px 22px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.25);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-brand-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(220, 38, 38, 0.38);
}

.navbar-toggler {
    border: none;
    padding: 6px 8px;
    border-radius: 8px;
    background: rgba(27, 42, 99, 0.06);
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler-icon-custom {
    font-size: 1.25rem;
    color: var(--brand-blue, #1b2a63);
}

/* ==================================================
   3. MOBILE OFFCANVAS DRAWER STYLES
================================================== */
.offcanvas-mobile {
    max-width: 320px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.mobile-quick-actions {
    background: var(--brand-light, #f8fafc);
    padding: 10px;
    border-radius: 12px;
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.mobile-quick-btn {
    flex: 1;
    padding: 8px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.mobile-quick-btn.call {
    background: rgba(27, 42, 99, 0.08);
    color: var(--brand-blue, #1b2a63);
}

.mobile-quick-btn.whatsapp {
    background: #25d366;
    color: white;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    color: var(--brand-blue, #1b2a63);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    background: rgba(220, 38, 38, 0.06);
    color: var(--brand-red, #dc2626);
}

.mobile-accordion .accordion-button {
    padding: 10px 14px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--brand-blue, #1b2a63);
    background-color: transparent;
    box-shadow: none;
    border-radius: 8px;
}

.mobile-accordion .accordion-button:not(.collapsed) {
    color: var(--brand-red, #dc2626);
    background-color: rgba(220, 38, 38, 0.06);
}

.mobile-accordion .accordion-body {
    padding: 6px 0 6px 12px;
}

.mobile-sub-link {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    color: #475569;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-bottom: 2px;
}

.mobile-sub-link i {
    font-size: 0.7rem;
    margin-right: 8px;
    color: var(--brand-red, #dc2626);
}

.mobile-sub-link:hover {
    color: var(--brand-red, #dc2626);
    background: rgba(0, 0, 0, 0.03);
    padding-left: 16px;
}

@media (max-width: 991.98px) {
    .navbar-logo-img {
        height: 66px;
    }
}



/* --------------------------------------------------
   HERO SECTION (BASE DESKTOP View > 992px)
-------------------------------------------------- */
.hero-split-section {
        margin-top: 1px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.hero-left-content {
    padding: 60px 5% 60px 8%;
}

.badge-gov {
    background: rgba(27, 42, 99, 0.08);
    color: var(--brand-blue, #1b2a63);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(27, 42, 99, 0.15);
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-weight: 800;
    font-size: 3.2rem;
    line-height: 1.18;
    color: var(--brand-blue, #1b2a63);
    margin-bottom: 18px;
}

.hero-title span {
    color: var(--brand-red, #dc2626);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 540px;
}

/* BUTTON STYLES */
.btn-brand-primary {
    background: linear-gradient(135deg, var(--brand-red, #dc2626) 0%, #b91c1c 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.btn-brand-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(220, 38, 38, 0.38);
    color: #ffffff !important;
}

.btn-brand-outline {
    background: transparent;
    color: var(--brand-blue, #1b2a63) !important;
    border: 2px solid var(--brand-blue, #1b2a63);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 24px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.btn-brand-outline:hover {
    background: var(--brand-blue, #1b2a63);
    color: #ffffff !important;
    border-color: var(--brand-blue, #1b2a63);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 42, 99, 0.2);
}

.hero-feature-strip {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-blue, #1b2a63);
}

.feature-icon-box {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.1);
    color: var(--brand-red, #dc2626);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* CAROUSEL STYLES */
.hero-right-carousel {
    height: 75vh;
    min-height: 480px;
    border-radius: 24px 0 0 24px;
    overflow: hidden;
    box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
}

.hero-carousel, .hero-carousel .carousel-inner, .hero-carousel .carousel-item {
    height: 100%;
}

.hero-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-carousel .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.45) 100%);
    pointer-events: none;
}

.hero-carousel .carousel-indicators {
    bottom: 20px;
    left: 30px;
    margin: 0;
    justify-content: start;
    z-index: 11;
}

.hero-carousel .carousel-indicators [data-bs-target] {
    width: 25px;
    height: 4px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    transition: all 0.3s ease;
}

.hero-carousel .carousel-indicators .active {
    width: 45px;
    background-color: var(--brand-red, #dc2626);
}

.hero-stat-card {
    position: absolute;
    bottom: 30px;
    left: -25px;
    background: #ffffff;
    padding: 14px 20px;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    z-index: 12;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* --------------------------------------------------
   MID-DESKTOP RESPONSIVE (1200px to 1399.98px)
-------------------------------------------------- */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 0.98rem;
    }
}

/* --------------------------------------------------
   SMALL DESKTOP / LAPTOPS (992px to 1199.98px)
-------------------------------------------------- */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-title {
        font-size: 2.3rem;
    }
    .hero-subtitle {
        font-size: 0.92rem;
    }
    .hero-left-content {
        padding: 40px 4% 40px 4%;
    }
    .hero-right-carousel {
        height: 60vh;
        min-height: 400px;
    }
}

/* --------------------------------------------------
   OPTIMIZED RESPONSIVE BREAKPOINTS (MOBILE & TABLET < 992px)
-------------------------------------------------- */
@media (max-width: 991.98px) {
    .hero-mobile-order-slider {
        order: 1 !important;
    }
    .hero-mobile-order-text {
        order: 2 !important;
    }

    .hero-right-carousel {
        height: 260px;
        min-height: 260px;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    }

    .hero-left-content {
        padding: 25px 18px 35px 18px;
        text-align: center;
    }

    .badge-gov {
        font-size: 0.85rem;
        padding: 4px 12px;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 0.88rem;
        line-height: 1.5;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 22px;
    }

    .btn-brand-primary, .btn-brand-outline {
        padding: 9px 18px;
        font-size: 0.8rem;
        width: 100%;
        max-width: 280px;
    }

    .hero-stat-card {
        display: none;
    }

    .hero-feature-strip {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 22px;
        padding-top: 16px;
    }

    .feature-item {
        font-size: 0.75rem;
        background: #ffffff;
        padding: 6px 12px;
        border-radius: 20px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.04);
        border: 1px solid rgba(0,0,0,0.05);
    }

    .hero-carousel .carousel-indicators {
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
    }
}








@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ==================================================
   1. MAIN SECTION WITH FULL BLUE-GREEN COVER EARTH
================================================== */
.luxury-about-section {
    background-color: var(--brand-light, #f8fafc);
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Full Cover Rotating Blue & Green Earth Background */
.full-blue-green-earth {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1500px;
    height: 1500px;
    margin-top: -750px;
    margin-left: -750px;
    background: url('https://images.unsplash.com/photo-1614728894747-a83421e2b9c9?q=80&w=1920') no-repeat center center;
    background-size: cover;
    border-radius: 50%;
    opacity: 0.18;
    z-index: 1;
    filter: hue-rotate(120deg) contrast(1.2) saturate(1.5);
    animation: rotateEarthInfinite 60s linear infinite;
    pointer-events: none;
}

@keyframes rotateEarthInfinite {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Soft Light Backdrop Blur for Maximum Text Contrast */
.earth-light-overlay {
    position: absolute;
    inset: 0;
    background: rgba(248, 250, 252, 0.72);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 2;
}

.luxury-about-section .container {
    position: relative;
    z-index: 3;
}

/* ==================================================
   2. BRAND TYPOGRAPHY & BUTTONS
================================================== */
/* Badge */
.sub-agency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.08);
    color: var(--brand-red, #dc2626);
    border: 1px solid rgba(220, 38, 38, 0.25);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    animation: badgePulse 2.5s infinite alternate;
}

@keyframes badgePulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.3); }
    100% { box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
}

/* Main Heading */
.main-hero-title {
    font-family: 'Cinzel', serif;
    font-weight: 800;
    font-size: 2.85rem;
    color: var(--brand-dark, #0f172a);
    line-height: 1.15;
}

.text-brand-red {
    color: var(--brand-red, #dc2626);
}

.text-brand-blue {
    color: var(--brand-blue, #1b2a63);
}

/* Quote Box Styling */
.motto-card {
    background: #ffffff;
    border-left: 4px solid var(--brand-red, #dc2626);
    padding: 18px 22px;
    border-radius: 0 14px 14px 0;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.motto-card p {
    font-weight: 700;
    color: var(--brand-blue, #1b2a63);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Tags / Pills */
.pill-tag {
    background: #ffffff;
    color: #475569;
    border: 1px solid #e2e8f0;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    display: inline-block;
}

.pill-tag:hover {
    background: var(--brand-blue, #1b2a63);
    color: #ffffff;
    border-color: var(--brand-blue, #1b2a63);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(27, 42, 99, 0.2);
}

/* Action Button */
.btn-brand-primary {
    background: var(--brand-blue, #1b2a63);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 14px 34px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(27, 42, 99, 0.25);
}

.btn-brand-primary:hover {
    background: var(--brand-red, #dc2626);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.35);
}

/* ==================================================
   3. RIGHT SIDE: 3D FLOATING EXPERIENCE WIDGET
================================================== */
.exp-widget-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
}

/* Orbiting Outer Ring */
.orbit-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px dashed rgba(27, 42, 99, 0.25);
    animation: rotateOrbit 18s linear infinite;
}

.orbit-ring::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    width: 14px;
    height: 14px;
    background: var(--brand-red, #dc2626);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--brand-red, #dc2626);
}

@keyframes rotateOrbit {
    100% { transform: rotate(360deg); }
}

/* Center Glass Floating Badge Card */
.exp-glass-card {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
    animation: floatCard 4s ease-in-out infinite alternate;
}

@keyframes floatCard {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-12px); }
}

.exp-number {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--brand-red, #dc2626);
    line-height: 1;
}

.exp-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-blue, #1b2a63);
    margin-top: 6px;
}

/* ==================================================
   4. BOTTOM FEATURE CARDS
================================================== */
.feature-box-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 20px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 18px;
    height: 100%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.02);
}

.feature-box-card:hover {
    border-color: var(--brand-blue, #1b2a63);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(27, 42, 99, 0.12);
}

.feature-icon-wrapper {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: all 0.4s ease;
}

.icon-blue-style {
    background: rgba(27, 42, 99, 0.08);
    color: var(--brand-blue, #1b2a63);
}

.icon-red-style {
    background: rgba(220, 38, 38, 0.08);
    color: var(--brand-red, #dc2626);
}

.feature-box-card:hover .feature-icon-wrapper {
    background: var(--brand-blue, #1b2a63);
    color: #ffffff;
    transform: rotateY(180deg);
}

.feature-title-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-dark, #0f172a);
    margin: 0;
}

/* ==================================================
   5. RESPONSIVE MEDIA QUERIES
================================================== */
@media (max-width: 991.98px) {
    .luxury-about-section { padding: 50px 0; }
    .main-hero-title { font-size: 2.1rem; }
    .full-blue-green-earth { width: 900px; height: 900px; margin-top: -450px; margin-left: -450px; }
    .orbit-ring { width: 250px; height: 250px; }
    .exp-glass-card { width: 200px; height: 200px; }
    .exp-number { font-size: 3rem; }
}

@media (max-width: 575.98px) {
    .main-hero-title { font-size: 1.75rem; }
    .btn-brand-primary { width: 100%; justify-content: center; }
}





@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ==================================================
   MAIN SERVICES SECTION
================================================== */
.services-repeat-section {
    background-color: var(--brand-light, #f8fafc);
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}

/* Section Header */
.repeat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-red, #dc2626);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(220, 38, 38, 0.08);
    padding: 7px 18px;
    border-radius: 50px;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.repeat-title {
    font-family: 'Cinzel', serif;
    font-size: 2.85rem;
    font-weight: 800;
    color: var(--brand-dark, #0f172a);
}

.repeat-title .highlight-red {
    color: var(--brand-red, #dc2626);
    position: relative;
    display: inline-block;
}

.repeat-title .highlight-red::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--brand-red, #dc2626);
    border-radius: 2px;
}

.repeat-subtext {
    color: #64748b;
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 880px;
    margin: 0 auto;
}

/* ==================================================
   LUXURY CARD DESIGN
================================================== */
.ultra-service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 38px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Glowing Top Line on Hover */
.ultra-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: all 0.35s ease;
}

.ultra-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 22px 45px rgba(27, 42, 99, 0.14);
    border-color: rgba(27, 42, 99, 0.2);
}

.ultra-service-card:hover::before {
    background: linear-gradient(90deg, var(--brand-red, #dc2626), var(--brand-blue, #1b2a63));
}

/* Icon Container */
.ultra-icon-box {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 24px auto;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.icon-blue-theme {
    background: rgba(27, 42, 99, 0.08);
    color: var(--brand-blue, #1b2a63);
    border: 1px solid rgba(27, 42, 99, 0.15);
}

.icon-red-theme {
    background: rgba(220, 38, 38, 0.08);
    color: var(--brand-red, #dc2626);
    border: 1px solid rgba(220, 38, 38, 0.15);
}

.ultra-service-card:hover .ultra-icon-box {
    transform: scale(1.12) rotate(360deg);
    background: var(--brand-blue, #1b2a63);
    color: #ffffff;
    border-color: var(--brand-blue, #1b2a63);
    box-shadow: 0 12px 25px rgba(27, 42, 99, 0.3);
}

/* Card Typography */
.ultra-card-title {
    font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-dark, #0f172a);
    margin-bottom: 12px;
}

.ultra-card-desc {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 22px;
}

/* Link Button */
.ultra-read-more {
    color: var(--brand-red, #dc2626);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.ultra-read-more i {
    transition: transform 0.3s ease;
}

.ultra-service-card:hover .ultra-read-more {
    color: var(--brand-blue, #1b2a63);
}

.ultra-service-card:hover .ultra-read-more i {
    transform: translateX(6px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .repeat-title { font-size: 2.1rem; }
    .services-repeat-section { padding: 60px 0; }
}



/* ==================================================
   CONTACT SECTION STYLES
================================================== */
.contact-section {
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

/* Titles */
.sub-title {
    color: var(--brand-red, #dc2626);
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 6px;
}

.section-title {
    font-family: 'Cinzel', serif;
    color: var(--brand-blue, #1b2a63);
    font-size: 2.1rem;
}

/* Left Info Card Wrapper */
.contact-info-wrapper {
    background: linear-gradient(135deg, var(--brand-blue, #1b2a63) 0%, #0f1738 100%);
    box-shadow: 0 15px 35px rgba(27, 42, 99, 0.15);
}

.contact-info-item .icon-box {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-red, #dc2626);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-info-item:hover .icon-box {
    background: var(--brand-red, #dc2626);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
}

/* Social Buttons */
.border-white-10 {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.social-icon-btn.whatsapp:hover { background: #25d366; }
.social-icon-btn.facebook:hover { background: #1877f2; }
.social-icon-btn.instagram:hover { background: #e4405f; }
.social-icon-btn.linkedin:hover { background: #0a66c2; }

/* Right Form Inputs */
.contact-form-card {
    border-color: rgba(0, 0, 0, 0.05) !important;
}

.text-brand-blue {
    color: var(--brand-blue, #1b2a63);
}

.form-floating .form-control,
.form-floating .form-select {
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-floating .form-control:focus,
.form-floating .form-select:focus {
    border-color: var(--brand-blue, #1b2a63);
    box-shadow: 0 0 0 0.25rem rgba(27, 42, 99, 0.12);
}

/* Primary Button Styling */
.btn-brand-primary {
    background-color: var(--brand-red, #dc2626);
    color: #ffffff;
    border: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-brand-primary:hover {
    background-color: var(--brand-blue, #1b2a63);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 42, 99, 0.2);
}

/* Mobile Responsive Adjustments */
@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.6rem;
    }
    .contact-info-wrapper,
    .contact-form-card {
        padding: 1.8rem !important;
    }
}




/* ==================================================
   1. MAIN CLIENTS SECTION
================================================== */
.ultra-clients-section {
    background-color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.ultra-clients-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(27, 42, 99, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.ultra-clients-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

/* Header Badge & Title */
.client-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-blue, #1b2a63);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(27, 42, 99, 0.06);
    padding: 7px 18px;
    border-radius: 50px;
    border: 1px solid rgba(27, 42, 99, 0.15);
}

.client-section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.85rem;
    font-weight: 800;
    color: var(--brand-dark, #0f172a);
}

.client-section-title .text-red {
    color: var(--brand-red, #dc2626);
}

.client-section-subtext {
    color: #64748b;
    font-size: 1rem;
    max-width: 750px;
    margin: 0 auto;
}

/* ==================================================
   2. DUAL INFINITE CONTINUOUS LOGO MARQUEE
================================================== */
.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    will-change: transform;
}

/* Speed set to 45s for smoother scrolling */
.marquee-track.track-left {
    animation: marqueeLeft 45s linear infinite;
}

.marquee-track.track-right {
    animation: marqueeRight 45s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ==================================================
   3. CLIENT LOGO CARD DESIGN
================================================== */
.client-logo-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    width: 210px;
    height: 105px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    user-select: none;
}

.client-logo-card img {
    max-width: 100%;
    max-height: 55px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.client-logo-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--brand-blue, #1b2a63);
    box-shadow: 0 16px 32px rgba(27, 42, 99, 0.12);
}

.client-logo-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ==================================================
   4. RESPONSIVE STYLES
================================================== */
@media (max-width: 991.98px) {
    .client-section-title { font-size: 2.1rem; }
    .client-logo-card { width: 170px; height: 90px; padding: 12px 16px; }
    .ultra-clients-section { padding: 60px 0; }
}





/* ====ULTRA UNIQUE BACKGROUND FOOTER==== */


.custom-bg-footer {
    position: relative;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #e2e8f0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(10, 20, 50, 0.92) 100%), 
                url('https://images.unsplash.com/photo-1541888946425-d0fbb186a5b3?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
    padding-top: 80px;
    overflow: hidden;
}

.brand-logo-img {
    border-radius: 12px;
    background-color: #ffffff;
    height: 75px;
    width: auto;
    object-fit: contain;
    padding: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Red-Blue Modern Top Bar */
.footer-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-red, #dc2626), #3b82f6, var(--brand-red, #dc2626));
}

/* Unique Brand Title */
.brand-title-wrap {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.brand-title-wrap span {
    color: var(--brand-red, #dc2626);
    display: block;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.brand-desc-text {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.8;
}

/* Dynamic Section Titles */
.unique-footer-heading {
    font-family: 'Cinzel', serif;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.unique-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--brand-red, #dc2626);
    border-radius: 2px;
}

/* Clean & Modern Quick Links */
.minimal-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.minimal-links-list li {
    margin-bottom: 12px;
}

.minimal-links-list a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.minimal-links-list a i {
    color: var(--brand-red, #dc2626);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.minimal-links-list a:hover {
    color: #ffffff;
    transform: translateX(6px);
}

.minimal-links-list a:hover i {
    transform: translateX(4px);
    color: #60a5fa;
}

/* Modern Contact Info Layout */
.contact-details-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-row {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.25);
    color: var(--brand-red, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-text strong {
    color: #ffffff;
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.contact-text p, 
.contact-text a {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 0;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--brand-red, #dc2626);
}

/* Social Buttons */
.unique-social-links {
    display: flex;
    gap: 12px;
}

.social-circle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-circle-btn:hover {
    background: var(--brand-red, #dc2626);
    color: #ffffff;
    border-color: var(--brand-red, #dc2626);
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(220, 38, 38, 0.4);
}

/* Newsletter Box */
.newsletter-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
}

.newsletter-card input {
    background:white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 6px;
    font-size: 0.85rem;
}

.newsletter-card input:focus {
    background: white;
    color: #ffffff;
    border-color: var(--brand-red, #dc2626);
    box-shadow: none;
}

.newsletter-card button {
    background: var(--brand-red, #dc2626);
    border: none;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    padding: 8px 16px;
    transition: background 0.3s ease;
}

.newsletter-card button:hover {
    background: #b91c1c;
}

/* Bottom Glass Copyright Bar */
.footer-bottom-glass {
    background: rgba(0, 6, 22, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    font-size: 0.85rem;
    color: #94a3b8;
}

.hover-white:hover {
    color: #ffffff !important;
}

@media (max-width: 991.98px) {
    .custom-bg-footer { 
        padding-top: 50px; 
    }
}







