:root {
    --blue-900: #1E3A8A;
    --blue-700: #1d4ed8;
    --blue-600: #2563EB;
    --blue-100: #dbeafe;
    --blue-50: #eff6ff;
    --slate-900: #0F172A;
    --slate-700: #334155;
    --slate-500: #64748b;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --bg: #F8FAFC;
    --white: #ffffff;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow: 0 4px 16px rgba(15, 23, 42, 0.08), 0 1px 4px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.1), 0 4px 16px rgba(15, 23, 42, 0.06);
    --shadow-blue: 0 8px 32px rgba(37, 99, 235, 0.22);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================
       BASE
    ================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--slate-900);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ================================================
       PRELOADER
    ================================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.preloader-logo img {background-color: none;}

.preloader-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.preloader-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue-900);
}

.preloader-name span {
    color: var(--blue-600);
}

.preloader-track {
    width: 180px;
    height: 3px;
    background: var(--slate-100);
    border-radius: 99px;
    overflow: hidden;
}

/* .preloader-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--blue-900), var(--blue-600));
    border-radius: 99px;
    animation: preloaderFill 1.6s ease forwards;
} */

@keyframes preloaderFill {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

/* ================================================
       NAVBAR
    ================================================ */
.navbar-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
    background: #0000001a;
}

.navbar-main.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06), 0 4px 20px rgba(15, 23, 42, 0.06);
    padding: 10px 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.nav-brand-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.nav-brand-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    transition: color var(--transition);
    line-height: 1;
}

.navbar-main.scrolled .nav-brand-text {
    color: var(--blue-900);
}

.nav-brand-text span {
    color: var(--blue-600);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
        font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-transform: uppercase;
}

.navbar-main.scrolled .nav-links a {
    color: var(--slate-700);
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.navbar-main.scrolled .nav-links a:hover {
    color: var(--blue-600);
    background: var(--blue-50);
}

.nav-btn {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white) !important;
    background: #5290af;
    padding: 0.55rem 1.4rem !important;
    border-radius: var(--radius-sm);
    transition: var(--transition) !important;
}

.nav-btn:hover {
    background: var(--blue-700) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-blue);
}

.nav-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.7rem;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.navbar-main.scrolled .nav-toggle {
    background: var(--blue-50);
    border-color: var(--slate-200);
    color: var(--blue-900);
}

/* Mobile menu */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--slate-900);
    text-decoration: none;
    transition: color var(--transition);
}

.mobile-nav a:hover {
    color: var(--blue-600);
}

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--slate-500);
    cursor: pointer;
}

/* ================================================
       SHARED SECTION STYLES
    ================================================ */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blue-50);
    color: var(--blue-600);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 99px;
    border: 1px solid var(--blue-100);
    margin-bottom: 1.2rem;
}

.section-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #0c3b7f;
    line-height: 1.2;
}

.section-title em {
    font-style: italic;
    color: #1d4179;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--slate-500);
    line-height: 1.75;
    font-weight: 400;
}

.section-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #1d4179, #62bbe7);
    border-radius: 99px;
    margin: 1.2rem 0;
}

/* ================================================
       HERO
    ================================================ */
#hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
}

.swiper-hero {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100vh;
    min-height: 680px;
    background-size: cover;
    background-position: center;
}

/* Using Unsplash source images */
.slide-1 {
    background-image: url('../images/slider-1.jpg');
}

.slide-2 {
    background-image: url('../images/slider-2.jpg');
}

/* .slide-3 {
    background-image: url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?w=1920&q=85&auto=format&fit=crop');
} */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgb(15 23 66 / 0%) 0%, rgb(30 58 138 / 9%) 40%, rgb(37 99 235 / 0%) 100%);
}

/* Subtle noise texture for depth */
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(15, 23, 42, 0.4) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 8% 80px;
    max-width: 900px;
    top: 39%;
    /* bottom: 30%; */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 99px;
    margin-bottom: 1.5rem;
    animation: heroUp 0.8s ease 0.2s both;
}

