/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    /* Premium Blue Palette */
    --primary-blue: #1a56db;
    --primary-blue-light: #3b82f6;
    --primary-blue-dark: #1e40af;
    --secondary-blue: #2563eb;
    --accent-blue: #3b82f6;
    --light-blue: #eff6ff;
    --ultra-light-blue: #f5f9ff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1a56db 0%, #2563eb 50%, #3b82f6 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 64, 175, 0.75) 100%);

    /* Gold Accent */
    --gold: #f59e0b;
    --gold-light: #fbbf24;

    /* Neutral Colors - Slate palette */
    --white: #ffffff;
    --black: #0f172a;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', sans-serif;

    /* Shadows - Blue-tinted for depth */
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.1), 0 4px 8px rgba(15, 23, 42, 0.05);
    --shadow-xl: 0 20px 50px rgba(15, 23, 42, 0.12), 0 8px 16px rgba(15, 23, 42, 0.06);

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 110px;
    /* Space for fixed headers */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   Typography
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

h2 {
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    margin-bottom: 1.25rem;
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
    font-size: 1.0625rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

/* ===================================
   Utilities
   =================================== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--primary-blue);
    margin: 1.5rem auto;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 102, 204, 0.25);
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.35);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-expand {
    background: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--gray-300);
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    margin-top: 1rem;
    cursor: pointer;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
}

.btn-expand:hover {
    background: var(--gray-50);
    border-color: var(--primary-blue);
}

.btn-expand.active i {
    transform: rotate(180deg);
}

/* ===================================
   Top Contact Bar
   =================================== */
.top-bar {
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
    padding: 0.4rem 0;
    font-size: 0.8125rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.top-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 400;
    font-size: 0.8125rem;
}

.top-contact-item:hover {
    color: var(--gold-light);
}

.top-contact-item i {
    font-size: 0.75rem;
    color: var(--gold);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.top-text {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    margin-right: 0.5rem;
    font-size: 0.8125rem;
}

.social-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
    transform: translateY(-1px);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1100;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    border-bottom: none;
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
}

.logo img {
    height: 42px;
    width: auto;
    border-radius: 8px;
}

.logo-text {
    font-weight: 700;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.125rem;
    align-items: center;
}

.nav-link {
    display: inline-block;
    padding: 0.5rem 0.875rem;
    color: var(--gray-600);
    font-weight: 400;
    font-size: 0.8125rem;
    text-decoration: none;
    transition: var(--transition-base);
    border-radius: var(--radius-sm);
    position: relative;
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.cta-link {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    margin-left: 0.5rem;
    box-shadow: 0 2px 8px rgba(26, 86, 219, 0.3);
    border-radius: 50px !important;
    font-size: 0.8125rem;
}

.cta-link::after {
    display: none;
}

.cta-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(26, 86, 219, 0.4);
}

.login-link {
    color: var(--primary-blue) !important;
    border: 1.5px solid var(--primary-blue);
    font-weight: 600;
    border-radius: 50px !important;
}

.login-link::after {
    display: none;
}

.login-link:hover {
    background: var(--primary-blue);
    color: var(--white) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition-base);
    border-radius: 2px;
}

/* ===================================
   Contact Modal
   =================================== */

/* Anniversary Banner */
.anniversary-banner {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    padding: 0.625rem 0;
    margin-top: 0;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.15);
    position: relative;
    z-index: 100;
    border-top: none;
}

.anniversary-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.anniversary-content i {
    color: #ffffff;
    font-size: 1.125rem;
    animation: pulse 2s ease-in-out infinite;
}

.anniversary-content p {
    text-align: center;
    margin: 0;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.anniversary-content strong {
    font-weight: 700;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

/* ===================================
   Anniversary Celebration Slide
   =================================== */
.carousel-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.anniversary-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.80) 0%, rgba(30, 58, 138, 0.65) 50%, rgba(15, 23, 42, 0.75) 100%) !important;
}

.anniversary-content-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.anniversary-container {
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.anniversary-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.4), 0 0 60px rgba(245, 158, 11, 0.15);
    animation: anniversary-pulse 2s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.25);
}

.anniversary-icon-wrapper i {
    font-size: 1.75rem;
    color: #fff;
}

