* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* =========================================== */
/* UPDATED GRADIENT DEFINITIONS */
/* =========================================== */
:root {
    /* Main 3-color gradient */
     --gradient-start: #0EA5E9;   /* Sky Blue */
    --gradient-middle: #2563EB; /* Blue */
    --gradient-end: #1E40AF;    /* Dark Blue */

    /* Unified logo gradient */
    --logo-gradient: linear-gradient(135deg,
        var(--gradient-start),
        var(--gradient-middle),
        var(--gradient-end)
    );

    /* Buttons */
    --button-gradient: linear-gradient(90deg,
        var(--gradient-start),
        var(--gradient-middle),
        var(--gradient-end)
    );

    --button-hover-gradient: linear-gradient(90deg,
        var(--gradient-end),
        var(--gradient-middle),
        var(--gradient-start)
    );

    /* Section gradients */
--section-gradient: linear-gradient(135deg,
    rgba(14, 165, 233, 0.15),  /* Sky Blue */
    rgba(37, 99, 235, 0.12),  /* Blue */
    rgba(30, 64, 175, 0.10)   /* Dark Blue */
);

--hero-gradient: linear-gradient(135deg,
    rgba(14, 165, 233, 0.25),
    rgba(37, 99, 235, 0.18),
    rgba(30, 64, 175, 0.12)
);

/* Solid colors based on gradient stops */
--primary-color: #2563EB;   /* Blue */
--secondary-color: #0EA5E9; /* Sky Blue */
--accent-color: #1E40AF;   /* Dark Blue */
    /* Neutral palette */
    --dark-color: #1a1a2e;
    --medium-color: #2d3748;
    --light-color: #f7fafc;
    --white: #ffffff;
}

/* =========================================== */
/* SCROLL ANIMATION CLASSES - FIXED */
/* =========================================== */
/* Initially visible for all content */
.section-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Animation-ready state (will be added by JS if supported) */
.js-animation-ready .section-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.js-animation-ready .section-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.js-animation-ready .slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.2s;
}

.js-animation-ready .slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.2s;
}

.js-animation-ready .slide-in-bottom {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.1s;
}

.js-animation-ready .fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.js-animation-ready .scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-animation-ready .animate-in {
    opacity: 1 !important;
    transform: translateX(0) translateY(0) scale(1) !important;
}

/* Stagger animation for children */
.stagger-children > * {
    opacity: 1;
    transform: translateY(0);
}

.js-animation-ready .stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-animation-ready .stagger-children.animate-in > * {
    opacity: 1;
    transform: translateY(0);
}

/* Delay for stagger effect */
.js-animation-ready .stagger-children.animate-in > *:nth-child(1) { transition-delay: 0.1s; }
.js-animation-ready .stagger-children.animate-in > *:nth-child(2) { transition-delay: 0.2s; }
.js-animation-ready .stagger-children.animate-in > *:nth-child(3) { transition-delay: 0.3s; }
.js-animation-ready .stagger-children.animate-in > *:nth-child(4) { transition-delay: 0.4s; }
.js-animation-ready .stagger-children.animate-in > *:nth-child(5) { transition-delay: 0.5s; }
.js-animation-ready .stagger-children.animate-in > *:nth-child(6) { transition-delay: 0.6s; }