.hero-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 1.5rem;
    animation: heroUp 0.8s ease 0.4s both;
}

.hero-title em {
    font-style: italic;
    color: #93c5fd;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2.5rem;
    animation: heroUp 0.8s ease 0.6s both;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: heroUp 0.8s ease 0.8s both;
    margin-bottom: 14%;
}

.btn-primary-main {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blue-600);
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.btn-primary-main:hover {
    background: var(--blue-700);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.5);
}

.btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: var(--transition);
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.22);
    color: white;
    transform: translateY(-2px);
}

/* Hero bottom stats bar */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding: 1.5rem 8%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-stat-icon {
    width: 44px;
    height: 44px;
    background: var(--blue-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-600);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-900);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--slate-500);
    font-weight: 500;
}

.hero-stat-sep {
    width: 1px;
    height: 36px;
    background: var(--slate-200);
}

/* Swiper controls */
.swiper-hero .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: var(--transition);
}

.swiper-hero .swiper-pagination-bullet-active {
    background: white;
    width: 28px;
    border-radius: 4px;
}

.swiper-hero .swiper-pagination {
    bottom: 110px;
}

.swiper-hero .swiper-button-next,
.swiper-hero .swiper-button-prev {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.swiper-hero .swiper-button-next::after,
.swiper-hero .swiper-button-prev::after {
    font-size: 0.85rem;
    font-weight: 900;
}

.swiper-hero .swiper-button-next:hover,
.swiper-hero .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.25);
}

@keyframes heroUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ================================================
       ABOUT
    ================================================ */
#about {
    background: var(--white);
    padding: 60px 0;
}

.about-img-wrap {
    position: relative;
    margin-top: 95px;
}


.about-img-main {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
}

/* Floating accent card */
.about-float-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.4rem 1.6rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
    border: 1px solid var(--slate-100);
}

.about-float-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-float-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--blue-900);
    line-height: 1;
}

.about-float-label {
    font-size: 0.75rem;
    color: var(--slate-500);
    font-weight: 500;
}

/* Blue line accent on left of image */
.about-img-wrap::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 10px;
    bottom: 10px;
    width: 6px;
    background: linear-gradient(180deg, #1d4179, #6ec0ea);
    border-radius: 99px;
}

/* .about-content {
    padding-left: 2.5rem;
} */

.about-body {
    font-size: 1rem;
    color: var(--slate-500);
    line-height: 1.85;
    /* margin-bottom: 2rem; */
}

.about-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--slate-700);
    font-weight: 500;
}

.about-check-list li i {
    width: 22px;
    height: 22px;
    background: var(--blue-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-600);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* About counters */
.about-counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    overflow: hidden;
}

.counter-cell {
    padding: 1.5rem 1.2rem;
    text-align: center;
    border-right: 1px solid var(--slate-200);
    background: #1c4077;
}

.counter-cell:last-child {
    border-right: none;
}

.counter-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    display: block;
}

.counter-label {
    font-size: 0.75rem;
    color: #ffffff;
    font-weight: 500;
    margin-top: 0.3rem;
    display: block;
}

/* ================================================
       SERVICES
    ================================================ */
#services {
    background: #e2e4e6;
    padding: 60px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.service-card {
    background: #1d4179;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.5rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-900), var(--blue-600));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-100);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrap {
    width: 40px;
    height: 40px;
    background: #607699;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    background: var(--blue-600);
    color: white;
    transform: scale(1.08);
}

.service-card-num {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--slate-100);
    line-height: 1;
    transition: color var(--transition);
}

.service-card:hover .service-card-num {
    color: var(--blue-50);
}

.service-title {
    font-family: "Montserrat", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.service-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--blue-600);
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    padding: 0.2rem 0.65rem;
    border-radius: 99px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue-600);
    text-decoration: none;
    margin-top: 1.2rem;
    transition: gap var(--transition);
}

.service-link:hover {
    gap: 0.7rem;
    color: var(--blue-700);
}

/* ================================================
       GLOBAL PRESENCE
    ================================================ */
