.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.cta-gradient {
    background: linear-gradient(135deg, #835400 0%, #FFA800 100%);
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
}

/* Mobile Menu Toggle */
#mobile-menu {
    display: none;
}

#mobile-menu.active {
    display: block;
}

/* Animation Styles */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none;
        opacity: 1;
        transform: none;
    }

    .load-reveal {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .orbit-container {
        display: none !important;
    }
}

.load-reveal {
    animation: slideUpFade 0.7s ease-out forwards;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Orbital Animation Styles */
.orbit-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.orbit-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(131, 84, 0, 0.05);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbiting-element {
    position: absolute;
    width: fit-content;
    height: fit-content;
    animation: orbit linear infinite;
    will-change: transform;
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(var(--orbit-radius)) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(var(--orbit-radius)) rotate(-360deg);
    }
}

.orbit-item {
    background: white;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    animation: breathing 4s ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes breathing {

    0%,
    100% {
        transform: translateY(0) scale(0.9);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-4px) scale(1.05);
        opacity: 0.9;
    }
}

/* Premium Background Additions */
.premium-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.05;
    pointer-events: none;
    z-index: -1;
}

.float-slow {
    animation: float 15s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(15px, -15px);
    }
}

.tech-shape {
    position: absolute;
    color: rgba(0, 0, 0, 0.03);
    pointer-events: none;
    z-index: -1;
    animation: float 20s ease-in-out infinite alternate;
}

/* Responsive Orbiting */
@media (max-width: 640px) {

    .orbit-ring-3,
    .orbit-ring-4 {
        display: none;
    }

    .orbiting-element:nth-child(n+3) {
        display: none;
    }

    .orbit-container {
        opacity: 0.5;
    }

    .premium-glow {
        display: none;
    }

    .tech-shape {
        display: none;
    }
}

/* ============================================
    FONTS & IMPORTS
============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,1,0');

/* ============================================
    GLOBAL STYLES
============================================ */
body {
    font-family: 'Inter', sans-serif;
    color: #191c1e;
    background-color: #f7f9fb;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.text-on-surface {
    color: #191c1e;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
}

/*.image-hover-zoom {*/
/*  transition: transform 0.5s ease;*/
/*}*/
.image-hover-zoom {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    /* smooth easing */
    will-change: transform;
}

/* Active zoom state */
.image-hover-zoom.zoomed {
    transform: scale(1.08);
}

/* Desktop hover */
.image-hover-zoom:hover {
    transform: scale(1.1);
}

/* Mobile tap (active state) */
.image-hover-zoom:active {
    transform: scale(1.08);
}

/* Optional: slight default zoom for mobile (better UX) */
@media (max-width: 768px) {
    .image-hover-zoom {
        transform: scale(1.03);
    }
}

/* ============================================
    GRADIENTS & GLASS MORPHISM
============================================ */
.cta-gradient {
    background: linear-gradient(135deg, #835400 0%, #FFA800 100%);
}

.mission-gradient {
    background: linear-gradient(135deg, #006874 0%, #006e2f 50%, #00525c 100%);
}

.glass-nav {
    backdrop-filter: blur(24px);
    background-color: rgba(255, 255, 255, 0.95);
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
}

/* ============================================
    NAVIGATION & MOBILE MENU
============================================ */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
    transform: translateY(-100%);
}

#mobile-menu.active {
    transform: translateY(0);
}

/* ============================================
    REVEAL & SCROLL ANIMATIONS
============================================ */
.reveal-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: opacity, transform;
}

.reveal-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-step {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: opacity, transform;
}

