 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
        }

        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        /* ========== BACKGROUND ========== */
        .background-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 120vh;
            z-index: -1;
            background-image: url('../images/build your career.png');
            background-size: cover;
            background-position: center;
        }

        .background-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
        }

        /* ========== WEBINAR BANNER ========== */
        .webinar-banner {
            position: fixed;
            height: 7%;
            top: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
            color: white;
            z-index: 1001;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px 40px;
            transition: all 0.3s ease;
        }

        .webinar-banner.hidden {
            transform: translateY(-100%);
            opacity: 0;
        }

        .webinar-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            max-width: 1400px;
            width: 100%;
            position: relative;
        }

        .webinar-text {
            font-size: 15px;
            font-weight: 400;
            text-align: center;
        }

        .watch-btn {
            padding: 10px 28px;
            background: white;
            color: #050714;
            border: none;
            border-bottom: 2px solid #050714;
            font-weight: 600;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .watch-btn::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: #050714;
            transition: height 0.3s ease;
            z-index: -1;
        }

        .watch-btn:hover {
            color: white;
            border-top: 1px solid white;
            border-left: 1px solid white;
            border-right: 1px solid white;
        }

        .watch-btn:hover::before {
            height: 100%;
        }

        .close-banner {
            position: absolute;
            right: 50px;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-banner svg {
            width: 20px;
            height: 20px;
            stroke: white;
            stroke-width: 2;
        }

        /* ========== STICKY NAVBAR ========== */
        .sticky-navbar {
            position: fixed;
            top: -100px;
            left: 0;
            width: 100%;
            background: white;
            z-index: 999;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 100px 8px 7.2%;
            transition: top 0.4s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .sticky-navbar.visible {
            top: 0;
            animation: slideDownNav 0.4s ease-out;
        }

        @keyframes slideDownNav {
            from {
                top: -90px;
                opacity: 0;
            }
            to {
                top: 0;
                opacity: 1;
            }
        }

        .sticky-navbar img {
            height: 64px;
            width: auto;
        }

        .sticky-navbar .nav-right {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .sticky-navbar .menu-toggle {
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .sticky-navbar .menu-toggle svg {
            width: 30px;
            height: 30px;
            stroke: #333;
            stroke-width: 2;
        }

        .sticky-navbar .consultation-btn {
            padding: 14px 36px;
            background: white;
            color: #050714;
            border-top: 0.4px solid #050714;
            border-left: 1px solid #050714;
            border-right: 1px solid #050714;
            border-bottom: 3px solid #050714;
            font-weight: 600;
            cursor: pointer;
            font-size: 15px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            z-index: 1;
            white-space: nowrap;
        }

        .sticky-navbar .consultation-btn::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: #050714;
            transition: height 0.3s ease;
            z-index: -1;
        }

        .sticky-navbar .consultation-btn:hover {
            color: white;
        }

        .sticky-navbar .consultation-btn:hover::before {
            height: 100%;
        }

        /* ========== LOGO CONTAINER ========== */
        .logo-container {
            position: fixed;
            top: 65px;
            left: 7.05%;
            z-index: 900;
            transition: all 0.3s ease;
        }

        .logo-container.banner-hidden {
            top: 40px;
        }

        .logo-container.hide {
            opacity: 0;
            pointer-events: none;
        }

        .logo-container img {
            height: 69px;
            width: auto;
        }

        /* ========== MENU TOGGLE CONTAINER ========== */
        .menu-toggle-container {
            position: fixed;
            top: 70px;
            right: 100px;
            z-index: 900;
            transition: all 0.3s ease;
        }

        .menu-toggle-container.banner-hidden {
            top: 60px;
        }

        .menu-toggle-container.hide {
            opacity: 0;
            pointer-events: none;
        }

        .menu-toggle {
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .menu-toggle svg {
            width: 32px;
            height: 32px;
            stroke: white;
            stroke-width: 2;
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
        }

        /* ========== DROPDOWN MENU ========== */
        .dropdown-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
            z-index: 1000;
            overflow-y: auto;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .dropdown-menu.active {
            opacity: 1;
            visibility: visible;
            animation: slideDown 0.3s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-header {
            position: sticky;
            top: 0;
            background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
            z-index: 10;
            padding: 8px 100px 8px 7.2%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .dropdown-logo img {
            height: 66px;
            width: auto;
        }

        .dropdown-right {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .dropdown-consultation-btn {
            padding: 14px 36px;
            background: white;
            color: #050714;
            border: none;
            border-bottom: 3px solid #050714;
            font-weight: 600;
            cursor: pointer;
            font-size: 15px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .dropdown-consultation-btn::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: #050714;
            transition: height 0.3s ease;
            z-index: -1;
        }

        .dropdown-consultation-btn:hover {
            color: white;
            border-top: 1px solid white;
            border-left: 1px solid white;
            border-right: 1px solid white;
        }

        .dropdown-consultation-btn:hover::before {
            height: 100%;
        }

        .close-menu {
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .close-menu svg {
            width: 28px;
            height: 28px;
            stroke: white;
            stroke-width: 2;
        }

        .dropdown-container {
            max-width: 1400px;
            margin: 0 80px;
            padding: 60px 40px 80px;
        }

        .dropdown-content {
            display: flex;
            flex-direction: column;
            gap: 50px;
            color: white;
        }

        .dropdown-section-wrapper {
            display: block;
            margin-bottom: 0;
        }

        .dropdown-section-title {
            font-size: 22px;
            margin-bottom: 24px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }

        .dropdown-items-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0px 30px;
            grid-auto-flow: row;
        }

        .dropdown-item {
            display: block;
        }

        .dropdown-item a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 8px 0;
            transition: opacity 0.3s;
            font-size: 18px;
            line-height: 1.5;
        }

        .dropdown-item a:hover {
            opacity: 0.7;
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 40px;
        }

        .social-links a {
            color: white;
            transition: opacity 0.3s;
        }

        .social-links a:hover {
            opacity: 0.7;
        }

        .social-links svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        /* ========== HERO SECTION ========== */
        .hero-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 1;
            padding-top: 170px;
            text-align: center;
        }

        .hero-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 40px;
            color: white;
        }

        .hero-content {
            animation: slideUpContent 0.8s ease-out;
        }

        @keyframes slideUpContent {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

       

        .hero-content h1 {
            font-size: 60px;
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.1;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }

       
        .hero-content p {
            font-size: 22px;
            line-height: 1.6;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
            max-width: 900px;
            margin: 0 auto 50px;
            color: rgba(255, 255, 255, 0.9);
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 80px;
        }

        .btn-primary {
              padding: 13px 36px;
    background: white;
    color: #050714;
    border: none;
    border-bottom: 2px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
        }
        .btn-primary::before{
              content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
        }

        .btn-primary:hover {
            color: white;
        }
        .btn-primary:hover::before{
             height: 100%;
        }

        .btn-primary svg {
            padding-top: 8px;
            width: 18px;
            height: 20px;
            stroke: #050714;
            stroke-width: 2;
        }
        .btn-primary svg:hover{
            stroke: white;
        }

        .btn-secondary {
            padding: 16px 40px;
            background: transparent;
            color: white;
            border: 2px solid white;
            font-weight: 600;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            
        }

        .btn-secondary:hover {
            background: white;
            color: #050714;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 80px;
            color: white;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 8px;
            display: block;
        }

        .stat-label {
            font-size: 16px;
            opacity: 0.8;
            display: block;
        }

        /* ========== VALUES SECTION ========== */
        .values-section {
            background: #f8f9fa;
            padding: 100px 0;
            position: relative;
            z-index: 2;
        }

        .values-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .values-header h2 {
            font-size: 56px;
            font-weight: 700;
            color: #222;
            margin-bottom: 20px;
        }

        .values-header p {
            font-size: 20px;
            color: #666;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .value-card {
            background: white;
            padding: 40px 30px;
            border-radius: 8px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }

        .value-icon {
            width: 64px;
            height: 64px;
            background: #F4F6FF;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .value-icon svg {
            width: 32px;
            height: 32px;
            stroke: #050714;
            stroke-width: 2;
        }

        .value-card h3 {
            font-size: 24px;
            font-weight: 700;
            color: #222;
            margin-bottom: 16px;
        }

        .value-card p {
            font-size: 16px;
            line-height: 1.6;
            color: #666;
        }
      /* =============================================
   PARTNERSHIPS SECTION
   ============================================= */

.partnerships-section {
    background: #f8f9fa;
    padding: 50px 0;
    position: relative;
    z-index: 2;
}

.partnerships-section .content-container {
    margin: 0 7.5%;
    margin-right: 100px;
}

.partnerships-header {
    text-align: center;
    margin-bottom: 60px;
}

.partnerships-label {
    display: inline-block;
    color: #050714;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.partnerships-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #181717;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.partnerships-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    max-width: 1200px;
    text-align:justify;
    margin: 0 auto;
}

.partnerships-header p strong a {
    color: #050714;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #050714;
    transition: opacity 0.2s ease;
}

.partnerships-header p strong a:hover {
    opacity: 0.65;
}

/* ── Partners Grid ── */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    min-height: 120px;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: #c0c0c0;
}

.partner-card img {
    max-width: 200px;
    width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    display: block;
    filter: grayscale(20%);
    opacity: 0.85;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-card img.assetstudio-logo {
    max-height: 100px;
    max-width: 260px;
}
/* =============================================
   PARTNERSHIPS — TABLET (max 1024px)
   ============================================= */
@media (max-width: 1024px) {
    .partnerships-section .content-container {
        margin: 0 5%;
    }

    .partnerships-header h2 {
        font-size: 40px;
    }

    .partner-card {
        padding: 40px 30px;
    }
}

/* =============================================
   PARTNERSHIPS — MOBILE (max 768px)
   ============================================= */
@media (max-width: 768px) {
    .partnerships-section {
        padding: 60px 0;
    }

    .partnerships-section .content-container {
        margin-left: 20px !important;
        margin-right: 20px !important;
        width: calc(100% - 40px) !important;
        max-width: calc(100% - 40px) !important;
    }

    .partnerships-header {
        margin-bottom: 40px;
    }

    .partnerships-header h2 {
        font-size: 32px;
    }

    .partnerships-header p {
        font-size: 15px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .partner-card {
        padding: 36px 30px;
    }

    .partner-card img {
        max-height: 52px;
        filter: grayscale(0%);
        opacity: 1;
    }
}

/* =============================================
   PARTNERSHIPS — SMALL MOBILE (max 480px)
   ============================================= */
@media (max-width: 480px) {
    .partnerships-section {
        padding: 50px 0;
    }

    .partnerships-header h2 {
        font-size: 26px;
    }

    .partnerships-header p {
        font-size: 14px;
        line-height: 1.6;
    }

    .partner-card {
        padding: 28px 20px;
    }

    .partner-card img {
        max-height: 45px;
    }
}

/* =============================================
   PARTNERSHIPS — VERY SMALL (max 375px)
   ============================================= */
@media (max-width: 375px) {
    .partnerships-header h2 {
        font-size: 22px;
    }

    .partnerships-header p {
        font-size: 13px;
    }

    .partner-card {
        padding: 24px 16px;
    }

    .partner-card img {
        max-height: 40px;
    }
}
        /* ========== CULTURE SECTION ========== */
        .culture-section {
            background: white;
            padding: 100px 0;
            position: relative;
            z-index: 2;
        }

        .culture-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .culture-content {
            padding-right: 40px;
        }

        .culture-label {
            color: #050714;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            display: block;
        }

        .culture-content h2 {
            font-size: 48px;
            font-weight: 700;
            color: #222;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .culture-content > p {
            font-size: 18px;
            line-height: 1.7;
            color: #666;
            margin-bottom: 40px;
        }

        .culture-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .culture-feature {
            display: flex;
            gap: 16px;
        }

        .culture-feature-icon {
            width: 48px;
            height: 48px;
            background: #F4F6FF;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .culture-feature-icon svg {
            width: 24px;
            height: 24px;
            stroke: #050714;
            stroke-width: 2;
        }

        .culture-feature-content h4 {
            font-size: 18px;
            font-weight: 600;
            color: #222;
            margin-bottom: 8px;
        }

        .culture-feature-content p {
            font-size: 15px;
            line-height: 1.6;
            color: #666;
        }

        .culture-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .stat-card {
            background: #EEF1FF;
            padding: 60px 40px;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

        .stat-card.large {
            grid-column: span 2;
        }

        .stat-card.tall {
            grid-row: span 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .stat-card-number {
            font-size: 72px;
            font-weight: 700;
            color: #050714;
            line-height: 1;
            margin-bottom: 16px;
            display: block;
        }

        .stat-card-label {
            font-size: 16px;
            color: #666;
            font-weight: 500;
        }

        /* ========== FOOTER SECTION ========== */
        .footer-section {
            background: white;
            padding: 80px 0 0 0;
            position: relative;
            z-index: 2;
        }

        .content-container {
            margin: 0 7.5%;
            margin-right: 100px;
        }

        .footer-columns {
            display: grid;
            grid-template-columns: repeat(4, 1fr) 0.7fr;
            margin-bottom: 60px;
        }

        .footer-column h3 {
            font-size: 22px;
            font-weight: 700;
            color: #222;
            margin-bottom: 24px;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-column ul li {
            margin-bottom: 14px;
            width: 90%;
        }

        .footer-column ul li a {
            color: #333;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s ease;
            display: block;
            width: 100%;
        }

        .footer-column ul li a:hover {
            color: #050714;
        }

        .footer-social-icons {
            display: flex;
            gap: 16px;
            margin-bottom: 24px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f0f0f0;
            border-radius: 4px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: #333;
        }

        .social-icon:hover {
            background: #050714;
            color: white;
            transform: translateY(-2px);
        }

        .social-icon svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .footer-bottom {
            border-top: 1px solid #e0e0e0;
            padding: 40px 0;
            margin-top: 60px;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }

        .footer-logo img {
            height: 64px;
            width: auto;
        }

        .footer-copyright {
            flex: 1;
            text-align: center;
            color: #666;
            font-size: 15px;
        }

        .footer-search {
            display: flex;
            gap: 0;
            max-width: 400px;
            width: 100%;
        }

        .footer-search input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid #e0e0e0;
            border-right: none;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            outline: none;
            transition: border-color 0.3s ease;
            min-width: 0;
        }

        .footer-search input:focus {
            border-color: #050714;
        }

        .footer-search button {
            padding: 14px 28px;
            background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
            border: none;
            color: white;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .footer-search button:hover {
            background: linear-gradient(135deg, #081A2F 0%, #0B2A3D 60%, #050714 100%);
        }

        .footer-links {
            background: #f5f5f5;
            padding: 20px 0;
            text-align: center;
        }

        .footer-links-content {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #666;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #050714;
        }

        .footer-links-separator {
            color: #ccc;
        }

        /* ========== MOBILE RESPONSIVE ========== */
        @media (max-width: 768px) {
            html, body {
                overflow-x: hidden;
                width: 100%;
                max-width: 100vw;
            }

            .content-container,
            .hero-container {
                margin-left: 20px !important;
                margin-right: 20px !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
                width: calc(100% - 40px) !important;
                max-width: calc(100% - 40px) !important;
            }

            .webinar-banner {
                height: auto;
                padding: 10px 12px;
                flex-wrap: wrap;
            }

            .webinar-content {
                flex-direction: column;
                gap: 10px;
                padding-right: 35px;
            }

            .webinar-text {
                font-size: 12px;
            }

            .watch-btn {
                padding: 8px 20px;
                font-size: 12px;
            }

            .logo-container {
                left: 20px !important;
                top: 100px !important;
            }

            .logo-container.banner-hidden {
                top: 20px !important;
            }

            .logo-container img {
                height: 50px !important;
            }

            .menu-toggle-container {
                right: 20px !important;
                top: 100px !important;
            }

            .menu-toggle-container.banner-hidden {
                top: 20px !important;
            }

            .sticky-navbar {
                padding: 10px 15px;
            }

            .sticky-navbar img {
                height: 45px;
            }

            .sticky-navbar .consultation-btn {
                padding: 10px 20px;
                font-size: 13px;
            }

            .hero-section {
                min-height: 80vh;
                padding-top: 220px;
            }

            .hero-content h1 {
                font-size: 36px;
                margin-top: 25px;
            }

            .hero-content p {
                font-size: 16px;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .hero-stats {
                flex-direction: column;
                gap: 30px;
            }

            .dropdown-header {
                padding: 12px 15px;
            }

            .dropdown-container {
                margin: 0 15px;
                padding: 30px 15px;
            }

            .dropdown-section-title {
                font-size: 18px;
                cursor: pointer;
                position: relative;
                display: flex;
                justify-content: space-between;
                padding: 10px 0;
            }

            .dropdown-section-title::after {
                content: '›';
                font-size: 28px;
                transform: rotate(90deg);
                transition: transform 0.3s ease;
            }

            .dropdown-section-wrapper.active .dropdown-section-title::after {
                transform: rotate(-90deg);
            }

            .dropdown-items-grid {
                display: none;
                grid-template-columns: 1fr;
            }

            .dropdown-section-wrapper.active .dropdown-items-grid {
                display: grid;
            }

            .footer-columns {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .footer-bottom-content {
                flex-direction: column;
            }

            .footer-search {
                width: 100%;
            }
        }

        @media (max-width: 1024px) {
            .values-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .culture-container {
                gap: 40px;
            }

            .culture-features {
                gap: 24px;
            }

            .culture-stats {
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .values-section {
                padding: 60px 0;
            }

            .values-header {
                margin-bottom: 40px;
            }

            .values-header h2 {
                font-size: 36px;
            }

            .values-header p {
                font-size: 16px;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .value-card {
                padding: 30px 24px;
            }

            .culture-section {
                padding: 60px 0;
            }

            .culture-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .culture-content {
                padding-right: 0;
            }

            .culture-content h2 {
                font-size: 32px;
            }

            .culture-content > p {
                font-size: 16px;
            }

            .culture-features {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .culture-stats {
                grid-template-columns: 1fr;
            }

            .stat-card.large {
                grid-column: span 1;
            }

            .stat-card.tall {
                grid-row: span 1;
            }

            .stat-card {
                padding: 40px 30px;
            }

            .stat-card-number {
                font-size: 56px;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 28px;
            }

            .stat-number {
                font-size: 36px;
            }

            .values-header h2 {
                font-size: 28px;
            }

            .value-card h3 {
                font-size: 20px;
            }

            .culture-content h2 {
                font-size: 26px;
            }

            .culture-feature-content h4 {
                font-size: 16px;
            }

            .stat-card-number {
                font-size: 48px;
            }

            .footer-columns {
                grid-template-columns: 1fr;
            }
        }
@media(max-width:375){
           /* Footer */
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom-content {
        gap: 14px;
        padding: 0 8px;
    }

    .footer-logo img {
        height: 45px;
    }

    .footer-copyright {
        font-size: 12px;
        padding: 0 5px;
        line-height: 1.4;
    }

    .footer-search {
        width: 100%;
        max-width: 100%;
    }

    .footer-search input {
        padding: 10px 10px;
        font-size: 12px;
        border: 1px solid #e0e0e0;
    }

    .footer-search button {
        padding: 10px 16px;
        font-size: 15px;
        min-width: 48px;
    }
}
/* ========== VERY SMALL SCREENS (360px and below) ========== */
@media (max-width: 360px) {
    .footer-bottom-content {
        padding: 0 5px;
    }

    .footer-search input {
        padding: 9px 8px;
        font-size: 11px;
    }

    .footer-search button {
        padding: 9px 14px;
        font-size: 14px;
        min-width: 46px;
    }

    .footer-copyright {
        font-size: 11px;
    }

    .footer-logo img {
        height: 42px;
    }
}