#global-presence {
    background: var(--white);
    padding: 80px 0;
    overflow: hidden;
}

.presence-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.world-map-visual {
    position: relative;
}

.world-map-img {
    width: 100%;
    height: 525px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

/* Map overlay with blue tint */
.world-map-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
    box-shadow: var(--shadow-lg);
}

.world-map-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(30, 58, 138, 0.15) 0%, rgba(37, 99, 235, 0.08) 100%); */
    border-radius: var(--radius-lg);
}
.world-map-line {
    position: relative;
}

.world-map-line {
    position: relative;
}

.world-map-line::before {
    content: '';
    position: absolute;

    left: -16px;
    top: 15px;
    bottom: 15px;

    width: 6px;

    background: linear-gradient(
        180deg,
        #1d4179,
        #6ec0ea
    );

    border-radius: 99px;

    z-index: 10;
}

/* Animated map markers */
.map-pin {
    position: absolute;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.map-pin-dot {
    width: 10px;
    height: 10px;
    background: var(--blue-600);
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
    position: relative;
    z-index: 1;
}

.map-pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    border: 2px solid var(--blue-600);
    border-radius: 50%;
    animation: mapPulse 2s ease infinite;
    opacity: 0.5;
}

.map-pin-pulse2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border: 1px solid var(--blue-600);
    border-radius: 50%;
    animation: mapPulse 2s ease 0.5s infinite;
    opacity: 0.25;
}

@keyframes mapPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.map-label {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue-900);
    color: white;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    white-space: nowrap;
}

.presence-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
}

.presence-stat-card {
    background: var(--bg);
    border: 1px solid #c8c8c8;
    border-radius: var(--radius);
    padding: 1.4rem;
}

.presence-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue-900);
    line-height: 1;
    display: block;
}

.presence-stat-label {
    font-size: 0.8rem;
    color: var(--slate-500);
    font-weight: 500;
    margin-top: 0.3rem;
}

.presence-stat-icon {
    font-size: 1.2rem;
    color: var(--blue-600);
    margin-bottom: 0.6rem;
}

/* ================================================
       WHY CHOOSE US
    ================================================ */
#why-us {
    background: linear-gradient(160deg, var(--blue-900) 0%, #1e40af 50%, var(--blue-900) 100%);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

/* Background pattern */
#why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
}

.why-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-header .section-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.why-header .section-title {
    color: var(--white);
}

.why-header .section-sub {
    color: rgba(255, 255, 255, 0.65);
}

.why-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.8rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-6px);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #93c5fd;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.why-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.why-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
}

/* ================================================
       PARALLAX SECTION
   ================================================ */
#parallax-section {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-bg {
    position: absolute;
    inset: -15%;
    background-image: url('../images/mission-bg.avif');
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(30, 58, 138, 0.82) 0%,
            rgba(37, 99, 235, 0.6) 60%,
            rgba(30, 58, 138, 0.75) 100%);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
}

.parallax-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.parallax-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.parallax-title em {
    font-style: italic;
    color: #bfdbfe;
}

.parallax-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* ================================================
       TESTIMONIALS
    ================================================ */
#testimonials {
    background: var(--bg);
    padding: 110px 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.swiper-testimonials {
    padding-bottom: 3rem !important;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    position: relative;
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--slate-700);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--slate-100);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--slate-900);
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--slate-500);
}

.testimonial-company-badge {
    margin-left: auto;
    background: var(--blue-50);
    color: var(--blue-600);
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.25rem 0.7rem;
    border-radius: 99px;
    border: 1px solid var(--blue-100);
}

.swiper-testimonials .swiper-pagination-bullet {
    background: var(--slate-300);
    opacity: 1;
}

.swiper-testimonials .swiper-pagination-bullet-active {
    background: var(--blue-600);
    width: 20px;
    border-radius: 99px;
}

/* ================================================
       CONTACT
    ================================================ */
#contact {
    background: var(--white);
    padding: 80px 0;
}