.reveal-section.visible .stagger-step {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
    SERVICE CARD ANIMATIONS
============================================ */
.service-card {
    transition: box-shadow 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.service-card:hover {
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
}

.service-card .overlay-dark {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    transition: background 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover .overlay-dark {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.service-info-header {
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover .service-info-header {
    transform: translateY(-10px);
}

.service-desc {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-delay: 0.2s;
}

.service-card:hover .service-desc {
    opacity: 1;
    transform: translateY(0);
}

.service-link {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-delay: 0.3s;
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-link span {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-link:hover span {
    transform: translateX(4px);
}

/* ============================================
    MARQUEE + CARD SYSTEM
============================================ */
.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: fit-content;
    gap: 1.5rem;
    padding: 0 1.5rem;
}

/* Spacing override from your original file */
.marquee-track {
    gap: 2rem;
}

.card {
    flex: 0 0 280px;
    background: white;
    border: 0.5px solid #e0e3e5;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.card:hover {
    border-color: #d8c3ac;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.card-inner {
    position: relative;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    aspect-ratio: 1;
    margin-bottom: 1rem;
    transition: transform 0.6s ease-in-out;
}

.card:hover img {
    animation: rotate360 0.6s ease-in-out;
}

@keyframes rotate360 {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

.card .title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #191c1e;
}

.card .desc {
    font-size: 0.875rem;
    color: #534433;
    line-height: 1.6;
}

.card .material-symbols-outlined {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* ============================================
    LOGOS & PARTNERS
============================================ */
.partner-logo {
    height: 40px;
    width: 100px;
    background: #94a3b8;
    border-radius: 6px;
    flex: 0 0 auto;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    opacity: 1;
    filter: none;
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.marquee::before,
.marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

/* ============================================
    SWIPER STYLES
============================================ */
.swiper {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    height: auto !important;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #000;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #000;
}

.swiper-pagination {
    bottom: 30px !important;
}

/* ============================================
    EY-ROOT SYSTEM (Light Section)
============================================ */
.ey-root {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 64px;
    background: #f7f9fb;
}

.ey-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ey-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ey-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(2px);
}

.ey-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.ey-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #6bff8f;
    color: #007432;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ey-badge .mat-icon {
    font-family: 'Material Symbols Outlined';
    font-size: 16px;
    font-variation-settings: 'FILL' 1;
    line-height: 1;
}

.ey-title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #191c1e;
    line-height: 1.08;
    margin: 0;
}

.ey-title .accent {
    color: #835400;
}

.ey-sub {
    font-size: 1.15rem;
    color: rgba(25, 28, 30, 0.78);
    font-weight: 500;
    max-width: 480px;
    margin: 0;
    line-height: 1.5;
}

.ey-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ey-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.72);
    border: 0.5px solid rgba(131, 84, 0, 0.25);
    border-radius: 9999px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #684200;
    letter-spacing: 0.04em;
}

.ey-pill .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #835400;
    flex-shrink: 0;
}

.ey-pill.green .dot {
    background: #006e2f;
}

.ey-pill.green {
    color: #005321;
    border-color: rgba(0, 110, 47, 0.25);
}

.ey-pill.teal .dot {
    background: #006874;
}

.ey-pill.teal {
    color: #00525c;
    border-color: rgba(0, 104, 116, 0.25);
}

.ey-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.ey-btn-primary {
    background: linear-gradient(135deg, #835400 0%, #FFA800 100%);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 28px -4px rgba(131, 84, 0, 0.35);
    transition: opacity 0.2s;
    font-family: 'Inter', sans-serif;
}

.ey-btn-primary:hover {
    opacity: 0.88;
}

.ey-btn-secondary {
    background: rgba(255, 255, 255, 0.82);
    border: 0.5px solid rgba(131, 84, 0, 0.22);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    color: #835400;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Inter', sans-serif;
}

.ey-btn-secondary:hover {
    background: #fff;
}

.ey-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border: 0.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.12);
}

.ey-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.ey-card-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 15px;
}

.ey-card-icon {
    font-family: 'Material Symbols Outlined';
    color: #835400;
    font-size: 22px;
}

.ey-track-label {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 700;
    color: #534433;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 6px;
}

.ey-track {
    height: 8px;
    background: #eceef0;
    border-radius: 9999px;
    overflow: hidden;
    margin-bottom: 20px;
}

