@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');

:root {
    --primary-color: #11579D;
    --secondary-color: #F9C70E;
    --text-color: #333333;
    --white: #ffffff;
    --light-bg: #F3F5F7;
    --font-family: 'Poppins', sans-serif;

    /* Global Typography Standard */
    --title-font-size: 3.2rem;       /* Approx 48px */
    --title-font-weight: 600;
    --title-font-size-tablet: 2.2rem;
    --title-font-size-mobile: 1.8rem;

    --subtitle-font-size: 1.1rem;  /* Approx 17.6px */
    --subtitle-font-weight: 500;
    --subtitle-font-size-tablet: 1rem;
    --subtitle-font-size-mobile: 0.95rem;

    --paragraph-font-size: 1.1rem;
    --paragraph-line-height: 1.8;
    --paragraph-font-size-tablet: 1rem;
    --paragraph-font-size-mobile: 0.95rem;

    /* Underline Standard */
    --underline-width: 80px;
    --underline-height: 4px;
    --title-underline-gap: 15px;

    /* Slider Spacing Standard */
    --slider-container-padding: 8%;
    --slider-arrow-offset: 4%;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: var(--font-family);
    line-height: var(--paragraph-line-height);
    color: var(--text-color);
    background-color: var(--light-bg);
    font-size: var(--paragraph-font-size);
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Unified Slider Container Style */
.services-slider-container,
.products-slider-container,
.testimonials-slider-container {
    padding: 0 var(--slider-container-padding);
    position: relative;
    box-sizing: border-box;
}

/* Header & Navbar */
.header {
    background-color: transparent;
    padding: 20px 0;
    position: fixed; /* Always visible on scroll */
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.header.scrolled {
    background-color: rgba(17, 87, 157, 0.95); /* Semi-transparent primary color on scroll */
    padding: 10px 0;
}

.navbar-pill {
    background-color: var(--white);
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px 15px 40px; /* Increased padding for more height */
    width: 100%;
    min-height: 80px; /* Set a minimum height */
    position: relative; /* Base for mega menu */
}

.logo {
    flex-shrink: 0;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 5px;
    align-items: center;
    list-style: none; /* Remove bullet points */
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

/* Mega Menu Styles */
.has-mega-menu {
    position: static !important;
}

.has-mega-menu > a iconify-icon {
    transition: transform 0.3s ease;
}

.has-mega-menu:hover > a iconify-icon {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--white);
    border-radius: 30px;
    padding: 50px 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(20px);
    z-index: 1000;
    pointer-events: none;
    margin-top: 10px;
    border: 1px solid rgba(0,0,0,0.05);
    font-family: var(--font-family);
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.mega-menu-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: var(--subtitle-font-size);
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.mega-menu-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.mega-menu-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mega-menu-item {
    display: flex;
    gap: 12px;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    padding: 2px 0;
}

.mega-menu-item:hover {
    transform: translateX(5px);
}

.mega-icon-sm {
    font-size: 22px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.3s ease;
    width: 32px; /* Explicit width */
    height: 32px; /* Explicit height */
    flex-shrink: 0;
}

.mega-menu-item:hover .mega-icon-sm {
    color: var(--secondary-color);
    opacity: 1;
}

.mega-service-name {
    color: var(--text-color);
    font-weight: 500;
    font-size: var(--paragraph-font-size);
    transition: color 0.3s ease;
}

.mega-menu-item:hover .mega-service-name {
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .has-mega-menu {
        position: relative !important;
    }

    .mega-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        display: none;
        transform: none;
        padding: 10px 0 10px 15px;
        box-shadow: none;
        border: none;
        pointer-events: none;
        margin-top: 0;
        background: transparent;
        transition: none;
        width: auto;
        max-width: 100%;
        overflow: hidden;
    }

    .mega-menu .row {
        margin: 0 !important;
        --bs-gutter-x: 0 !important;
    }

    .has-mega-menu.mega-menu-open .mega-menu {
        opacity: 1;
        visibility: visible;
        display: block;
        pointer-events: auto;
    }

    .mega-menu::before {
        display: none;
    }

    .mega-menu-inner {
        max-width: 100%;
    }

    .mega-menu-title {
        font-size: 0.8rem;
        margin-bottom: 10px !important;
        margin-top: 20px;
        color: var(--primary-color);
        opacity: 0.8;
    }

    .mega-menu-title:first-child {
        margin-top: 0;
    }

    .mega-menu-list {
        gap: 8px;
    }

    .mega-menu-item {
        padding: 4px 0;
        gap: 10px;
    }

    .mega-service-name {
        font-size: 0.85rem;
    }

    .mega-icon-sm {
        font-size: 20px !important;
        width: 28px !important;
        height: 28px !important;
    }

    .has-mega-menu > a iconify-icon {
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .has-mega-menu.mega-menu-open > a iconify-icon {
        transform: rotate(180deg);
    }
}

.header-action {
    flex-shrink: 0;
}

.nav-links li {
    padding: 0;
    margin: 0;
}

.nav-links a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a.active {
    background-color: var(--primary-color);
    color: var(--white) !important;
}

.nav-links .dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 5px;
}

.btn-contact {
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
    margin-left: 15px;
}

.btn-contact:hover {
    background-color: var(--primary-color);
    color: var(--white) !important;
}

.btn-hero {
    background-color: var(--secondary-color);
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Swiper Slider */
.hero-slider {
    width: 100%;
    height: 100vh; /* Set to viewport height for full screen effect */
    min-height: 600px;
}

.hero-slider .swiper-slide {
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    overflow: visible; /* Changed to visible to allow hover effects */
}

.slide-content {
    position: absolute;
    top: 55%; /* Adjusted for navbar overlay */
    left: 10%;
    transform: translateY(-50%);
    color: var(--white);
    z-index: 2;
    max-width: 800px;
}

.slide-content h1 {
    font-size: 5rem; /* Standardized to 5rem (~80px) */
    font-weight: 700; /* Decreased from 800 */
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide-content p {
    font-size: 24px; /* Increased from 20px */
    margin-bottom: 40px;
    line-height: 1.6; /* Increased line-height */
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.slide-content .btn-hero {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s;
}

.swiper-slide-active .slide-content h1,
.swiper-slide-active .slide-content p {
    opacity: 1;
    transform: translateX(0);
}

.swiper-slide-active .slide-content .btn-hero {
    opacity: 1;
    transform: scale(1);
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}

.swiper-slide-active .slide-bg {
    transform: scale(1.1);
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color) !important;
}

/* Client Logo Scroll */
.clients-section {
    padding: 60px 0;
    background-color: var(--white);
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.clients-slider {
    display: flex;
    width: fit-content;
    animation: scroll 30s linear infinite;
}

.clients-slider:hover {
    animation-play-state: paused;
}

.client-logo {
    flex: 0 0 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.client-logo img {
    max-width: 180px;
    max-height: 70px;
    transition: transform 0.3s ease;
}

.client-logo img:hover {
    transform: scale(1.15);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Assumes duplicate set of items */
    }
}

/* Global Section Title Style */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
    color: #333;
    line-height: 1.2;
    margin-bottom: 0;
    order: 1;
}

.section-header h2 span {
    color: var(--primary-color);
}

.section-header::after {
    content: '';
    width: var(--underline-width);
    height: var(--underline-height);
    background-color: var(--primary-color);
    border-radius: 2px;
    margin-top: var(--title-underline-gap);
    margin-bottom: var(--title-underline-gap);
    order: 2;
}

.section-header .subtitle {
    display: block;
    font-size: var(--subtitle-font-size);
    font-weight: var(--subtitle-font-weight);
    color: #888;
    letter-spacing: 1.5px;
    margin-top: 0;
    text-transform: uppercase;
    order: 3;
}

/* Service Section Slider Refinement */
/* Global Section Padding */
.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0 !important;
    }
}

/* Service Section Slider Refinement */
.services-slider-section {
    background-color: #fdfdfd;
    overflow: hidden;
    position: relative;
}

.services-swiper {
    padding: 40px 0 80px !important;
    overflow: hidden !important; /* Proper slider clipping */
    position: relative;
    z-index: 1;
}

.service-slide-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 380px; /* Slightly increased for 50/50 split */
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    /* Fix for sub-pixel rendering and overflow artifacts */
    transform: translateZ(0);
}

.service-slide-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.card-top {
    padding: 30px 25px;
    height: 50%;
    min-height: 190px;
    flex-shrink: 0;
    position: relative;
    color: #fff;
    background-color: var(--primary-color) !important;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 20px 20px 0 0;
}

.service-slide-card:hover .card-top {
    background-color: var(--secondary-color) !important;
}

.service-slide-card:hover .card-top h3 {
    color: #000;
}

.service-slide-card:hover .badge-icon .icon-inner {
    background-color: var(--primary-color);
    color: #fff;
}

.service-slide-card:hover .card-bottom ul li::before {
    background-color: var(--secondary-color);
}

.card-top h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    z-index: 2;
    position: relative;
    max-width: 80%;
    margin: 0;
}