.contact-header {
    margin-bottom: 3rem;
}

/* Floating label form */
.form-group-float {
    position: relative;
    margin-bottom: 1.25rem;
}

.form-group-float label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.88rem;
    color: var(--slate-500);
    pointer-events: none;
    transition: var(--transition);
    background: white;
    padding: 0 0.25rem;
}

.form-group-float input,
.form-group-float textarea,
.form-group-float select {
    width: 100%;
    background: var(--white);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    color: var(--slate-900);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 1rem 1rem 0.5rem;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
}

.form-group-float textarea {
    min-height: 120px;
    resize: none;
    padding-top: 1.2rem;
}

.form-group-float input:focus,
.form-group-float textarea:focus,
.form-group-float select:focus {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group-float input:focus+label,
.form-group-float input:not(:placeholder-shown)+label,
.form-group-float textarea:focus+label,
.form-group-float textarea:not(:placeholder-shown)+label {
    top: -0.5rem;
    font-size: 0.72rem;
    color: var(--blue-600);
    font-weight: 600;
}

.form-group-float input::placeholder,
.form-group-float textarea::placeholder {
    color: transparent;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
    color: white;
    border: none;
    padding: 1.05rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

/* Contact info */
.contact-info-panel {
    background: var(--blue-900);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.contact-info-panel::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.contact-panel-title {
    font-family: "Montserrat", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.contact-panel-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 1;
}

.contact-detail-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-detail-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.2rem;
}

.contact-detail-val {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
   
}
.contact-detail-val a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.contact-social {
    display: flex;
    gap: 0.7rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.contact-soc-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.contact-soc-icon:hover {
    background: var(--blue-600);
    border-color: var(--blue-600);
    color: white;
    transform: translateY(-2px);
}

/* Map container */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--slate-200);
    margin-top: 2rem;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 240px;
    border: none;
    display: block;
}

/* Form card */
.contact-form-card {
    background: var(--bg);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.contact-form-title {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1d4179;
    margin-bottom: 0;
}

.contact-form-sub {
    font-size: 0.88rem;
    color: var(--slate-500);
    margin-bottom: 2rem;
}
.contact-social-wrapper {
    margin-top: 18px;
    padding-left: 0px;
}

.contact-social {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}

.contact-soc-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: centre;
    justify-content: centre;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: .25s;
}

.contact-soc-icon:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,.08);
    color: #fff;
}

/* ================================================
       FOOTER
    ================================================ */
footer {
    background: #dbdbdb;
    border-top: 1px solid var(--slate-200);
    padding: 62px 0 0;
}

.footer-brand-wrap {
    margin-bottom: 1.5rem;
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-brand-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--blue-900);
}

.footer-brand-name span {
    color: var(--blue-600);
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--slate-500);
    line-height: 1.75;
    /* max-width: 260px; */
    margin-bottom: 1.5rem;
}

.footer-social-row {
    display: flex;
    gap: 16px;
}

.footer-soc {
    width: 36px;
    height: 36px;
    background: #1d4179;
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-soc:hover {
    background: #3890bd;
    border-color: #3890bd;
    color: white;
}

.footer-col-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate-900);
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--slate-500);
    text-decoration: none;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a:hover {
    color: #1d4179;
}

.footer-links a i {
    font-size: 0.65rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.footer-links a:hover i {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid var(--slate-200);
    padding: 0.9rem 0;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    background: #1d4179;
    color: #fff;
}

.footer-copy {
    font-size: 0.82rem;
    color: var(--slate-400);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.82rem;
    color: var(--slate-400);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--blue-600);
}

/* ================================================
       BACK TO TOP
    ================================================ */
#back-to-top {
    position: fixed;
    bottom: 3.5rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    background: var(--blue-600);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: var(--shadow-blue);
    opacity: 0;
    transform: translateY(16px);
    transition: var(--transition);
}

#back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

#back-to-top:hover {
    background: var(--blue-700);
    transform: translateY(-2px);
}

/* ================================================
       TRUSTED LOGOS STRIP
    ================================================ */