.ey-track-fill {
    height: 100%;
    border-radius: 9999px;
    background: linear-gradient(90deg, #006e2f 0%, #4ae176 100%);
}

.ey-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.ey-stat {
    background: #f2f4f6;
    border-radius: 10px;
    padding: 12px;
}

.ey-stat-label {
    font-size: 9.5px;
    font-weight: 800;
    color: #857460;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-bottom: 4px;
}

.ey-stat-val {
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
}

.ey-stat-val.amber {
    color: #835400;
}

.ey-stat-val.green {
    color: #006e2f;
}

.ey-divider {
    height: 0.5px;
    background: #e0e3e5;
    margin: 16px 0;
}

.ey-flow {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ey-flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.ey-flow-icon {
    font-family: 'Material Symbols Outlined';
    font-size: 20px;
    font-variation-settings: 'FILL' 1;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ey-flow-icon.amber-bg {
    background: #ffddb5;
    color: #684200;
}

.ey-flow-icon.green-bg {
    background: #6bff8f;
    color: #005321;
}

.ey-flow-icon.teal-bg {
    background: #9af0ff;
    color: #00525c;
}

.ey-flow-node-label {
    font-size: 9px;
    font-weight: 700;
    color: #534433;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    text-align: center;
}

.ey-flow-arrow {
    font-family: 'Material Symbols Outlined';
    font-size: 16px;
    color: #d8c3ac;
    flex-shrink: 0;
}

.ey-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(79, 202, 221, 0.14);
    border-radius: 50%;
    filter: blur(60px);
    top: -40px;
    right: -40px;
    z-index: -1;
    pointer-events: none;
}

.ey-glow2 {
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 168, 0, 0.10);
    border-radius: 50%;
    filter: blur(50px);
    bottom: -30px;
    left: -30px;
    z-index: -1;
    pointer-events: none;
}

.ey-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ============================================
    EY2-ROOT SYSTEM (Dark Section)
============================================ */
.ey2-root {
    font-family: 'Inter', sans-serif;
    min-height: calc(100vh - 64px);
    padding-top: 64px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a1a0d;
}

.ey2-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ey2-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
}

.ey2-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(8, 20, 10, 0.88) 0%, rgba(10, 28, 15, 0.70) 50%, rgba(5, 18, 10, 0.28) 100%);
}

.ey2-inner {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 11px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.ey2-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ey2-sys-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(107, 255, 143, 0.18);
    border: 0.5px solid rgba(107, 255, 143, 0.4);
    border-radius: 9999px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 800;
    color: #6bff8f;
    letter-spacing: .12em;
    text-transform: uppercase;
    width: fit-content;
}

.mat {
    font-family: 'Material Symbols Outlined';
    font-size: 16px;
    line-height: 1;
}

.ey2-heading {
    font-size: clamp(2.6rem, 4.5vw, 4rem);
    font-weight: 900;
    letter-spacing: -.03em;
    color: #fff;
    line-height: 1.08;
    margin: 0;
}

.ey2-heading .ey2-accent {
    color: #FFA800;
}

.ey2-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .78);
    font-weight: 400;
    line-height: 1.7;
    max-width: 460px;
    margin: 0;
}

.ey2-checks {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ey2-check {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ey2-check-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ey2-check-icon.amber {
    background: rgba(255, 168, 0, .18);
}

.ey2-check-icon.green {
    background: rgba(107, 255, 143, .18);
}

.ey2-check-icon.teal {
    background: rgba(79, 202, 221, .18);
}

.ey2-check-icon .mat {
    font-size: 18px;
}

.ey2-check-icon.amber .mat {
    color: #FFA800;
}

.ey2-check-icon.green .mat {
    color: #4ae176;
}

.ey2-check-icon.teal .mat {
    color: #4fcadd;
}

.ey2-check-text {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, .92);
}

.ey2-check-text span {
    color: rgba(255, 255, 255, .5);
    font-weight: 400;
    font-size: 13px;
    display: block;
    margin-top: 1px;
}

.ey2-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 168, 0, .15);
    border: 0.5px solid rgba(255, 168, 0, .35);
    border-radius: 12px;
    padding: 14px 20px;
    width: fit-content;
}

.ey2-tagline-icon .mat {
    font-size: 22px;
    color: #FFA800;
}

.ey2-tagline-text {
    font-size: 15px;
    font-weight: 700;
    color: #ffddb5;
    line-height: 1.4;
}

.ey2-tagline-text span {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 221, 181, .6);
    display: block;
}

.ey2-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ey2-card {
    background: rgba(255, 255, 255, .07);
    border: 0.5px solid rgba(255, 255, 255, .13);
    border-radius: 16px;
    padding: 22px 24px;
    backdrop-filter: blur(18px);
}

.ey2-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.ey2-card-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    flex-shrink: 0;
}

.c-amber {
    background: rgba(255, 168, 0, .2);
    color: #FFA800;
}

.c-green {
    background: rgba(107, 255, 143, .18);
    color: #4ae176;
}

.c-teal {
    background: rgba(79, 202, 221, .18);
    color: #4fcadd;
}

.c-coral {
    background: rgba(255, 107, 80, .18);
    color: #ff9580;
}

.ey2-card-label {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.ey2-card-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.6;
}

.ey2-card-bar {
    height: 4px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, .1);
    margin-top: 10px;
    overflow: hidden;
}

.ey2-card-bar-fill {
    height: 100%;
    border-radius: 9999px;
}