.watermark-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 80px;
    color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.badge-icon {
    position: absolute;
    bottom: -27px;
    right: 25px;
    width: 54px;
    height: 54px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s ease;
}

.badge-icon .icon-inner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color); /* Primary color icon */
    font-size: 18px;
    background-color: #fff; /* White background */
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.card-bottom {
    padding: 40px 40px 25px; /* Consistent left padding */
    background: #fff;
    height: 50%; /* Equal portion */
    min-height: 190px;
    flex-shrink: 0;
    position: relative;
    border-radius: 0 0 20px 20px !important; /* Explicitly set all corners */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Vertical line spanning the entire lower portion */
.card-bottom::before {
    content: '';
    position: absolute;
    left: 40px; /* Match left padding for center intersection */
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #e0e0e0;
    z-index: 1;
}

/* Timeline Style List */
.card-bottom ul {
    list-style: none;
    padding-left: 0; /* Clear padding for precise control */
    position: relative;
    margin: 0;
    z-index: 2;
}

.card-bottom ul li {
    font-size: 14px;
    color: #444;
    margin-bottom: 18px;
    position: relative;
    padding-left: 25px; /* Space for dot and gap */
    line-height: 1.4;
}

/* Timeline dots */
.card-bottom ul li::before {
    content: '';
    position: absolute;
    left: -5px; /* Half of width (10px) to center on parent boundary */
    top: 6px;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 3;
    border: 2px solid #fff;
    transition: background-color 0.3s ease;
}

.service-slide-card:hover .card-bottom ul li::before {
    background-color: var(--secondary-color);
}

.card-bottom ul li:last-child {
    margin-bottom: 0;
}

/* Unified Slider Navigation Arrows */
.service-prev, .service-next,
.product-prev, .product-next,
.testimonial-prev, .testimonial-next {
    width: 50px !important;
    height: 50px !important;
    background-color: var(--secondary-color) !important;
    border-radius: 50% !important;
    color: #000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    top: 50% !important;
    z-index: 10 !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.service-prev, .product-prev, .testimonial-prev {
    left: var(--slider-arrow-offset) !important;
    transform: translateY(-50%) translateX(-50%) !important;
}

.service-next, .product-next, .testimonial-next {
    right: var(--slider-arrow-offset) !important;
    transform: translateY(-50%) translateX(50%) !important;
}

.service-prev::after, .service-next::after,
.product-prev::after, .product-next::after,
.testimonial-prev::after, .testimonial-next::after {
    font-size: 18px !important;
    font-weight: 900 !important;
}

.service-prev:hover, .service-next:hover,
.product-prev:hover, .product-next:hover,
.testimonial-prev:hover, .testimonial-next:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

/* Unified Responsive Slider Styles */
@media (max-width: 991px) {
    .services-slider-container,
    .products-slider-container,
    .testimonials-slider-container {
        padding: 0 80px !important;
    }
    .service-prev, .product-prev, .testimonial-prev { left: 40px !important; }
    .service-next, .product-next, .testimonial-next { right: 40px !important; }

    .service-prev, .service-next, .product-prev, .product-next, .testimonial-prev, .testimonial-next {
        width: 35px !important;
        height: 35px !important;
    }
    .service-prev::after, .service-next::after, .product-prev::after, .product-next::after, .testimonial-prev::after, .testimonial-next::after {
        font-size: 14px !important;
    }
}

@media (max-width: 768px) {
    .services-slider-container,
    .products-slider-container,
    .testimonials-slider-container {
        padding: 0 60px !important;
    }
    .service-prev, .product-prev, .testimonial-prev { left: 30px !important; }
    .service-next, .product-next, .testimonial-next { right: 30px !important; }

    .service-prev, .service-next, .product-prev, .product-next, .testimonial-prev, .testimonial-next {
        width: 32px !important;
        height: 32px !important;
    }
    .service-prev::after, .service-next::after, .product-prev::after, .product-next::after, .testimonial-prev::after, .testimonial-next::after {
        font-size: 14px !important;
    }
}

/* High-Fidelity CTA Section v2 */
.cta-v2-section {
    background-color: var(--primary-color);
    padding: 100px 0 60px;
}

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

.cta-v2-card {
    background-color: var(--secondary-color);
    border-radius: 60px; /* Increased fallback */
    min-height: 420px;
    position: relative;
    z-index: 2;
    overflow: visible;
    /* High-Fidelity Refined Polygon: Flush at bottom/sides (0%/100%) with curved/skewed top */
    clip-path: polygon(
        0% 100%, 100% 100%,                                                                                     /* Pure Flush Bottom */
        100% 14%, 99.9% 11.5%, 99.6% 9.2%, 99.1% 7.2%, 98.4% 5.4%, 97.5% 3.9%, 96.4% 2.6%, 95.1% 1.6%, 93% 0%,  /* Flush Top Right Skew (Smoothed) */
        7% 17.5%, 5.5% 18%, 4.2% 18.8%, 3.1% 19.8%, 2.2% 21.1%, 1.4% 22.6%, 0.8% 24.3%, 0.3% 26.1%, 0% 28%      /* Flush Top Left Skew (Smoothed) */
    );
    padding-top: 60px;
}

.cta-v2-title {
    color: var(--primary-color);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 95%;
}

.cta-v2-subtitle {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 500;
    opacity: 0.9;
}

.btn-cta-v2 {
    background-color: var(--primary-color);
    color: #fff !important;
    padding: 18px 45px !important;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-cta-v2:hover {
    background-color: #0d467d;
    transform: translateY(-5px) scale(1.05);
}

.cta-v2-illustration-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.cta-v2-img {
    height: 100%;
    max-height: 420px;
    width: auto;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
    margin-right: 10px;
    position: relative;
    z-index: 10;
}

.cta-v2-bar {
    margin-top: 0;
    min-height: 110px;
    z-index: 1;
    display: flex;
    align-items: center;
}

.contact-bar-section {
    background-color: var(--primary-color);
    position: relative;
    z-index: 5;
}

.bar-label {
    font-size: 22px;
}

.bar-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    transition: all 0.3s ease;
}

.bar-item:hover .bar-icon {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: rotate(15deg);
}

.btn-bar-action {
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
    padding: 12px 30px !important;
    transition: all 0.3s ease;
}

.btn-bar-action:hover {
    background-color: #fff;
    transform: scale(1.05);
}

@media (max-width: 1199px) {
    .cta-v2-title { font-size: 28px; }
    .cta-v2-img { max-height: 380px; }
}

@media (max-width: 991px) {
    .cta-v2-section { padding-top: 60px; }
    .cta-v2-card {
        min-height: auto;
        padding-bottom: 50px;
        /* High-Fidelity Refined Polygon for Tablets */
        clip-path: polygon(
            0% 100%, 100% 100%,                                                       /* Flush Bottom */
            100% 8%, 99.8% 5%, 99.2% 3%, 98.2% 1.5%, 96.8% 0.8%, 95% 0.4%, 93% 0%,    /* Top Right Skew */
            7% 10.5%, 5% 11.2%, 3.2% 12.5%, 1.8% 14.2%, 0.8% 16.2%, 0.2% 18.5%, 0% 20% /* Top Left Skew */
        );
    }
    .cta-v2-title { font-size: 24px; }
    .cta-v2-bar { padding: 40px 0; }
}

@media (max-width: 767px) {
    .cta-v2-card {
        /* Even more compact skew for small mobile screens to prevent text overlap */
        clip-path: polygon(
            0% 100%, 100% 100%,                                                       /* Flush Bottom */
            100% 6%, 99.8% 3.5%, 99.2% 2%, 98.2% 1%, 96.8% 0.5%, 95% 0.2%, 93% 0%,    /* Top Right Skew */
            7% 8.5%, 5% 9.2%, 3.2% 10.5%, 1.8% 12.2%, 0.8% 14.2%, 0.2% 16.5%, 0% 18%  /* Top Left Skew */
        );
    }
    .cta-v2-title { font-size: 20px; }
    .cta-v2-subtitle { font-size: 16px; }
    .btn-cta-v2 { padding: 15px 35px !important; font-size: 16px; }
    .cta-v2-bar { padding: 50px 0; }
    .bar-label { font-size: 18px; display: block; }
}

/* Footer */
.footer {
    background-color: #000000 !important;
    color: var(--white);
    padding: 80px 0 20px;
    border-top: 4px solid #ffffff;
    border-bottom: 4px solid #ffffff;
}

.footer h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer p, .footer span, .footer li {
    color: #cccccc;
}

.footer a {
    color: #cccccc;
    transition: 0.3s;
}

.footer a:hover {
    color: var(--secondary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Explicitly 3 columns */
    gap: 60px;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .footer-logo {
        grid-column: span 2;
        text-align: center;
    }
    .footer-logo img {
        margin-left: auto;
        margin-right: auto;
    }
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-logo {
        text-align: center;
    }
    .footer-links, .footer-contact {
        grid-column: span 1;
        text-align: left;
    }
}

.footer-logo p {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.8;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 16px;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: #000;
    transform: translateY(-3px);
}

.footer-links h3, .footer-contact h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul {
    padding-left: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Page Header */
.page-header {
    background-image: linear-gradient(rgba(17, 87, 157, 0.8), rgba(17, 87, 157, 0.8)), url('../../img/about/us/cover/photo/image/476.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 160px 8% 80px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.page-header .container {
    z-index: 2;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5) !important;
}

.breadcrumb {
    margin-bottom: 0;
}

.page-header h1 {
    font-size: 48px; /* Increased from 36px */
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header p {
    color: var(--secondary-color);
    font-weight: 500;
}

/* About Intro Section */
.about-intro-section {
    background-color: #fff;
    padding: 100px 8%; /* Increased horizontal padding */
}

.about-intro-stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-stat-item {
    padding: 20px 0; /* Reduced from 30px */
}

.about-stat-item:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.about-stat-number {
    font-size: 2.5rem; /* Decreased from 2.5rem */
    font-weight: 600;
    color: #000;
    line-height: 1;
    margin-bottom: 10px;
}

.about-stat-text {
    font-size:1rem; /* Decreased from 0.95rem */
    color: #888;
    font-weight: 400;
}

.about-intro-image-wrapper {
    position: relative;
    padding: 0 15px;
}

.about-intro-img {
    border-radius: 30px;
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-intro-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left: 30px;
}

.about-intro-content h2 {
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
    color: #000;
    line-height: 1.4;
    margin-bottom: 25px;
}

.about-intro-content p {
    font-size: 1.05rem; /* Slightly decreased */
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.btn-about-read {
    background-color: #3b71fe;
    color: #fff !important;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    transition: all 0.3s ease;
}

.btn-about-read:hover {
    background-color: #2a58e6;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 113, 254, 0.3);
}

@media (max-width: 1199px) {
    .about-intro-content h2 {
        font-size: var(--title-font-size-tablet);
    }
    .about-stat-number {
        font-size: 1.8rem; /* Adjusted for new base */
    }
}

@media (max-width: 991px) {
    .page-header {
        padding: 120px 6% 60px;
    }
    .about-intro-section {
        padding: 60px 6%; /* Increased padding for tablet */
    }
    .about-intro-stats {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        margin-bottom: 40px;
    }
    .about-stat-item {
        width: 33.33%;
        text-align: center;
        border-bottom: none !important;
        border-top: none !important;
        padding: 10px 5px;
    }
    .about-stat-item:not(:last-child) {
        border-right: 1px solid #eee;
    }
    .about-stat-number {
        font-size: 1.5rem;
    }
    .about-stat-text {
        font-size: 0.75rem;
    }
    .about-intro-content {
        padding-left: 0;
        margin-top: 50px;
        text-align: center;
        align-items: center;
    }
    .about-intro-content h2 {
        font-size: var(--title-font-size-tablet);
    }
    .about-intro-img {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 100px 4% 50px;
    }
    .about-intro-section {
        padding: 40px 4%; /* More compact for mobile */
    }
}

/* Guiding Principles Section */
.guiding-principles-section {
    background-color: #fff;
}

.principles-main-title {
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* Removed legacy word-specific underlines in favor of global section-header standard */
.underline-principles {
    position: relative;
    padding-bottom: 0;
}

.principles-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.principle-card {
    padding: 20px;
}

.principle-icon-wrapper {
    position: relative;
    width: 250px; /* Increased to accommodate images with dots */
    height: 180px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.principle-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
}

.principle-card-title {
    font-size: 32px; /* Increased from 26px */
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.title-line {
    width: 45px;
    height: 3px;
    background-color: var(--primary-color);
    display: block;
}

.principle-desc {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    max-width: 85%;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .principles-main-title { font-size: 28px; }
    .principle-icon { font-size: 60px; }
    .principle-icon-wrapper { width: 120px; height: 120px; }
    .principle-card-title { font-size: 22px; }
    .title-line { width: 30px; }
    .principle-desc { max-width: 100%; }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 130px 0 60px !important;
    }

    /* Hero Slider Tablet/Mobile */
    .slide-content {
        left: 5% !important;
        right: 5% !important;
        width: 90% !important;
    }

    .slide-content h1 {
        font-size: 42px !important; /* Tablet size */
        line-height: 1.2;
    }

    .slide-content p {
        font-size: 18px !important;
        margin-bottom: 25px;
    }

    .btn-hero {
        padding: 12px 30px;
        font-size: 16px;
    }

    .header {
        position: fixed !important;
        inset: 0 0 auto 0 !important; /* Modern top, right, left: 0 */
        width: 100% !important;
        padding: 12px 0 !important;
        z-index: 1000;
        box-sizing: border-box !important;
        background-color: transparent;
        display: flex !important;
        justify-content: center !important;
        align-items: flex-start !important;
    }

    .header .container {
        padding: 0 15px !important; /* Standardized mobile gutter */
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .header.subpage-header {
        background-color: rgba(17, 87, 157, 0.98) !important;
        padding: 8px 0 !important;
        transition: none !important;
    }

    .navbar-pill {
        padding: 10px 20px !important;
        min-height: 70px;
        width: 100% !important; /* Fill the container's 15px gutter-bounded space */
        margin: 0 auto !important;
        box-sizing: border-box !important;
        border-radius: 100px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        background-color: var(--white) !important;
        border: none !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    }

    .logo a {
        font-size: 20px;
    }

    .menu-toggle {
        display: block;
        font-size: 22px;
        margin-left: 10px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        padding: 40px 20px;
        z-index: 1001;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        flex: none;
        justify-content: flex-start;
        overflow-y: auto; /* Enable scrolling for the menu itself */
        -webkit-overflow-scrolling: touch;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 20px;
        width: 100%;
        flex-shrink: 0; /* Don't compress header */
    }

    .close-menu {
        font-size: 24px;
        color: var(--primary-color);
        cursor: pointer;
        padding: 5px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: left;
        margin-bottom: 5px;
    }

    .nav-links a {
        display: block;
        padding: 12px 15px !important;
        width: 100%;
    }

    .btn-contact {
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
    }

    /* Handled by unified slider section at top */

    .product-slide-card {
        margin: 15px 0 !important; /* Consistent vertical margin for shadow visibility */
    }

    .product-content {
        padding: 15px 15px 10px !important; /* Reduced from 40px for mobile efficiency */
    }

    .product-content .d-flex {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px !important;
    }

    .product-category {
        margin-bottom: 0 !important;
    }

    .product-title {
        font-size: 1rem !important;
        margin: 8px 0 !important;
    }

    .product-desc {
        font-size: 0.85rem !important;
        margin-bottom: 15px !important;
    }

    /* Redundant arrow styles removed for unification */

    /* Why Choose Us Tablet/Mobile Layout */
    .why-choose-us {
        height: auto !important;
        min-height: auto !important;
    }

    .choose-swiper {
        height: 450px !important;
    }

    .choose-point {
        padding-left: 40px !important;
        min-height: 140px !important;
        gap: 30px !important;
    }

    .point-text {
        font-size: 18px !important;
    }

    .stats-section {
        padding: 60px 0 !important; /* Unify top/bottom padding for visual balance */
    }

    /* Stats Section Tablet */
    .stat-item h2 {
        font-size: 3rem !important;
    }

    /* Force Service Card Color Visibility */
    .card-top {
        background-color: var(--primary-color) !important;
        min-height: 190px !important;
    }
}

/* Mobile Specific (Small Screens) */
@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 32px !important;
    }

    .stat-item h2 {
        font-size: 2.5rem !important;
    }

    .why-choose-us .text-center h2 {
        font-size: 1.3rem !important;
        line-height: 1.3 !important;
    }
    .choose-image-wrapper {
        min-height: 250px !important;
    }
    .choose-image-bg {
        width: 250px !important;
        height: 250px !important;
        top: 50% !important;
    }
    .featured-img {
        max-height: 160px !important;
    }
    .choose-swiper {
        height: 400px !important;
    }
    .choose-point {
        padding-left: 20px !important;
        min-height: 120px !important;
        gap: 25px !important;
    }
    .swiper-slide-active.choose-point::before,
    .swiper-slide-active.choose-point::after {
        left: 37.5px !important; /* 20px + 17.5px radius */
        height: 115px !important;
    }
    .point-circle {
        width: 35px !important;
        height: 35px !important;
        font-size: 12px !important;
        background: #11579D !important;
    }
    .point-text {
        font-size: 1.2rem !important;
        line-height: 1.2 !important;
        max-width: 100% !important;
    }

    /* Redundant arrow styles removed for unification */
}

/* Utility Classes */
.transition-all {
    transition: all 0.3s ease;
}

.hover-translate-y:hover {
    transform: translateY(-10px);
}

.hover-shadow-lg:hover {
    /* Replaced by .shadow-lg in HTML if needed */
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

.rounded-4 {
    border-radius: 1.5rem !important;
}

/* Why Choose Us Redesign */
.why-choose-us {
    background-color: var(--primary-color);
    color: #fff;
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .why-choose-us {
        min-height: 850px;
    }
}

.choose-image-wrapper {
    height: 80%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.choose-image-bg {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    aspect-ratio: 1 / 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.featured-img {
    max-height: 480px;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
    object-fit: contain;
    z-index: 5;
    position: relative;
    transition: all 0.5s ease;
}

.choose-swiper {
    padding: 20px 0;
    overflow: hidden !important;
}

.choose-point {
    display: flex !important;
    align-items: center;
    gap: 40px;
    padding: 10px 0 10px 100px;
    cursor: default;
    transition: all 0.5s ease;
    position: relative;
    min-height: 180px;
}

/* Timeline Line Fix: Bridge ONLY on active */
.swiper-slide-active.choose-point::before,
.swiper-slide-active.choose-point::after {
    content: '';
    position: absolute;
    left: 130px; /* 100px + 30px radius */
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 0;
}

.swiper-slide-active.choose-point::before { bottom: 50%; height: 170px; }
.swiper-slide-active.choose-point::after { top: 50%; height: 170px; }

.point-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #11579D !important; /* Force solid sección background */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.5s ease;
    z-index: 10;
    position: relative;
    border: 2px solid rgba(255,255,255,0.1);
}

.point-text {
    font-size: 32px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.4;
    transition: all 0.5s ease;
    margin: 0;
    max-width: 80%;
}

.swiper-slide-active.choose-point .point-circle {
    background: #fff !important;
    color: var(--secondary-color);
    transform: scale(1.25);
}

.swiper-slide-active.choose-point .point-text {
    color: #fff;
    opacity: 1;
}

.swiper-slide-next.choose-point,
.swiper-slide-prev.choose-point {
    opacity: 0.4;
}

@media (max-width: 768px) {
    .why-choose-us .text-center h2 {
        font-size: 1.3rem !important;
        line-height: 1.3 !important;
    }
    .choose-image-wrapper {
        min-height: 250px !important;
    }
    .choose-image-bg {
        width: 250px !important;
        height: 250px !important;
        top: 50% !important;
    }
    .featured-img {
        max-height: 160px !important;
    }
    .choose-swiper {
        height: 400px !important;
    }
    .choose-point {
        padding-left: 20px !important;
        min-height: 120px !important;
        gap: 25px !important;
    }
    .swiper-slide-active.choose-point::before,
    .swiper-slide-active.choose-point::after {
        left: 37.5px !important; /* 20px + 17.5px radius */
        height: 115px !important;
    }
    .point-circle {
        width: 35px !important;
        height: 35px !important;
        font-size: 12px !important;
        background: #11579D !important;
    }
    .point-text {
        font-size: 1.2rem !important;
        line-height: 1.4 !important;
        max-width: 100% !important;
    }
}

/* Stats Section Revert */
.stat-item h2 {
    font-size: 3.5rem;
}

@media (max-width: 768px) {
    .stat-item h2 {
        font-size: 2.5rem !important;
    }
    .stat-item p {
        font-size: 0.9rem !important;
    }
}

.stat-item p {
    font-size: 1rem;
}

/* Why Choose Us Refinement */
.icon-wrapper {
    display: inline-block;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 15px;
}

.choose-card:hover .icon-wrapper {
    background-color: var(--secondary-color);
}


/* Products */
.products-swiper {
    padding: 40px 0 80px !important;
    overflow: hidden !important;
    position: relative;
    z-index: 1;
}

.product-slide-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    min-height: 380px;
    margin: 15px 0; /* Vertical margin for shadow visibility, removed horizontal to match service cards */
}

.product-slide-card:hover {
    transform: translateY(-15px);
}

.product-image-wrapper {
    height: 200px;
    position: relative;
    background: #f8f9fa;
    flex-shrink: 0;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-slide-card:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(3, 43, 80, 0) 0%, rgba(3, 43, 80, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-slide-card:hover .product-overlay {
    opacity: 1;
}

.product-blue {
    color: var(--primary-color);
}

.product-content {
    padding: 40px 40px 25px; /* Match card-bottom padding exactly */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #000;
    padding: 3px 10px;
    border-radius: 50px;
}

.product-date {
    font-size: 9px;
    color: #999;
}

.product-title {
    font-size: 24px; /* Increased from 20px */
    font-weight: 700;
    color: var(--primary-color);
    margin: 12px 0;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.services-swiper .swiper-slide,
.products-swiper .swiper-slide,
.testimonials-swiper .swiper-slide {
    height: auto !important;
    display: flex !important;
    justify-content: center;
}

.product-slide-card:hover .product-title {
    color: var(--secondary-color);
}

.product-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    /* Removed line-clamp to ensure all text is visible */
}

.product-actions {
    margin-top: auto;
}

.btn-product-trial {
    background-color: var(--primary-color);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1.5px solid var(--primary-color);
}

.btn-product-trial:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-product-trial iconify-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-product-trial:hover iconify-icon {
    transform: translateX(3px);
}

.btn-product-view {
    background-color: #fff;
    color: var(--primary-color) !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1.5px solid var(--primary-color);
}

.btn-product-view:hover {
    background-color: var(--primary-color);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-product-view iconify-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-product-view:hover iconify-icon {
    transform: translateX(3px);
}

.products-slider-container {
    position: relative;
}
/* Removed redundant product navigation overrides */

/* Global Network Map Section */
.global-network-section {
    background-color: #f8f9fa; /* Light background as per map.png */
    padding: 100px 0;
}

.map-wrapper {
    max-width: 1200px;
    width: 90%;
}

.map-bg {
    filter: brightness(0) saturate(100%) invert(21%) sepia(87%) saturate(2256%) hue-rotate(193deg) brightness(97%) contrast(101%) drop-shadow(0 20px 50px rgba(0,0,0,0.1));
    opacity: 0.9;
}

.map-connections {
    pointer-events: none;
    z-index: 1;
}

.connection-line {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-dasharray: 5, 5;
    opacity: 0.6;
}

.map-marker {
    position: absolute;
    z-index: 2;
    transform: translate(-50%, -100%);
}

.marker-pin {
    width: 50px;
    height: 50px;
    background: #ff4d00; /* Orange pin as in map.png */
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease;
}

.map-marker:hover .marker-pin {
    transform: rotate(-45deg) scale(1.1);
}

.flag-container {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.flag-container iconify-icon {
    font-size: 30px;
}

.marker-base {
    width: 20px;
    height: 6px;
    background: rgba(17, 87, 157, 0.2);
    border: 1px dashed var(--primary-color);
    border-radius: 50%;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* GPS Pulse Animation */
.marker-pulse {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 6px;
    background: rgba(255, 77, 0, 0.6);
    border-radius: 50%;
    z-index: 0;
}

.marker-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 20px 10px rgba(255, 77, 0, 0.4);
    animation: gps-pulse 2s infinite;
}

@keyframes gps-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

.map-legend {
    background: #fff;
    border-radius: 15px;
    padding: 15px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    font-weight: 500;
    color: var(--primary-color);
}

.legend-item iconify-icon {
    font-size: 24px;
}

/* Marker specifics to match Figma perspective */
.marker-usa { transition-delay: 0.1s; }
.marker-uk { transition-delay: 0.2s; }
.marker-poland { transition-delay: 0.3s; }
.marker-bangladesh { transition-delay: 0.4s; }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .map-wrapper { width: 95%; }
    .marker-pin { width: 40px; height: 40px; }
    .flag-container { width: 24px; height: 24px; }
    .flag-container iconify-icon { font-size: 24px; }
}

@media (max-width: 767px) {
    .global-network-section { padding: 60px 0; }
    .marker-pin { width: 30px; height: 30px; border-width: 2px; }
    .flag-container { width: 18px; height: 18px; }
    .flag-container iconify-icon { font-size: 18px; }
    .map-legend { gap: 10px; padding: 10px; }
    .legend-item { font-size: 0.8rem; padding: 5px 10px; }
}

@media (max-width: 480px) {
    .map-legend { flex-direction: column; align-items: stretch; }
}

/* Brand Message Slider Section */
.brand-slider-section {
    height: 600px;
    width: 100%;
    position: relative;
}

.brand-swiper {
    width: 100%;
    height: 100% !important;
}

.brand-swiper .swiper-wrapper {
    height: 100% !important;
}

.brand-slide {
    position: relative;
    overflow: hidden;
    height: 100% !important;
}

.brand-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 10s linear;
}

.swiper-slide-active .brand-slide-bg {
    transform: scale(1.1);
}

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Increased darkness from 0.6 to 0.75 */
    z-index: 1;
}

.brand-content-wrapper {
    position: relative;
    z-index: 2;
}

.brand-title {
    font-size: 64px; /* Increased from 54px */
    font-weight: 700; /* Increased weight */
    letter-spacing: -0.5px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 24px; /* Increased from 20px */
    font-weight: 400; /* Increased weight */
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    max-width: 1000px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .brand-slider-section { height: 450px; }
    .brand-title {
        font-size: 36px !important; /* Decreased from 42px */
        line-height: 1.2 !important;
    }
    .brand-subtitle {
        font-size: 14px !important; /* Decreased from 16px */
        letter-spacing: 2px !important;
        max-width: 80% !important;
    }
}

@media (max-width: 767px) {
    .brand-slider-section { height: 350px; }
    .brand-title {
        font-size: 24px !important; /* Decreased from 28px */
        margin-bottom: 10px !important;
    }
    .brand-subtitle {
        font-size: 12px !important; /* Decreased from 13px */
        letter-spacing: 1px !important;
        max-width: 90% !important;
        line-height: 1.4 !important;
    }
}

@media (max-width: 480px) {
    .brand-slider-section { height: 300px; }
    .brand-title {
        font-size: 20px !important; /* Decreased from 24px */
    }
    .brand-subtitle {
        font-size: 10px !important; /* Decreased from 11px */
        letter-spacing: 0.5px !important;
    }
}

/* Redesigned Client Section */
.client-section {
    background-color: #fcfcfc !important;
}

.client-title {
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
    color: #333;
    margin-bottom: 0;
    line-height: 1.2;
}

.client-blue {
    color: var(--primary-color);
}

.client-underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin-top: 2px;
    border-radius: 2px;
}

.client-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.client-logo-img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-card:hover .client-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 991px) {
    .client-card { height: 150px; padding: 20px; }
    .client-logo-img { max-height: 80px; }
}

@media (max-width: 767px) {
    .client-card { height: 130px; padding: 15px; }
    .client-logo-img { max-height: 60px; }
    .client-title { font-size: 24px; }
}

/* Redesigned Testimonials Section */
.testimonials-section {
    background-color: #fff;
}

/* Testimonials Section Styles moved to unified slider section */

.testimonial-new-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    width: 100%;
    position: relative;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.8s ease; /* Smoother, more natural transition */
    margin: 20px 0;
}

.testimonial-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Changed from 70% to 100% to cover full card */
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

.testimonial-content-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95); /* Slight transparency for premium look */
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 45px 20px 20px;
    text-align: center;
    z-index: 2;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid #fff;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    background: #fff;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
    color: #333;
}

.testimonial-text {
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

/* Removed redundant testimonial navigation overrides */

/* Emphasis for centered/active slide */
.testimonials-swiper {
    padding: 40px 0 80px !important;
}

.testimonials-swiper .swiper-slide-active .testimonial-new-card {
    transform: scale(1.15);
}

@media (max-width: 767px) {
    .testimonial-new-card { height: 450px; }
    .testimonial-content-box { padding-top: 40px; }
    .testimonial-avatar { width: 60px; height: 60px; top: -30px; }
}

/* Testimonials legacy card removal or preservation */
/* Keeping .testimonial-card class for legacy if used elsewhere, but we use .testimonial-new-card now */

/* CTA Section */

/* Video Section (About Us) */
.about-video-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.about-video-section::before,
.about-video-section::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 120px;
    background-color: var(--primary-color);
    z-index: 1;
}

.about-video-section::before {
    top: 0;
}

.about-video-section::after {
    bottom: 0;
}

.video-thumbnail-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    max-width: 1000px;
    margin: 0 auto;
    transition: transform 0.4s ease;
}

.video-thumbnail-wrapper:hover {
    transform: translateY(-5px);
}

.video-thumb {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 3;
}

.video-play-btn iconify-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-left: 5px; /* Visual center adjustment for play icon */
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--secondary-color);
}