@keyframes anniversary-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(245, 158, 11, 0.4), 0 0 60px rgba(245, 158, 11, 0.15);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 12px 40px rgba(245, 158, 11, 0.55), 0 0 80px rgba(245, 158, 11, 0.25);
    }
}

.anniversary-subtitle {
    justify-content: center !important;
    font-size: 0.8125rem !important;
    letter-spacing: 0.15em !important;
    color: #fbbf24 !important;
    margin-bottom: 0.5rem !important;
}

.anniversary-subtitle::before {
    display: none !important;
}

.anniversary-heading {
    text-align: center;
    font-size: clamp(3.5rem, 7vw, 5rem) !important;
    /* Increased size since cursive is smaller */
    margin-bottom: 0.75rem !important;
    animation: shimmer 3s ease-in-out infinite;
    font-family: 'Great Vibes', cursive !important;
    font-weight: 400 !important;
    letter-spacing: 0.02em;
}

.text-gold {
    color: #fbbf24;
    font-weight: inherit;
    /* inherit from Great Vibes (400) or bold if not cursive */
    text-shadow: 0 2px 20px rgba(251, 191, 36, 0.4);
}

@keyframes shimmer {

    0%,
    100% {
        text-shadow: 0 2px 30px rgba(255, 255, 255, 0.2);
    }

    50% {
        text-shadow: 0 2px 40px rgba(251, 191, 36, 0.35), 0 0 80px rgba(251, 191, 36, 0.15);
    }
}

.anniversary-desc {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 0;
}

.anniversary-badges {
    display: flex;
    gap: 1.25rem;
    margin: 1.25rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.anniversary-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.5rem;
    min-width: 120px;
    transition: var(--transition-base);
}

.anniversary-badge-item:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
    border-color: rgba(251, 191, 36, 0.4);
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fbbf24;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.125rem;
}

.badge-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-anniversary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    padding: 0.75rem 2rem;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    transition: var(--transition-base);
    text-decoration: none;
}

.btn-anniversary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

/* ===================================
   Carousel Banner
   =================================== */
.carousel-banner {
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: max(75vh, 600px);
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 64, 175, 0.6) 50%, rgba(15, 23, 42, 0.3) 100%);
    z-index: 1;
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    color: var(--white);
    padding: var(--spacing-md);
}

.carousel-content .container {
    max-width: 900px;
    margin: 0;
    padding-left: 5rem;
}

.carousel-subtitle {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.25em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.carousel-subtitle::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.carousel-heading {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.text-blue {
    color: #93c5fd;
    font-weight: 800;
}

/* Carousel Buttons */
.carousel-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 800px;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

.btn-blue {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(26, 86, 219, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    display: inline-block;
    text-decoration: none;
    transition: var(--transition-base);
}

.btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26, 86, 219, 0.5);
}

/* White Button */
.btn-white {
    background: var(--white);
    color: var(--primary-blue-dark);
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition-base);
}

.btn-white:hover {
    background: var(--gold-light);
    color: var(--gray-900);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

/* Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    font-size: 1rem;
    box-shadow: none;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.carousel-prev {
    left: 2rem;
}

.carousel-next {
    right: 2rem;
}

/* Dot Indicators */
.carousel-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.carousel-dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 4px;
}

/* Blue CTA Banner */
.cta-blue-banner {
    background: var(--gradient-primary);
    padding: 1.25rem 0;
    box-shadow: none;
    border-top: none;
    position: relative;
    z-index: 2;
}

/* Banner Login Button */
.banner-login-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 20;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.banner-login-btn:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.banner-login-btn i {
    font-size: 1.1rem;
}

.cta-blue-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.cta-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-banner-content p {
    text-align: left;
    margin: 0;
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.4;
}

.cta-banner-content strong {
    font-weight: 700;
}

.cta-banner-content .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

/* ===================================
   Stats Showcase Section
   =================================== */
.stats-showcase {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    border-bottom: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--primary-blue);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, rgba(26, 86, 219, 0.03) 0%, transparent 100%);
    transition: height 0.4s ease;
}