/* =========================================== */
/* HEADER STYLES WITH GRADIENT - MOBILE ENHANCED */
/* =========================================== */
header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.top-header {
    background: linear-gradient(90deg, var(--dark-color), #0f0f1a);
    padding: 10px 0;
    font-size: 14px;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-info {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--white);
    font-size: 13px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    color: var(--white);
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-icons a:hover {
    transform: translateY(-2px);
}

.main-header {
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1002;
}

.logo-text {
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 24px;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: var(--button-gradient);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1002;
}

.mobile-menu-toggle:hover {
    background: var(--button-hover-gradient);
    transform: scale(1.05);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.nav-list > li {
    position: relative;
}

.nav-list a {
    text-decoration: none;
    color: var(--medium-color);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    white-space: nowrap;
}

.nav-list a:hover {
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.nav-list a i {
    font-size: 12px;
    transition: transform 0.3s;
}

.nav-list li:hover a i {
    transform: rotate(180deg);
}

/* DESKTOP MEGA MENU */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 800px;
    max-width: 90vw;
    background-color: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 12px 12px;
    padding: 25px;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    z-index: 1001;
    border-top: 3px solid;
    border-image: var(--logo-gradient);
    border-image-slice: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-list li:hover .mega-menu {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

.mega-menu-column h4 {
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 800;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
}

.mega-menu-links {
    list-style: none;
}

.mega-menu-links li {
    margin-bottom: 12px;
}

.mega-menu-links a {
    color: var(--medium-color);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    transition: all 0.3s ease;
    display: block;
}

.mega-menu-links a:hover {
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-left: 10px;
    font-weight: 600;
}

.header-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: 15px;
    z-index: 1002;
}

/* =========================================== */
/* ENHANCED BUTTONS WITH FULL GRADIENT */
/* =========================================== */
.btn-primary {
    background: var(--button-gradient);
    color: white;
    border: none;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 173, 251, 0.4);
    display: inline-block;
    text-align: center;
    font-size: 16px;
    min-height: 48px;
    line-height: 1.2;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--button-hover-gradient);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 98, 190, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid;
    border-image: var(--button-gradient);
    border-image-slice: 1;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    min-height: 48px;
    line-height: 1.2;
}

.btn-secondary:hover {
    background: var(--button-gradient);
    color: white;
    border: 2px solid transparent;
    transform: translateY(-2px);
}

/* =========================
   ABOUT US DROPDOWN MENU - FIXED
   ========================= */
.has-dropdown {
    position: relative;
}

/* Desktop dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    list-style: none;
    padding: 12px 0;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    display: none;
    z-index: 1001;
    border-top: 3px solid;
    border-image: var(--logo-gradient);
    border-image-slice: 1;
}

/* Show on hover (desktop) */
.has-dropdown:hover .dropdown-menu {
    display: block;
}

/* Dropdown links */
.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--medium-color);
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-left: 28px;
}

/* Arrow rotate - FIXED SELECTOR */
.has-dropdown:hover > a i,
.has-dropdown.active > a i,
.has-dropdown:hover > button i,
.has-dropdown.active > button i {
    transform: rotate(180deg);
}

/* =========================
   MOBILE DROPDOWN - FIXED
   ========================= */
@media (max-width: 992px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 15px;
        display: none;
    }

    .has-dropdown.active .dropdown-menu {
        display: block;
    }
    
    /* Remove desktop hover effects on mobile */
    .has-dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .has-dropdown.active:hover .dropdown-menu {
        display: block;
    }
}

/* =========================================== */
/* MOBILE MENU STYLES */
/* =========================================== */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 110px;
        right: -100%;
        width: 100%;
        max-width: 100%;
        height: calc(100vh - 110px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        transition: right 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        z-index: 1001;
        overflow-y: auto;
        padding: 0;
        margin: 0;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 20px 0;
    }
    
    .nav-list > li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .nav-list > li:last-child {
        border-bottom: none;
    }
    
    .nav-list a {
        padding: 18px 20px;
        font-size: 16px;
        justify-content: space-between;
        border-radius: 0;
        width: 100%;
    }
    
    .nav-list a i {
        transition: transform 0.3s ease;
    }
    
    .nav-list a.active i {
        transform: rotate(180deg);
    }
    
    /* MOBILE MEGA MENU */
    .mega-menu {
        position: static;
        width: 100%;
        max-width: 100%;
        display: none;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
        margin: 0;
        box-shadow: none;
        border: none;
        border-radius: 0;
        opacity: 1;
        transform: none;
        border-top: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }
    
    .mega-menu.active {
        display: grid;
        max-height: 1000px;
        padding: 15px 0 15px 15px;
    }
    
    .mega-menu-column {
        margin-bottom: 20px;
    }
    
    .mega-menu-column h4 {
        font-size: 16px;
        margin-bottom: 10px;
        padding-bottom: 8px;
    }
    
    .mega-menu-links li {
        margin-bottom: 10px;
    }
    
    .mega-menu-links a {
        font-size: 14px;
        padding: 6px 0;
    }
    
    /* Mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Adjust header buttons for mobile */
    .header-buttons {
        margin-left: 0;
    }
    
    .btn-primary {
        padding: 12px 20px;
        font-size: 15px;
        min-height: 44px;
    }
}