@media (max-width: 991px) {
    .about-video-section::before,
    .about-video-section::after {
        height: 80px;
    }
    .video-play-btn {
        width: 80px;
        height: 80px;
    }
    .video-play-btn iconify-icon {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .about-video-section { padding: 60px 0; }
    .about-video-section::before,
    .about-video-section::after {
        height: 60px;
    }
    .video-thumbnail-wrapper {
        border-radius: 20px;
    }
    .video-play-btn {
        width: 60px;
        height: 60px;
    }
    .video-play-btn iconify-icon {
        font-size: 24px;
    }
}

/* Team Sections (About Us) */
.team-section {
    background-color: var(--white);
    padding: 80px 8%;
}

.team-title {
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.team-title span {
    color: var(--primary-color);
}

.team-subtitle {
    font-size: var(--subtitle-font-size);
    font-weight: var(--subtitle-font-weight);
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 50px;
}

.team-card {
    border: none;
    background: transparent;
    text-align: left;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.team-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    background-color: #f2f2f2;
}

.team-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-card:hover .team-img {
    transform: scale(1.08);
}

.team-member-name {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.team-member-role {
    font-size: 16px;
    color: #555;
    margin-bottom: 5px;
}

.team-member-exp {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

.btn-read-bio {
    display: inline-block;
    border: 1.5px solid #222;
    color: #222;
    border-radius: 100px;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-read-bio:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(17, 87, 157, 0.2);
}

/* Expert Slider (About Us) */
.expert-section {
    background-color: var(--white);
    padding: 80px 8%;
}

.expert-swiper {
    padding: 20px 0 !important;
}

.expert-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background-color: #f8f9fa;
    aspect-ratio: 1 / 1;
}

.expert-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.expert-card:hover .expert-img {
    transform: scale(1.1);
}

.expert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 87, 157, 0.85); /* Primary blue semi-transparent */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 20px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 5;
    text-align: left;
}

.expert-card:hover .expert-overlay {
    opacity: 1;
}

.expert-overlay-name {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.expert-overlay-role {
    color: #fff;
    font-size: 14px;
    margin-bottom: 5px;
    opacity: 0.9;
}

.expert-overlay-exp {
    color: #fff;
    font-size: 14px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-expert-bio {
    display: inline-block;
    border: 1.5px solid #fff;
    color: #fff !important;
    border-radius: 100px;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-expert-bio:hover {
    background-color: #fff;
    color: var(--primary-color) !important;
}

.expert-logo-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.expert-logo-overlay img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Linear transition for smooth continuous auto-scroll */
.expert-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

@media (max-width: 767px) {
    .expert-section { padding: 50px 0; }
}
/* Removed legacy team underline */
.expert-section {
    padding: 100px 8%;
    background-color: #fff;
}

/* Services Intro Section Redesign */
.services-intro-section {
    padding: 100px 8%;
    background-color: #fff;
}

.services-intro-title {
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
    color: #333;
    line-height: 1.8;
}

.services-intro-title span {
    color: var(--primary-color);
}

.services-intro-desc {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.services-featured-img-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    height: 100%;
}

.services-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-step-list {
    position: relative;
    padding-left: 0;
    list-style: none;
}

/* The vertical line */
.services-step-list::before {
    content: '';
    position: absolute;
    left: 17.5px; /* Center of the 35px circle */
    top: 20px;
    bottom: 20px;
    width: 2px;
    background-color: var(--primary-color);
    opacity: 0.3;
}

.services-step-item {
    position: relative;
    padding-left: 55px;
    margin-bottom: 35px;
}

.services-step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
}

.services-step-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    padding-top: 5px;
}

.btn-services-connect {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    margin-top: 10px;
}

.btn-services-connect:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
    .services-intro-section { padding: 80px 6%; }
    .services-intro-title { font-size: 36px; }
}

@media (max-width: 767px) {
    .services-intro-section { padding: 60px 4%; }
    .services-intro-title { font-size: 28px; }
    .services-step-text { font-size: 16px; }
    .services-featured-img-wrapper { height: 350px; margin-bottom: 30px; }
}

/* Industries We Serve Section */
.industries-section {
    background-color: #f9f9f9;
    padding: 100px 8%;
}

.industries-title {
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
    color: #333;
    line-height: 1.2;
}

.industries-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #888;
    letter-spacing: 2px;
}

.industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 180px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: #fff;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
    background-color: var(--primary-color) !important;
}

.industry-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.industry-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.industry-card:hover .industry-icon {
    filter: brightness(0) invert(1);
}

.industry-card:hover iconify-icon {
    color: #fff !important;
}

.industry-name {
    color: #333;
    line-height: 1.2;
    transition: all 0.4s ease;
}

.industry-card:hover .industry-name {
    color: #fff !important;
}

@media (max-width: 991px) {
    .industries-section { padding: 80px 6%; }
    .industries-title { font-size: var(--title-font-size-tablet); }
    .industry-card { min-height: 160px; padding: 20px !important; }
}

@media (max-width: 767px) {
    .industries-section { padding: 60px 4%; }
    .industries-title { font-size: var(--title-font-size-mobile); }
    .industry-name { font-size: 13px !important; }
    .industry-icon-wrapper { width: 45px; height: 45px; }
}



/* Service Details Page */
.service-details-row {
    background-color: #ffffff;
    padding: 100px 8%;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.service-details-row:nth-child(even) {
    background-color: #f8f9fa;
}
.service-details-title {
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 20px;
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
}
.service-details-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}
.service-details-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}
.service-details-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 500;
    color: #555;
}
.service-details-list iconify-icon {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.4rem;
}
.service-details-img {
    border-radius: 20px;
}