.fill-amber {
    background: #FFA800;
}

.fill-green {
    background: #4ae176;
}

.fill-teal {
    background: #4fcadd;
}

.ey2-no-middle {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, .35);
    border: 0.5px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 16px 20px;
}

.ey2-no-middle-icon .mat {
    font-size: 20px;
    color: #ff9580;
}

.ey2-no-middle-text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
}

.ey2-no-middle-text span {
    color: rgba(255, 255, 255, .42);
    font-weight: 400;
    font-size: 12px;
}

.section {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    padding-top: 64px;
}

/* ============================================
    RESPONSIVE MEDIA QUERIES
============================================ */
@media(max-width: 900px) {
    .ey-content {
        grid-template-columns: 1fr;
    }

    .ey-right {
        display: none;
    }

    .ey-title {
        font-size: 2.4rem;
    }
}

@media(max-width: 860px) {
    .ey2-inner {
        grid-template-columns: 1fr;
        padding: 11px 24px;
        gap: 40px;
    }

    .ey2-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .card {
        flex: 0 0 240px;
    }

    .card .title {
        font-size: 1rem;
    }

    .card .desc {
        font-size: 0.8rem;
    }

    .logo img {
        height: 36px;
    }

    .swiper {
        height: auto;
    }
}

/* =========================
   RESPONSIVE FIXES ONLY
========================= */

/* Mobile (max-width: 640px) */
@media (max-width: 640px) {

    .swiper-slide,
    .h-screen {
        height: auto !important;
        min-height: 100vh;
    }

    section {
        padding-top: 80px !important;
        padding-bottom: 60px !important;
    }

    .grid {
        gap: 20px !important;
    }

    h1 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    h2 {
        font-size: 24px !important;
    }

    p {
        font-size: 14px !important;
    }

    .max-w-7xl {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .lg\\:grid-cols-2,
    .lg\\:grid-cols-4 {
        grid-template-columns: 1fr !important;
    }

    .hidden.lg\\:block {
        display: none !important;
    }

    .h-96,
    .h-[900px],
    .h-[650px],
    .h-[600px] {
        height: auto !important;
    }

    .py-24 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .px-12,
    .md\\:px-24 {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .flex-row {
        flex-direction: column !important;
    }

    .text-xl {
        font-size: 16px !important;
    }

    .text-2xl {
        font-size: 18px !important;
    }

    .text-4xl,
    .text-5xl,
    .text-6xl,
    .text-7xl {
        font-size: 28px !important;
    }
}


/* Tablet (641px – 1024px) */
@media (min-width: 641px) and (max-width: 1024px) {

    .swiper-slide,
    .h-screen {
        height: auto !important;
        min-height: 100vh;
    }

    .lg\\:grid-cols-2 {
        grid-template-columns: 1fr !important;
    }

    .lg\\:grid-cols-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .hidden.lg\\:block {
        display: none !important;
    }

    .h-[900px],
    .h-[650px],
    .h-[600px] {
        height: auto !important;
    }

    .text-6xl,
    .text-7xl {
        font-size: 40px !important;
    }

    .px-6 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .py-24 {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }
}

.premium-shadow {
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.08);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 100ms;
}

.stagger-2 {
    transition-delay: 200ms;
}

.stagger-3 {
    transition-delay: 300ms;
}

.stagger-4 {
    transition-delay: 400ms;
}

.orbit-path {
    border: 1px solid rgba(131, 84, 0, 0.1);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gradient-glow {
    filter: blur(80px);
    opacity: 0.4;
}

@media (prefers-reduced-motion: reduce) {

    .animate-fade-up,
    .animate-scale-in,
    .scroll-reveal,
    .animate-float {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

.cta-gradient {
    background: linear-gradient(135deg, #835400 0%, #FFA800 100%);
    background-size: 200% 200%;
    transition: background-position 0.5s ease;
}

.cta-gradient:hover {
    background-position: 100% 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: #191c1e;
    background-color: #f7f9fb;
    overflow-x: hidden;
}

details summary::-webkit-details-marker {
    display: none;
}

details .expand-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

details[open] .expand-icon {
    transform: rotate(180deg);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.premium-shadow {
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05), 0 10px 10px -10px rgba(0, 0, 0, 0.03);
}

.form-input-focus {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input-focus:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(255, 168, 0, 0.15);
}

.map-marker {
    filter: drop-shadow(0 0 8px rgba(255, 168, 0, 0.6));
}