.marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 80px; /* spacing like video */
    width: max-content;
    align-items: center;
}

/* animation directions */
.marquee-left .marquee-track {
    animation: scroll-left 30s linear infinite;
}

.marquee-right .marquee-track {
    animation: scroll-right 30s linear infinite;
}

/* 🔥 LOGO STYLE (IMPORTANT) */
.logo-img {
    height: 45px;
    flex: 0 0 auto; /* prevent shrink */
    opacity: 0.6;
    transition: 0.3s;
}

.logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* animations */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}


.perspective {
    perspective: 1500px;
}

.slider-img {
    transform-style: preserve-3d;
    opacity: 0;
}

/* ACTIVE (CENTER) */
.active-slide {
    transform: translateX(0) scale(1) rotateY(0deg);
    opacity: 1;
    z-index: 3;
}

/* NEXT (RIGHT BACK) */
.next-slide {
    transform: translateX(60px) scale(0.9) rotateY(-15deg);
    opacity: 0.6;
    z-index: 2;
}

/* PREVIOUS (LEFT BACK) */
.prev-slide {
    transform: translateX(-60px) scale(0.9) rotateY(15deg);
    opacity: 0.4;
    z-index: 1;
}
/* HOVER EFFECT */


.marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: flex;
    width: max-content;
    gap: 60px;
}

/* LOGO SIZE */
.logo-img {
    height: 40px;   /* screenshot ke approx */
    width: auto;
    opacity: 0.7;
    transition: 0.3s;
}

.logo-img:hover {
    opacity: 1;
}

/* LEFT SCROLL */
.marquee-left .marquee-content {
    animation: scrollLeft 20s linear infinite;
}

/* RIGHT SCROLL */
.marquee-right .marquee-content {
    animation: scrollRight 20s linear infinite;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.animate-slide {
    display: flex;
    width: max-content;
    animation: slide 20s linear infinite;
}


.nav-link {
    position: relative;
    transition: 0.3s;
    color: var(--text);
}

.nav-link:hover {
    color: var(--primary);
}

/* underline */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* ✅ ACTIVE PAGE */
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    width: 100%;
}


.privacy-content p {
    margin-bottom: 20px !important;
    line-height: 1.7;
}

.privacy-content h1,
.privacy-content h2,
.privacy-content h3 {
    margin-top: 30px !important;
    margin-bottom: 15px !important;
    font-weight: 700 !important;
}

.privacy-content ul,
.privacy-content ol {
    margin: 15px 0 20px 20px !important;
}

.privacy-content li {
    margin-bottom: 8px;
}

.privacy-content a {
    color: var(--primary) !important;
    text-decoration: underline;
}

.privacy-content {
    font-size: 16px;
    color: var(--text);
}

.privacy-content h1 {
    font-size: 32px;
}

.privacy-content h2 {
    font-size: 26px;
}

.privacy-content h3 {
    font-size: 22px;
}