.cursive-top {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .service-details-row { padding: 60px 6%; }
    .service-details-title { font-size: var(--title-font-size-tablet); }
    .service-details-row p.fs-5 { font-size: 1.1rem !important; }
    .service-details-row h4 { font-size: 1.25rem; }
    .service-details-list li { font-size: 0.95rem; }
    .cursive-top { font-size: 1.8rem; }
}
@media (max-width: 767px) {
    .service-details-row { padding: 40px 4%; }
    .service-details-title { font-size: var(--title-font-size-mobile); }
    .service-details-row p.fs-5 { font-size: 1rem !important; }
    .service-details-row h4 { font-size: 1.1rem; }
    .service-details-list li { font-size: 0.9rem; }
    .cursive-top { font-size: 1.5rem; }
}

/* Build Banner Section */
.build-banner-section {
    position: relative;
    padding: 120px 0;
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.build-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 43, 80, 0.88);
}
.build-banner-content {
    position: relative;
    z-index: 2;
}
.build-banner-title {
    font-size: var(--title-font-size);
    margin-bottom: 20px;
    font-weight: var(--title-font-weight);
}
.build-banner-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
}
.build-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}
.build-feature-icon-box {
    width: 55px;
    height: 55px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}
.build-feature-text {
    font-weight: 600;
    font-size: 1.1rem;
    text-align: left;
}
@media (max-width: 991px) {
    .build-banner-title { font-size: var(--title-font-size-tablet); }
    .build-banner-section { padding: 80px 0; }
}
@media (max-width: 767px) {
    .build-banner-title { font-size: var(--title-font-size-mobile); }
    .build-feature-item { justify-content: flex-start; }
}