.stat-item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.stat-item:hover::before {
    height: 100%;
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(26, 86, 219, 0.25);
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-item p {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: 0;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.8125rem;
}

/* ===================================
   About Section V2
   =================================== */
.about-v2 {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.about-v2::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(26, 86, 219, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.about-v2-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

/* Left Column */
.about-v2-left {
    position: relative;
}

.about-v2-image-block {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12), 0 4px 16px rgba(15, 23, 42, 0.06);
}

.about-v2-image-block img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.about-v2-accent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue), #f59e0b);
}

.about-v2-exp-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.exp-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.125rem;
    font-family: var(--font-heading);
}

.exp-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.3;
}

.about-v2-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.highlight-item:hover {
    border-color: var(--primary-blue-light);
    box-shadow: 0 4px 16px rgba(26, 86, 219, 0.08);
    transform: translateX(4px);
}

.highlight-item i {
    color: var(--primary-blue);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.highlight-item span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* Right Column */
.about-v2-right {
    position: relative;
}

.about-v2-tag {
    display: inline-block;
    padding: 0.4375rem 1rem;
    background: var(--light-blue);
    color: var(--primary-blue);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(26, 86, 219, 0.1);
}

.about-v2-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.about-v2-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-v2-divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.about-v2-lead {
    font-size: 1.0625rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.about-v2-text {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-v2-cta {
    margin-top: 1.5rem;
}

/* Mission & Vision V2 */
.mv-v2-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.mv-v2-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(59, 130, 246, 0.15);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.mv-v2-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mv-v2-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.25);
    border-color: rgba(59, 130, 246, 0.3);
}

.mv-v2-card:hover::before {
    opacity: 1;
}

.mv-v2-icon-wrap {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: var(--radius-md);
    color: #60a5fa;
    font-size: 1.25rem;
    transition: var(--transition-base);
}

.vision-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
    border-color: rgba(245, 158, 11, 0.25);
    color: #fbbf24;
}

.mv-v2-card:hover .mv-v2-icon-wrap {
    transform: scale(1.1);
}

.mv-v2-body h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.mv-v2-body p {
    text-align: left;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===================================
   TYNOD Advantage Carousel
   =================================== */
.advantage-section {
    padding: 5rem 0 4rem;
    background: linear-gradient(180deg, #f8fafc 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.advantage-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.advantage-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-top: 0.5rem;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantage-nav-arrows {
    display: flex;
    gap: 0.625rem;
}

.adv-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    font-size: 0.875rem;
}

.adv-arrow:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    transform: scale(1.05);
}

/* Carousel Track */
.advantage-carousel-wrapper {
    overflow: hidden;
    padding: 0 max(2rem, calc((100vw - 1200px) / 2));
}

.advantage-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
}

.advantage-track:active {
    cursor: grabbing;
}

/* Cards - Premium Stacked Layout */
.adv-card {
    min-width: 380px;
    max-width: 380px;
    border-radius: 1.25rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.adv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.adv-card-text {
    flex: 1;
    padding: 1rem 1.5rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 2;
    min-width: 0;
}

.adv-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.adv-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.adv-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.adv-card:hover .adv-card-img img {
    transform: scale(1.08);
}

/* Floating Number Watermark */
.adv-card-num {
    position: absolute;
    bottom: 0.5rem;
    right: 0.75rem;
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.06;
    line-height: 1;
    font-family: var(--font-heading);
    pointer-events: none;
    z-index: 1;
}

/* Icon Badge - overlaps image */
.adv-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    margin-top: -20px;
    margin-bottom: 0.75rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 3;
}

.adv-card h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.adv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.adv-list li {
    position: relative;
    padding: 0.2rem 0 0.2rem 1rem;
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 400;
}

.adv-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

/* Card Color Variants */

/* -- Blue Variant -- */
.adv-card-blue {
    background: linear-gradient(160deg, #0f2557 0%, #1a3a8f 60%, #2557c9 100%);
    color: var(--white);
}

.adv-card-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 50%, #818cf8 100%);
    z-index: 3;
}

.adv-card-blue .adv-card-num {
    color: #fff;
}

.adv-card-blue .adv-card-icon {
    background: rgba(255, 255, 255, 0.12);
    color: #93c5fd;
}

.adv-card-blue h4 {
    color: #fff;
}

.adv-card-blue .adv-list li {
    color: rgba(255, 255, 255, 0.8);
}