/* ===============================
   HERO SWIPER
================================ */
.hero-swiper {
    width: 100%;
    height: 600px;
    position: relative;
}

.hero-slide {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Overlay */
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(26, 26, 46, 0.85),
        rgba(26, 26, 46, 0.6)
    );
    z-index: 1;
}

/* ===============================
   CENTERED CONTENT
================================ */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    background-size: 200% auto;
    animation: gradientShift 8s infinite alternate;
}

.hero-content p {
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto;
}

/* ===============================
   NAVIGATION ARROWS
================================ */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 !important;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--button-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-button-prev {
    left: 30px;
}

.hero-swiper .swiper-button-next {
    right: 30px;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: var(--button-hover-gradient);
    transform: translateY(-50%) scale(1.1);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.hero-swiper .swiper-button-next svg,
.hero-swiper .swiper-button-prev svg {
    display: none !important;
}

/* ===============================
   PAGINATION
================================ */
.hero-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: #fff;
}

/* ===============================
   FADE FIX
================================ */
.swiper-fade .swiper-slide {
    opacity: 0 !important;
}

.swiper-fade .swiper-slide-active {
    opacity: 1 !important;
}

/* ===============================
   ANIMATION
================================ */
@keyframes gradientShift {
    from {
        background-position: 0% 50%;
    }
    to {
        background-position: 100% 50%;
    }
}

/* =========================================== */
/* SECTION COMMON STYLES WITH ANIMATION */
/* =========================================== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
    background-size: 200% auto;
    line-height: 1.2;
}

.section-title p {
    font-size: 16px;
    color: var(--medium-color);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-padding {
    padding: 40px 0;
}

.gradient-separator {
    height: 3px;
    width: 80px;
    background: var(--logo-gradient);
    margin: 20px auto;
    border-radius: 4px;
}

.gradient-badge {
    background: var(--button-gradient);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 800;
    display: inline-block;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(142, 173, 251, 0.3);
}

/* =========================================== */
/* SERVICES SECTION WITH ANIMATION */
/* =========================================== */
.services-section {
    background: var(--section-gradient);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--logo-gradient);
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(207, 154, 242, 0.25);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 25px;
    flex: 1;
    min-width: 0;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 15px;
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.3;
}

.service-content p {
    color: var(--medium-color);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 15px;
}

.service-link {
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.service-link i {
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(10px);
}

/* =========================================== */
/* INDUSTRIES SECTION WITH ANIMATION */
/* =========================================== */
.industries-section {
    background: linear-gradient(135deg, 
        rgba(218, 228, 246, 0.15), 
        rgba(142, 173, 251, 0.2), 
        rgba(207, 154, 242, 0.15),
        rgba(247, 98, 190, 0.1));
    position: relative;
}

.industries-section .section-title h2 {
    color: var(--dark-color);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.industries-section .section-title p {
    color: var(--medium-color);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.industry-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--logo-gradient);
    z-index: 2;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(142, 173, 251, 0.2);
}

.industry-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.industry-content {
    padding: 20px;
    text-align: center;
}

.industry-content h4 {
    font-size: 18px;
    font-weight: 800;
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.centered-button {
    text-align: center;
    margin-top: 50px;
}

/* =========================================== */
/* PARTNERS SECTION WITH ANIMATION */
/* =========================================== */
.partners-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(to bottom, var(--white), rgba(142, 173, 251, 0.05));
}

.partners-section p {
    font-size: 16px;
    color: var(--medium-color);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    align-items: center;
}

.partner-logo {
    height: 90px;
    background-color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    font-size: 18px;
    font-weight: 800;
}

.partner-logo:hover {
    border: 2px solid;
    border-image: var(--button-gradient);
    border-image-slice: 1;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(207, 154, 242, 0.2);
}

/* =========================================== */
/* STATS SECTION WITH ANIMATION */
/* =========================================== */
.stats-section {
    background: var(--logo-gradient);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(218, 228, 246, 0.2), 
        rgba(142, 173, 251, 0.3), 
        rgba(207, 154, 242, 0.2));
    z-index: 0;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stats-section .section-title h2 {
    color: white !important;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    text-align: center;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
}

.stat-item h3 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: none;
    color: white;
    line-height: 1;
}