/* Products Grid Section */
.products-section {
    background-color: #fff;
}

.product-grid-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-grid-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(17, 87, 157, 0.1) !important;
    border-color: var(--primary-color);
}

.product-grid-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.product-grid-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-grid-card:hover .product-grid-image-wrapper img {
    transform: scale(1.05);
}

.product-grid-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-grid-title {
    font-size: 1.5rem;
    font-weight: var(--title-font-weight);
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-grid-desc {
    font-size: var(--paragraph-font-size);
    color: #64748B;
    line-height: var(--paragraph-line-height);
    margin-bottom: 25px;
}

.product-grid-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.product-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.product-meta-item:last-child {
    margin-bottom: 0;
}

.product-meta-item iconify-icon {
    font-size: 1.2rem;
}

.product-category {
    background-color: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.5rem;
}

.product-date {
    color: #94A3B8;
    font-size: 0.5rem;
    font-weight: 500;
}

.btn-view-project {
    background-color: #D9E6F2;
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
}

.btn-view-project iconify-icon {
    font-size: 1.1rem;
}

.btn-view-project:hover {
    background-color: var(--primary-color);
    color: #fff !important;
    transform: scale(1.05);
}

/* Products Contact Section */
.products-contact-section {
    background-color: var(--primary-color);
    color: #fff;
}

.contact-left-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 50px;
    align-items: flex-start;
}