.adv-card-blue .adv-list li::before {
    background: #60a5fa;
}

/* -- Gold Variant -- */
.adv-card-gold {
    background: linear-gradient(160deg, #78350f 0%, #b45309 60%, #d97706 100%);
    color: var(--white);
}

.adv-card-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 50%, #fcd34d 100%);
    z-index: 3;
}

.adv-card-gold .adv-card-num {
    color: #fff;
}

.adv-card-gold .adv-card-icon {
    background: rgba(255, 255, 255, 0.15);
    color: #fcd34d;
}

.adv-card-gold h4 {
    color: #fff;
}

.adv-card-gold .adv-list li {
    color: rgba(255, 255, 255, 0.85);
}

.adv-card-gold .adv-list li::before {
    background: #fbbf24;
}

/* -- Dark Variant -- */
.adv-card-dark {
    background: linear-gradient(160deg, #020617 0%, #0f172a 60%, #1e293b 100%);
    color: var(--white);
}

.adv-card-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #38bdf8 0%, #818cf8 50%, #a78bfa 100%);
    z-index: 3;
}

.adv-card-dark .adv-card-num {
    color: #fff;
}

.adv-card-dark .adv-card-icon {
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
}

.adv-card-dark h4 {
    color: #fff;
}

.adv-card-dark .adv-list li {
    color: rgba(255, 255, 255, 0.7);
}

.adv-card-dark .adv-list li::before {
    background: #818cf8;
}

/* Dot Indicators */
.advantage-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.advantage-dots .adv-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    padding: 0;
}

.advantage-dots .adv-dot:hover {
    background: var(--gray-400);
}

.advantage-dots .adv-dot.active {
    background: var(--primary-blue);
    width: 28px;
    border-radius: 5px;
}

/* ===================================
   Core Values & Code of Conduct
   =================================== */
.values-conduct-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, #f8fafc 100%);
}

.coc-header {
    margin-top: 4rem;
}

/* Core Values Grid */
.core-values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.cv-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cv-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.cv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.cv-card:hover::after {
    transform: scaleX(1);
}

.cv-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: var(--radius-md);
    font-size: 1.375rem;
    transition: var(--transition-base);
}

.cv-card:hover .cv-icon {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.25);
    transform: scale(1.08);
}

.cv-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.cv-card p {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin: 0;
}

/* Code of Conduct Grid */
.coc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.coc-card {
    background: var(--white);
    padding: 1.5rem 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--primary-blue);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
}

.coc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    border-left-color: var(--primary-gold);
}

.coc-num {
    min-width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--light-blue);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    font-family: var(--font-heading);
    flex-shrink: 0;
    transition: var(--transition-base);
}

.coc-card:hover .coc-num {
    background: var(--primary-blue);
    color: var(--white);
}

.coc-card h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.coc-card p {
    text-align: left;
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: var(--spacing-xl) 0;
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue-light);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 1.375rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(26, 86, 219, 0.2);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.service-card>p {
    color: var(--gray-500);
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    flex-grow: 1;
}

.btn-text-link {
    background: transparent;
    color: var(--primary-blue);
    border: none;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding: 0;
    transition: var(--transition-base);
}

.btn-text-link:hover {
    gap: 0.75rem;
    color: var(--primary-blue-dark);
}

.service-list {
    list-style: none;
    margin-bottom: 1rem;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.4rem 0;
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.service-list i {
    color: #10b981;
    margin-top: 0.25rem;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.service-details.active {
    max-height: 1800px;
}

/* Featured Service Card */
.featured-service {
    border-color: var(--gold);
    background: linear-gradient(135deg, #fffbeb 0%, var(--white) 100%);
    border-width: 2px;
}

.featured-service:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.15), var(--shadow-xl);
}

.featured-service .service-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.service-badge-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.875rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* ===================================
   Core Values / TYNOD Advantage Section
   =================================== */
.core-values {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--ultra-light-blue) 50%, var(--white) 100%);
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue-light);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: var(--radius-lg);
    font-size: 1.75rem;
    transition: var(--transition-base);
}

.value-card:hover .value-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 16px rgba(26, 86, 219, 0.25);
}