.logos-strip {
    background: var(--bg);
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
    padding: 2rem 0;
}

.logos-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.logo-item {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--slate-300);
    letter-spacing: 0.05em;
    transition: color var(--transition);
    cursor: default;
}

.logo-item:hover {
    color: var(--blue-600);
}

.logos-strip-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-400);
    margin-right: 1rem;
    white-space: nowrap;
}

/* ================================================
       RESPONSIVE
    ================================================ */
@media (max-width: 991px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .presence-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content {
        padding-left: 0;
        margin-top: 4rem;
    }

    .about-float-card {
        right: 0;
        bottom: -20px;
    }
}

@media (max-width: 767px) {
    .hero-stats-bar {
        padding: 1rem 5%;
        gap: 1rem;
    }

    .hero-stat-sep {
        display: none;
    }

    .hero-stat {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.4rem;
    }

    .about-counters {
        grid-template-columns: 1fr;
    }

    .counter-cell {
        border-right: none;
        border-bottom: 1px solid var(--slate-200);
    }

    .counter-cell:last-child {
        border-bottom: none;
    }

    .footer-bottom {
        justify-content: center;
    }

    .about-img-main {
        height: 340px;
    }
}

@media (max-width: 575px) {
    .presence-stats {
        grid-template-columns: 1fr;
    }
}

/* Utility */
.max-w-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-blue {
    color: var(--blue-600);
}

.text-blue-900 {
    color: var(--blue-900);
}

.navbar-main img {
    width: 157px;
    /* background: #fff; */
    padding: 10px;
    border-radius: 8px;
}
.navbar-main .nav-brand{
    width: 157px;
    height: 61px;
    display: block;
    background-image: url(../images/logo-w.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.navbar-main.scrolled .nav-brand {
    background-image: url(../images/logo.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* product-section-styles */
.products-section {
    padding: 60px 0;
    background: #e2e4e6;
}

/* .section-title {
      font-size: 44px;
      font-weight: 700;
      color: #0f172a;
    } */

/* .section-sub {
    color: #2563eb;
    font-weight: 600;
    letter-spacing: 1px;
} */

.section-desc {
    max-width: 600px;
    margin: 10px auto 0;
    color: #64748b;
}

.product-card {
    position: relative;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.product-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.85), transparent);
    color: #fff;
    transition: 0.4s;
}

.product-overlay h4 {
    font-size: 22px;
    font-weight: 600;
}

.product-overlay p {
    font-size: 14px;
    opacity: 0;
    margin-top: 10px;
    transition: 0.4s;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-card:hover .product-overlay p {
    opacity: 1;
}


.large-card {
    height: 100%;
}


@media(max-width:768px) {
    .section-title {
        font-size: 30px;
    }
}

/* end-product-section-styles */

/* career-section-styles */
/* SECTION */
.careers-section {
    padding: 80px 0;
    background: #eee;
}

/* TEXT */
.career-sub {
    color: #1d4179;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.career-title {
    font-size: 48px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 10px;
}

.career-text {
    color: #475569;
    margin-top: 20px;
    line-height: 1.7;
}

/* IMAGE WRAPPER */
.image-stack {
    position: relative;
    height: 450px;
}

/* MAIN IMAGE */
.img-main {
    width: 75%;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

/* SECOND IMAGE */
.img-second {
    width: 55%;
    border-radius: 18px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    transform: rotate(-6deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* BLOB SHAPE */
.image-stack::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.25), transparent);
    top: -50px;
    left: -50px;
    border-radius: 50%;
    z-index: 0;
}

/* SOFT BACKGROUND CARD */
.image-stack::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    background: #f1f5f9;
    bottom: 10px;
    left: 40px;
    border-radius: 25px;
    z-index: 1;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .career-title {
        font-size: 32px;
    }

    .image-stack {
        height: 350px;
        margin-top: 40px;
    }
}

#about,
#products,
#global-presence,
#careers,
#contact {
    scroll-margin-top: 80px;
}

/* end-career-section-styles */