.contact-left-content .small-tag {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0.9;
    order: 1;
}

.contact-left-content h2 {
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
    line-height: 1.2;
    margin-bottom: 0;
    order: 2;
}

.contact-left-content::after {
    content: '';
    width: var(--underline-width);
    height: var(--underline-height);
    background-color: var(--secondary-color);
    border-radius: 2px;
    margin-top: var(--title-underline-gap);
    margin-bottom: var(--title-underline-gap);
    order: 3;
}

.contact-left-content .cursive-desc {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: #94A3B8;
    margin-bottom: 0;
    line-height: 1.3;
    order: 4;
}

.contact-left-content .excellence-footer {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-top: 30px;
    order: 5;
}

@media (max-width: 991px) {
    .contact-left-content { padding-right: 0; margin-bottom: 60px; text-align: center; align-items: center; }
    .contact-left-content h2 { font-size: var(--title-font-size-tablet); }
    .contact-left-content .cursive-desc { font-size: 1.8rem; }
}

@media (max-width: 767px) {
    .contact-left-content h2 { font-size: var(--title-font-size-mobile); }
    .contact-left-content .cursive-desc { font-size: 1.5rem; }
    .product-grid-title { font-size: 1rem; }
    .product-grid-desc { font-size: 0.9rem; }
}