.value-card h4 {
    font-size: 1.125rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.value-card p {
    text-align: left;
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===================================
   CEO Message Section
   =================================== */
.ceo-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.ceo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.ceo-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.ceo-content {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ceo-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.ceo-image-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.ceo-overlay-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.95) 0%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
}

.ceo-overlay-badge span {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-light);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.ceo-overlay-badge small {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.ceo-text-col .section-tag {
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ceo-text-col h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
}

.ceo-quote {
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--gold);
}

.ceo-quote-icon {
    position: absolute;
    top: -0.5rem;
    left: -2rem;
    font-size: 2rem;
    color: rgba(245, 158, 11, 0.3);
}

.ceo-quote p {
    text-align: left;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.ceo-signature {
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.signature-line {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1rem;
}

.ceo-name {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 0.25rem;
}

.ceo-role {
    font-size: 0.875rem;
    color: var(--gold-light);
    margin-bottom: 0;
    font-weight: 500;
}

/* ===================================
   Clients Section
   =================================== */
.clients {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.industry-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.industry-card:hover i {
    transform: scale(1.1);
}

.industry-card h4 {
    font-size: 0.9375rem;
    color: var(--gray-800);
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1.4;
}

/* ===================================
   Testimonials Carousel Section
   =================================== */
.testimonials {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    position: relative;
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 4rem;
}

.testimonials-track {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.08);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.5s ease;
    z-index: 0;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.stars {
    display: flex;
    gap: 0.375rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.stars i {
    color: #fbbf24;
    font-size: 1.125rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--gray-700);
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: -1.5rem;
    top: -0.5rem;
    font-size: 4rem;
    color: rgba(0, 102, 204, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    justify-content: center;
}

.author-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--light-blue);
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.125rem;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.author-info p {
    text-align: left;
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Testimonial Navigation */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--primary-blue);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.testimonial-nav:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    gap: 0.625rem;
    justify-content: center;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
}

.testimonial-dot:hover {
    background: var(--primary-blue-light);
    transform: scale(1.2);
}

.testimonial-dot.active {
    background: var(--primary-blue);
    width: 28px;
    border-radius: 5px;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: var(--spacing-xl) 0;
    background: var(--gray-50);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.875rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.contact-info>p {
    color: var(--gray-600);
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.info-item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.0625rem;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
    font-weight: 600;
}

.info-item p,
.info-item a {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.info-item a:hover {
    color: var(--primary-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary-blue);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

/* ===================================
   Form Styles
   =================================== */
.inquiry-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.inquiry-form h3 {
    font-size: 1.625rem;
    color: var(--gray-900);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-primary);
    background: var(--white);
    transition: var(--transition-base);
    color: var(--gray-800);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 0.875rem;
    color: var(--gray-500);
    pointer-events: none;
    transition: var(--transition-base);
    background: var(--white);
    padding: 0 0.375rem;
    font-size: 1rem;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label,
.form-group select:focus+label,
.form-group select:not([value=""])+label {
    top: -0.625rem;
    font-size: 0.8125rem;
    color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

/* Form Status Messages */
.form-status {
    margin-top: 1rem;
    padding: 0;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
}

.form-status-success,
.form-status-error {
    opacity: 1;
    max-height: 80px;
    padding: 1rem 1.25rem;
}

.form-status-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-status-success i {
    color: #10b981;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.form-status-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.form-status-error i {
    color: #ef4444;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.form-status-fade {
    opacity: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ===================================
   Modal
   =================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-md);
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.close-modal {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 1.75rem;
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition-base);
    line-height: 1;
}

.close-modal:hover {
    color: var(--gray-900);
}

/* Modal Extensions */
.modal-lg {
    max-width: 800px;
    width: 90%;
    padding: 2.5rem;
    max-height: 90vh;
    /* Limit height */
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-right: 2rem;
}

.service-icon-sm {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.modal-intro {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.modal-body-scroll {
    overflow-y: auto;
    padding-right: 1rem;
    margin-right: -1rem;
    /* Offset padding */
    flex-grow: 1;
}

/* Scrollbar for modal */
.modal-body-scroll::-webkit-scrollbar {
    width: 6px;
}

.modal-body-scroll::-webkit-scrollbar-track {
    background: var(--gray-100);
}

.modal-body-scroll::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 3px;
}

.service-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
    list-style: none;
}

.service-list-grid li {
    font-size: 0.9375rem;
    color: var(--gray-700);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.service-list-grid i {
    color: #10b981;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .service-list-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-logo img {
    height: 45px;
    width: auto;
    border-radius: var(--radius-sm);
}

.footer-tagline {
    color: var(--primary-blue-light);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.footer-col p {
    text-align: left;
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--gray-400);
    transition: var(--transition-fast);
    font-size: 0.9375rem;
    position: relative;
    padding-left: 0;
}

.footer-col ul li a:hover {
    color: var(--primary-blue-light);
    padding-left: 6px;
}

.contact-list li {
    display: flex;
    gap: 0.75rem;
    color: var(--gray-400);
    font-size: 0.9375rem;
}

.contact-list i {
    color: var(--primary-blue-light);
    margin-top: 0.25rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    text-align: left;
    color: var(--gray-500);
    margin-bottom: 0;
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray-400);
    border-radius: 50%;
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    z-index: 999;
}

.scroll-top.active {
    display: flex;
}

.scroll-top:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ceo-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .ceo-image-col {
        max-width: 400px;
        margin: 0 auto;
    }

    .ceo-image-wrapper img {
        height: 400px;
    }

    .ceo-quote {
        text-align: left;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .carousel-container {
        height: 480px;
    }

    .carousel-content .container {
        padding-left: 2rem;
    }

    /* Anniversary slide responsive */
    .anniversary-icon-wrapper {
        width: 72px;
        height: 72px;
    }

    .anniversary-icon-wrapper i {
        font-size: 1.75rem;
    }

    .anniversary-badges {
        gap: 1.25rem;
    }

    .anniversary-badge-item {
        padding: 0.75rem 1.25rem;
        min-width: 110px;
    }

    .badge-number {
        font-size: 1.5rem;
    }

    .cta-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner-content p {
        text-align: left;
        font-size: 1.125rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Testimonials responsive */
    .testimonials-carousel {
        padding: 0 3rem;
    }

    .testimonials-track {
        height: 420px;
    }

    .testimonial-card {
        padding: 2.5rem 2rem;
    }


    .testimonial-text::before {
        left: -1rem;
        font-size: 3rem;
    }
}

/* ===================================
   Mobile Responsive (< 768px)
   =================================== */
@media (max-width: 768px) {

    /* Typography fixes */
    html {
        font-size: 14px;
    }

    body {
        padding-top: 80px;
        /* Adjusted space for fixed headers on mobile */
    }

    .container {
        padding: 0 1rem;
    }

    /* Top bar mobile */
    .top-bar {
        padding: 0.5rem 0;
        font-size: 0.75rem;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .top-bar-left {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        width: 100%;
    }

    .top-contact-item {
        font-size: 0.75rem;
    }

    .top-contact-item i {
        font-size: 0.7rem;
    }

    .top-bar-right {
        width: 100%;
        justify-content: center;
        padding-top: 0.25rem;
    }

    .top-text {
        display: none;
    }

    .social-icon {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    /* Navbar mobile */
    .navbar {
        position: fixed;
        top: 36px;
        /* Height of mobile top-bar */
        padding: 0;
    }

    .nav-container {
        padding: 0.5rem 0;
    }

    .logo {
        font-size: 1.15rem;
    }


    .logo img {
        height: 28px;
    }

    .nav-menu {
        position: fixed;
        top: 55px;
        /* Adjust based on actual height */
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-base);
        align-items: flex-start;
        border-top: 1px solid var(--gray-200);
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem;
        font-size: 0.9375rem;
    }

    .cta-link,
    .login-link {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Add top margin to body/section to prevent overlap if needed, 
       but since carousel is at top, we handle it in carousel */
    .carousel-banner {
        margin-top: 0;
    }

    .banner-login-btn {
        top: 1rem;
        right: 1rem;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
        background: rgba(0, 0, 0, 0.4);
    }

    .banner-login-btn span {
        display: none;
    }

    .banner-login-btn i {
        font-size: 1.2rem;
        margin: 0;
    }

    /* Carousel mobile */
    .carousel-container {
        height: 600px;
        /* Fixed height to accommodate content */
    }

    .carousel-slide img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .carousel-content {
        padding: 1rem;
        position: relative;
        top: 80px;
        /* Push down content */
        transform: none;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .carousel-content .container {
        max-width: 100%;
        padding: 0 1rem;
        margin: 0;
    }

    .carousel-subtitle {
        font-size: 0.625rem;
        letter-spacing: 0.15em;
        margin-bottom: 0.75rem;
    }

    .carousel-heading {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 1.5rem;
        line-height: 1.3;
        word-wrap: break-word;
    }

    .carousel-description {
        display: none;
    }

    /* Anniversary slide - mobile fix */
    .anniversary-slide .carousel-content {
        top: 0 !important;
        position: absolute !important;
        transform: translateY(-50%) !important;
        top: 50% !important;
        height: auto !important;
        padding: 1rem;
    }

    .anniversary-desc {
        display: block !important;
        font-size: 0.8125rem;
        line-height: 1.5;
        margin-bottom: 0;
    }

    .anniversary-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 0.5rem;
    }

    .anniversary-icon-wrapper i {
        font-size: 1.25rem;
    }

    .anniversary-subtitle {
        font-size: 0.625rem !important;
        margin-bottom: 0.25rem !important;
    }

    .anniversary-heading {
        font-size: clamp(1.25rem, 5.5vw, 1.75rem) !important;
        margin-bottom: 0.5rem !important;
    }

    .anniversary-badges {
        gap: 0.5rem;
        margin: 0.75rem 0;
    }

    .anniversary-badge-item {
        padding: 0.5rem 0.75rem;
        min-width: 80px;
    }

    .badge-number {
        font-size: 1.125rem;
    }

    .badge-label {
        font-size: 0.5625rem;
    }

    .btn-anniversary {
        padding: 0.625rem 1.25rem;
        font-size: 0.75rem;
    }

    .btn-blue,
    .btn-white {
        padding: 0.75rem 1.5rem;
        font-size: 0.8125rem;
        white-space: nowrap;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .carousel-prev {
        left: 0.5rem;
    }

    .carousel-next {
        right: 0.5rem;
    }

    .carousel-dots {
        bottom: 1rem;
        gap: 0.5rem;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    .carousel-dot.active {
        width: 24px;
    }

    /* CTA Banner mobile */
    .cta-blue-banner {
        padding: 1.25rem 0;
    }

    .cta-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cta-banner-content p {
        text-align: left;
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    /* Anniversary banner mobile */
    .anniversary-banner {
        padding: 0.625rem 0;
    }

    .anniversary-content {
        flex-direction: row;
        gap: 0.5rem;
        text-align: center;
        justify-content: center;
    }

    .anniversary-content p {
        text-align: left;
        font-size: 0.75rem;
    }

    .anniversary-content i {
        font-size: 1rem;
    }

    /* Stats mobile */
    .stats-showcase {
        padding: 2.5rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .stat-item {
        padding: 2rem 1.5rem;
    }

    .stat-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .stat-item p {
        text-align: left;
        font-size: 0.9375rem;
    }

    /* About section mobile */
    .about-v2 {
        padding: 3rem 0;
    }

    .about-v2-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-v2-image-block img {
        height: 320px;
    }

    .mv-v2-section {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2.5rem;
    }

    .mv-v2-card {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 0.9375rem;
    }

    /* Services mobile */
    .services {
        padding: 3rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.125rem;
    }

    .service-card p {
        text-align: left;
        font-size: 0.875rem;
    }

    /* Advantage Carousel mobile */
    .advantage-section {
        padding: 3rem 0 2.5rem;
    }

    .advantage-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .advantage-carousel-wrapper {
        padding: 0 1rem;
    }

    .adv-card {
        min-width: calc(100% - 0.5rem);
        max-width: calc(100% - 0.5rem);
        flex-direction: column;
    }

    .adv-card h4 {
        font-size: 1rem;
    }

    .adv-list li {
        font-size: 0.75rem;
    }

    .adv-card-img {
        width: 100%;
        height: 180px;
        min-height: auto;
    }

    /* Core Values & Code of Conduct mobile */
    .values-conduct-section {
        padding: 3rem 0;
    }

    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .cv-card {
        padding: 1.5rem 1rem;
    }

    .cv-card h4 {
        font-size: 0.875rem;
    }

    .cv-card p {
        text-align: center;
        font-size: 0.8125rem;
    }

    .coc-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .coc-card {
        padding: 1.25rem 1.5rem;
    }

    .coc-header {
        margin-top: 3rem;
    }

    /* CEO Section mobile */
    .ceo-section {
        padding: 3rem 0;
    }

    .ceo-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .ceo-image-col {
        max-width: 320px;
        margin: 0 auto;
    }

    .ceo-image-wrapper img {
        height: 360px;
    }

    .ceo-quote {
        text-align: left;
    }

    .ceo-quote p {
        text-align: left;
        font-size: 0.9375rem;
    }

    .ceo-text-col h2 {
        font-size: 1.5rem;
    }

    /* Industries mobile */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .industry-card {
        padding: 1.25rem;
    }

    .industry-card i {
        font-size: 2rem;
    }

    .industry-card h4 {
        font-size: 0.875rem;
    }

    /* Testimonials mobile */
    .testimonials {
        padding: 3rem 0;
    }

    .testimonials-carousel {
        padding: 0 3rem;
    }

    .testimonials-track {
        height: auto;
        min-height: 420px;
    }

    .testimonial-card {
        padding: 1.75rem 1.25rem;
    }

    .testimonial-text {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .testimonial-text::before {
        display: none;
    }

    .author-image {
        width: 48px;
        height: 48px;
    }

    .author-info h4 {
        font-size: 0.9375rem;
    }

    .author-info p {
        text-align: left;
        font-size: 0.8125rem;
    }

    .testimonial-nav {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    /* Contact mobile */
    .contact {
        padding: 3rem 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info-item {
        padding: 1.25rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.9375rem;
        padding: 0.875rem;
    }

    /* Footer mobile */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-title {
        font-size: 1.125rem;
    }

    .footer-links li a {
        font-size: 0.875rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* ===================================
   Small Mobile (< 480px)
   =================================== */
@media (max-width: 480px) {
    html {
        font-size: 13px;
    }

    .container {
        padding: 0 0.875rem;
    }

    /* Carousel extra small */
    .carousel-container {
        height: 420px;
    }

    .carousel-content .container {
        padding: 0 0.75rem;
    }

    .carousel-subtitle {
        font-size: 0.5625rem;
    }

    .carousel-heading {
        font-size: clamp(1.25rem, 7vw, 1.75rem);
        margin-bottom: 1.25rem;
    }

    .btn-blue,
    .btn-white {
        padding: 0.625rem 1.25rem;
        font-size: 0.75rem;
    }

    .carousel-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    /* Anniversary extra small */
    .anniversary-icon-wrapper {
        width: 40px;
        height: 40px;
        margin-bottom: 0.375rem;
    }

    .anniversary-icon-wrapper i {
        font-size: 1rem;
    }

    .anniversary-subtitle {
        font-size: 0.5rem !important;
        margin-bottom: 0.125rem !important;
    }

    .anniversary-heading {
        font-size: clamp(1.125rem, 5vw, 1.5rem) !important;
        margin-bottom: 0.375rem !important;
    }

    .anniversary-desc {
        display: none !important;
    }

    .anniversary-badges {
        gap: 0.375rem;
        margin: 0.5rem 0;
    }

    .anniversary-badge-item {
        padding: 0.375rem 0.625rem;
        min-width: 70px;
    }

    .badge-number {
        font-size: 1rem;
    }

    .badge-label {
        font-size: 0.5rem;
    }

    .btn-anniversary {
        padding: 0.5rem 1rem;
        font-size: 0.6875rem;
    }

    /* Stats extra small */
    .stat-item {
        padding: 1.5rem 1.25rem;
    }

    .stat-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-item p {
        text-align: center;
        font-size: 0.875rem;
    }

    /* Services extra small */
    .service-card {
        padding: 1.25rem;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    /* Industries extra small */
    .industries-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials extra small */
    .testimonials-carousel {
        padding: 0 2.5rem;
    }

    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .testimonial-text {
        font-size: 0.875rem;
    }

    .testimonial-nav {
        width: 32px;
        height: 32px;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

/* ===================================
   Animation Classes
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