.stat-item p {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.9;
}

/* =========================================== */
/* TESTIMONIALS SECTION WITH ANIMATION */
/* =========================================== */
.testimonials-section {
    background: var(--section-gradient);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(142, 173, 251, 0.15);
    border-top: 5px solid;
    border-image: var(--logo-gradient);
    border-image-slice: 1;
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--logo-gradient);
    opacity: 0.05;
    border-radius: 0 0 0 100%;
}

.testimonial-text {
    font-size: 16px;
    color: var(--medium-color);
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--button-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(142, 173, 251, 0.3);
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 800;
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gradient-middle);
    font-size: 14px;
    font-weight: 600;
}

/* =========================================== */
/* DISCOVER SECTION WITH ANIMATION */
/* =========================================== */
.discover-section {
    background: linear-gradient(to bottom, var(--white), rgba(218, 228, 246, 0.1));
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.discover-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.discover-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--logo-gradient);
    z-index: 2;
}

.discover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(247, 98, 190, 0.2);
}

.discover-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.discover-content {
    padding: 25px;
}

.discover-content h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 15px;
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.discover-content p {
    color: var(--medium-color);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 15px;
}

/* =========================================== */
/* ABOUT PAGE STYLES */
/* =========================================== */
.about-banner {
    position: relative;
    height: 65vh;
    background-image:
        linear-gradient(
            135deg,
            rgba(14, 165, 233, 0.32),  /* Sky Blue – light */
            rgba(37, 99, 235, 0.28),  /* Blue */
            rgba(30, 64, 175, 0.22)   /* Dark Blue – very soft */
        ),
        url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.banner-content {
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.banner-content h1 {
 font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(
        90deg,
        var(--gradient-start),
        var(--gradient-middle),
        var(--gradient-end)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-content p {
    font-size: 18px;
    opacity: 0.95;
}

/* Breadcrumb */
.breadcrumb-overlay {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    font-size: 14px;
}

.breadcrumb li {
    color: #eee;
}

.breadcrumb li a {
    color: #ffc371;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb li::after {
    content: "/";
    margin-left: 8px;
    color: rgba(255,255,255,0.6);
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb li:last-child {
    font-weight: 600;
    color: #fff;
}

/* About Section */
.about-section {
    padding: 90px 0;
    background-color: #fff;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.about-content {
    max-width: 620px;
}

.about-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #ff2d2d;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 900;
    color: #0f1b46;
    line-height: 1.25;
    margin-bottom: 22px;
}

.about-content p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-read-more {
    display: inline-block;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #ff2d2d;
    text-decoration: none;
    position: relative;
}

.about-read-more::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #ff2d2d;
    transition: width 0.3s ease;
}

.about-read-more:hover::after {
    width: 100%;
}

/* Core Values */
.core-values-section {
    background: var(--section-gradient);
    padding: 80px 0;
}

.section-title.center {
    text-align: center;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.core-value-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.core-value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(
        90deg,
        var(--gradient-start),
        var(--gradient-middle),
        var(--gradient-end)
    );
    border-radius: 14px 14px 0 0;
}

.core-value-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.core-value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.core-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Mission & Vision */
.mission-vision-section {
    background: #fff;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: stretch;
}

.mission-box,
.vision-box {
    background: #f9f9ff;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.07);
    position: relative;
}

.mission-box::before,
.vision-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(
        180deg,
        var(--gradient-start),
        var(--gradient-middle),
        var(--gradient-end)
    );
    border-radius: 16px 0 0 16px;
}

.mission-box h3,
.vision-box h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.mission-box p,
.vision-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* About Services */
.about-services-section {
    background: #fff;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.about-service-card {
    position: relative;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 40px 35px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.about-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.service-number {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 80px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.04);
    pointer-events: none;
}

.service-icon {
    width: 55px;
    height: 55px;
    border: 2px solid transparent;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
   background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(
            135deg,
            var(--gradient-start),
            var(--gradient-middle),
            var(--gradient-end)
        ) border-box;
}

.service-icon i {
    font-size: 22px;
     background: linear-gradient(
        135deg,
        var(--gradient-start),
        var(--gradient-middle),
        var(--gradient-end)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  
}

.about-service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0a1f44;
}

.about-service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* =========================================== */
/* SERVICE DETAIL PAGE STYLES */
/* =========================================== */
.service-detail-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
}

.service-sidebar {
    flex: 0 0 360px;
    max-width: 360px;
    background-color: #f9f9f9;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.service-sidebar h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.service-sidebar .sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-sidebar .sidebar-menu li {
    margin-bottom: 14px;
}

.service-sidebar .sidebar-menu li a {
    text-decoration: none;
    font-size: 16px;
    color: #333;
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-sidebar .sidebar-menu li a:hover,
.service-sidebar .sidebar-menu li a.active {
    background: linear-gradient(
        90deg,
        var(--gradient-start),
        var(--gradient-middle),
        var(--gradient-end)
    );
    color: #fff;
    padding-left: 18px;
}

.service-detail-image {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: inherit;
}

.service-detail-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px solid rgba(120, 160, 255, 0.35);
    pointer-events: none;
}

/* =========================================== */
/* CAREERS PAGE STYLES */
/* =========================================== */
.careers-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.careers-image {
    flex: 1 1 40%;
}

.careers-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.careers-content {
    flex: 1 1 55%;
}

.careers-content h3 {
    margin-top: 20px;
}

/* =========================================== */
/* CONTACT PAGE STYLES */
/* =========================================== */
.contact-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info-box {
    flex: 1 1 40%;
    background: #f9f9ff;
    padding: 30px;
    border-radius: 16px;
}

.contact-info-box h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.contact-info-box p {
    margin-bottom: 20px;
    color: #555;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-details i {
    color: #8E2DE2;
    font-size: 18px;
}

.contact-form-box {
    flex: 1 1 55%;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.contact-form-box .form-group {
    margin-bottom: 15px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form-box textarea {
    resize: none;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    outline: none;
    border-color: #8EADFB;
    box-shadow: 0 0 0 3px rgba(142,173,251,0.2);
}

.contact-form-box button {
    margin-top: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
}

.contact-info-box .social-icons a {
    margin-right: 10px;
}

/* =========================================== */
/* FOOTER STYLES WITH ANIMATION */
/* =========================================== */
footer {
    background: linear-gradient(135deg, 
        var(--dark-color), 
        #0f0f1a,
        rgba(26, 26, 46, 0.95));
    color: #ddd;
    padding: 40px 0 15px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--logo-gradient);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h4 {
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

.footer-links a:hover {
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-left: 15px;
    font-weight: 600;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 14px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 900;
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
}

.footer-description {
    color: #aaa;
    margin-bottom: 25px;
    line-height: 1.6;
}

.tagline {
    color: var(--gradient-middle);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

/* =========================================== */
/* RESPONSIVE MEDIA QUERIES */
/* =========================================== */
@media (max-width: 1200px) {
    .mega-menu {
        width: 700px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-swiper,
    .hero-slide {
        height: 450px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 16px;
    }
    
    .hero-swiper .swiper-button-prev {
        left: 15px;
    }
    
    .hero-swiper .swiper-button-next {
        right: 15px;
    }
    
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        width: 44px;
        height: 44px;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content h2 {
        font-size: 30px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-wrapper {
        flex-direction: column;
    }

    .service-sidebar {
        width: 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .careers-wrapper {
        flex-direction: column;
    }

    .careers-image,
    .careers-content {
        flex: 1 1 100%;
    }
    
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info-box,
    .contact-form-box {
        flex: 1 1 100%;
    }
    
    .stats-grid,
    .discover-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mega-menu {
        width: 500px;
        grid-template-columns: 1fr;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 34px;
    }

    .banner-content p {
        font-size: 16px;
    }
    
    .about-section {
        padding: 70px 0;
    }

    .about-content h2 {
        font-size: 26px;
    }
    
    .core-values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-image {
        border-radius: 14px;
        box-shadow: 0 14px 36px rgba(0,0,0,0.07);
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .services-grid,
    .stats-grid,
    .discover-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-column h4 {
        text-align: center;
    }
    
    .footer-links a:hover {
        padding-left: 0;
        padding-right: 0;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-list a {
        padding: 15px 12px;
        font-size: 15px;
    }
    
    .mega-menu {
        padding: 10px 0 10px 10px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        font-size: 28px;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    .copyright {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .section-title h2 {
        font-size: 22px;
    }
    
    .service-content h3,
    .discover-content h3 {
        font-size: 20px;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .section-animate,
    .slide-in-left,
    .slide-in-right,
    .slide-in-bottom,
    .fade-in,
    .scale-in,
    .stagger-children > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .service-card:hover,
    .industry-card:hover,
    .discover-card:hover,
    .stat-item:hover,
    .core-value-card:hover,
    .about-service-card:hover {
        transform: none;
    }
}

/* Logo image styles */
.logo-image {
    height: 40px; /* Default desktop size */
    width: auto;
    transition: height 0.3s ease;
}

/* Mobile adjustments */
@media (max-width: 992px) {
    .logo-image {
        height: 32px;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 28px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 24px;
    }
}
@media (max-width: 992px) {
    /* Mobile header adjustments */
    .top-header {
        padding: 8px 0;
        font-size: 12px;
    }
    
    .contact-info {
        gap: 10px;
    }
    
    .contact-info span {
        font-size: 11px;
    }
    
    .logo-text {
        font-size: 20px;
        font-weight: 800;
    }
    
    .main-header {
        padding: 12px 0;
    }
    
    /* Reduce header height to accommodate smaller logo */
    header {
        min-height: 70px;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 18px;
    }
    
    .header-content {
        padding: 8px 0;
    }
    
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
/* =========================================== */
/* RESPONSIVE MEDIA QUERIES */
/* =========================================== */
@media (max-width: 992px) {
    /* ... existing mobile styles ... */
    
    /* Decrease logo size on mobile */
    .logo-text {
        font-size: 20px;
    }
    
    .logo-container {
        gap: 8px;
    }
}

@media (max-width: 768px) {
    /* Further reduce logo on smaller screens */
    .logo-text {
        font-size: 18px;
    }
    
    /* If you have a logo image, adjust it too */
    .logo-container img {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    /* Smallest screens */
    .logo-text {
        font-size: 16px;
    }
    
    .logo-container img {
        width: 150px;
        height: 28px;
    }
    
    /* Adjust header spacing for smaller logo */
    .header-content {
        padding: 10px 0;
    }
}
@media (max-width: 480px) {
    .logo-text {
        font-size: 16px;
    }
    
    /* Hide contact info on very small screens if needed */
    .contact-info span:not(:first-child) {
        display: none;
    }
    
    /* Stack header elements better */
    .top-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}