/* Global Contact Form Styles */
.contact-form-card {
    background: #fff;
    border-radius: 40px;
    padding: 50px;
    color: #333;
}

.contact-form-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.interest-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.interest-pill {
    padding: 8px 20px;
    border: 1px solid #E2E8F0;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748B;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.interest-pill:hover, .interest-pill.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.interest-pill.active {
    background-color: var(--primary-color);
    color: #fff;
}

.contact-form-card .form-control {
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(17, 87, 157, 0.05);
}

.contact-form-card textarea.form-control {
    min-height: 120px;
}

.btn-send-message {
    background-color: var(--primary-color);
    color: #fff !important;
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 10px;
    transition: all 0.3s ease;
    border: none;
}

.btn-send-message:hover {
    background-color: #0d467d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(17, 87, 157, 0.2);
}

.btn-send-message:disabled {
    background-color: #6c757d;
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-send-message.processing {
    background-color: #6c757d !important;
    pointer-events: none;
    display: flex !important;
    visibility: visible !important;
    min-width: 180px;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

@media (max-width: 991px) {
    .contact-form-card { margin-top: 50px; padding: 30px; }
}

@media (max-width: 767px) {
    .contact-form-card { padding: 25px 20px; border-radius: 30px; }
    .interest-pills { justify-content: center; }
    .interest-pill { font-size: 0.8rem; padding: 6px 15px; }
}

/* Contact Page Specific */
.contact-hero-section {
    background-color: #003066;
    color: white;
    padding: 100px 60px;
}

.contact-hero-section h1 {
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
    line-height: 1.2;
}

.contact-info-list { margin-top: 50px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 25px; }
.contact-info-item i { color: var(--secondary-color); font-size: 1.5rem; margin-top: 5px; }
.contact-info-item p { font-size: 1.1rem; margin-bottom: 0; opacity: 0.9; }

.contact-social-links { display: flex; gap: 20px; margin-top: 40px; }
.contact-social-links a { color: white; font-size: 1.8rem; transition: 0.3s; }
.contact-social-links a:hover { color: var(--secondary-color); transform: translateY(-3px); }

.experience-tagline { margin-top: 80px; font-weight: 600; letter-spacing: 1px; opacity: 0.8; }

.faq-section { padding: 100px 0; background-color: #fff; }
.faq-title {
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
    color: #333;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
.faq-subtitle {
 color: #888; font-weight: 600; letter-spacing: 2px; margin-top: 15px; margin-bottom: 40px; font-size: 0.9rem; text-transform: uppercase; display: block; }

.faq-accordion .accordion-item { border: 1px solid #E2E8F0; border-radius: 12px !important; margin-bottom: 20px; overflow: hidden; transition: 0.3s; }
.faq-accordion .accordion-button { font-weight: 600; color: #333; padding: 22px 25px; background-color: transparent; box-shadow: none; font-size: 1.1rem; }
.faq-accordion .accordion-button:not(.collapsed) { color: var(--primary-color); }
.faq-accordion .accordion-body { padding: 0 25px 25px; color: #666; line-height: 1.7; font-size: 1rem; }

@media (max-width: 991px) {
    .contact-hero-section { padding: 60px 0; text-align: center; }
    .contact-hero-section h1 { font-size: var(--title-font-size-tablet); }
    .faq-title { font-size: var(--title-font-size-tablet); }
}

@media (max-width: 767px) {
    .contact-hero-section h1 { font-size: var(--title-font-size-mobile); }
    .faq-title { font-size: var(--title-font-size-mobile); }
    .faq-accordion .accordion-button { padding: 15px 20px; font-size: 0.95rem; }
}

/* Demo Page Styles */
.demo-page-wrapper {
    background-color: var(--primary-color);
    min-height: 100vh;
    color: #fff;
    padding-bottom: 80px;
    padding-left: 60px;
    padding-right: 60px;
}

.demo-header {
    text-align: center;
    padding-top: 60px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.demo-header h1 {
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
    margin-bottom: 0;
    order: 1;
}
.demo-header h1 span { color: #6fbcf0; }

.demo-header::after {
    content: '';
    width: var(--underline-width);
    height: var(--underline-height);
    background-color: var(--secondary-color);
    border-radius: 2px;
    margin-top: var(--title-underline-gap);
    margin-bottom: var(--title-underline-gap);
    order: 2;
}

.demo-stepper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.8;
    order: 3;
}
.step-item { display: flex; align-items: center; gap: 10px; cursor: pointer; transition: 0.3s; }
.step-item.active { color: #fff; opacity: 1; font-weight: 600; }

.step-title { font-size: 2rem; font-weight: 600; margin-bottom: 40px; }

.product-select-card { background: #fff; border-radius: 20px; overflow: hidden; cursor: pointer; transition: 0.3s; height: 100%; border: 4px solid transparent; color: #333; }
.product-select-card.selected { border-color: var(--secondary-color); border-width: 6px; }
.product-select-image { height: 200px; overflow: hidden; }
.product-select-image img { width: 100%; height: 100%; object-fit: cover; }
.product-select-content { padding: 20px; }
.product-select-title { font-size: 1.1rem; font-weight: 600; color: var(--primary-color); margin-bottom: 0; }

.demo-type-card { background: rgba(255,255,255,0.05); border: 2px solid rgba(255,255,255,0.2); border-radius: 20px; padding: 30px; width: 250px; cursor: pointer; transition: 0.3s; display: flex; flex-direction: column; align-items: center; gap: 15px; }
.demo-type-card.active { background: var(--secondary-color); border-color: var(--secondary-color); color: var(--primary-color); }

.calendar-wrapper { background: #0069d9; border-radius: 20px; padding: 20px; color: #fff; }
.time-slot { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 12px; border-radius: 50px; text-align: center; cursor: pointer; transition: 0.3s; font-weight: 600; }
.time-slot.selected { background: var(--secondary-color); color: var(--primary-color); }

.booked-card { background: #fff; border-radius: 20px; padding: 50px; color: #333; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.booked-title { color: var(--primary-color); font-size: 2rem; font-weight: 600; margin-bottom: 30px; }

.btn-next { background-color: var(--secondary-color); color: var(--primary-color) !important; padding: 15px 50px; border-radius: 50px; font-weight: 600; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; border: none; transition: 0.3s; }
.btn-next:hover { transform: scale(1.05); background-color: #ffca2c; }

@media (max-width: 991px) {
    .demo-header h1 { font-size: var(--title-font-size-tablet); }
    .demo-page-wrapper { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 767px) {
    .demo-header h1 { font-size: var(--title-font-size-mobile); }
    .step-title { font-size: 1.5rem; }
    .booked-title { font-size: 1.5rem; }
    .booked-info-row { flex-direction: column; gap: 8px; }
}
