:root {
    --primary: #a3e635;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
}

:root {
    --neon-green: #a3e635;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Inter", "Segoe UI", sans-serif;
    background: #ffffff;
    color: rgb(0, 0, 0);
    line-height: 1.6;
    gap: 4rem;
}
a {
    text-decoration: none;
    color: inherit;
}


/* nav a {
    margin: 0 1rem;
    font-weight: 500;
    transition: color 0.3s;
    color: #ffffff;
}
nav a:hover {
    color: var(--primary);
} */
.join-btn {
    background: var(--primary);
    color: #000;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.join-btn-sing {
    background: var(--primary);
    color: #000;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid black;
}
.join-btn-sing:hover,
.join-btn:hover {
    color: #ffffff;
}
.hero {
    position: relative;
    overflow: hidden;
}
.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 5%;
    max-width: 1480px;
    margin: 0 auto;
    height: 110vh;
    color: white;
    background-color: #ffffff;
    margin-top: 100px;
    border-radius: 50px;
    margin-bottom: 100px;
}

/* BACKGROUND SLIDER - FIXED */
.main-slider__carousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 50px;
}

.main-slider__carousel .owl-stage-outer,
.main-slider__carousel .owl-stage,
.main-slider__carousel .owl-item {
    height: 100%;
    border-radius: 50px;
}

.main-slider__carousel .item {
    height: 100%;
    position: relative;
    border-radius: 50px;
}

.main-slider__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 50px;
}
/* Dark overlay - but behind text */
.main-slider__carousel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    border-radius: 50px;
    background: fixed;
}

/* Ken Burns effect - zoom and pan */
@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.15) translate(-2%, -2%);
    }
}

.main-slider__carousel .owl-item.active .main-slider__bg {
    animation: kenBurns 8s ease-out forwards;
    border-radius: 50px;
}

.main-slider__carousel .owl-item:not(.active) .main-slider__bg {
    transform: scale(1) translate(0, 0);
    border-radius: 50px;
}
.left,
.bottom {
    position: relative;
    z-index: 15;
}
.bottom {
    display: flex;
    flex-direction: column; /* keep content vertically stacked */
    text-align: left; /* align text to right */
    position: relative;
    z-index: 15;
}

.right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 15;
}
.left h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.tagline {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
} /* Your existing styles - just make sure text is white */
.stats,
.info-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: 20px;
}
.social-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 2rem;
}

.btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
}

.book_btn {
    background: var(--primary);
    color: #000;
    padding: 1rem 3rem 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    padding-right: 30px;
}

.book_btn::after {
    background: #000;
    color: var(--primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    position: absolute;
    right: 5px;
    transition: all 0.3s ease;
}

.book_btn:hover {
    background: #bef264;
    transform: translateY(-3px);
}

.book_btn:hover::after {
    transform: rotate(45deg);
}

.home_btn.play {
    background: #000;
    color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.home_btn.play i {
    font-size: 1.5rem;
    margin-left: 3px;
    border-color: #a3e635;
}

.home_btn.play:hover {
    background: var(--primary);
    color: #000;
    transform: scale(1.1);
}

.left h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.left p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}
.stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(205, 205, 205, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    width: fit-content;
}
.stats img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--primary);
}
.stats .plus {
    background: var(--primary);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: bold;
    font-size: 0.9rem;
}
.social-media {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 15px;
    width: fit-content;
    width: 130px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    padding: 0 10px;
}

.social-links {
    margin-left: 154px;
    margin-top: 48px;
}

.social-links a {
    display: flex;
    align-items: flex-end; /* move items to the RIGHT */
    text-align: right; /* align text to right */
    position: relative;
    z-index: 15;
}
.social-links i {
    color: var(--primary);
    font-size: 1.3rem;
}
.avatars {
    display: flex;
    gap: 0.5rem;
}
.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}
.info-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.info-box p {
    color: #cbd5e1;
    margin-bottom: 2rem;
}
/* ===== STATS SECTION WITH COUNTER (the part you wanted) ===== */
.stats-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem 2rem;
}

.stats-left {
    position: relative;
    padding: 20px;
}

.stats-image {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.stats-badge {
    position: absolute;
    bottom: 104px;
    left: 20px;
    max-width: 520px;
    background: var(--primary);
    color: #000;
    padding: 2.5rem 3rem;
    border-radius: 23px;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.3;
    z-index: 10;
    display: inline-flex;

    /* Animation properties */
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInFromLeft 1s ease-out forwards;
    animation-delay: 0.5s;
}

/* Slide in animation from left to right */
@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stats-badge a {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    color: #000;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.5s ease;
}

.stats-badge a:hover {
    transform: translateX(5px);
}

.stats-badge a::after {
    margin-left: 8px;
    font-size: 1.2rem;
}

.stats-right h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}
.stats-right p {
    color: #444749;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    text-align: justify;
}
.stats-right .highlight {
    color: var(--primary);
    font-weight: 600;
}
.counters {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.counter-item {
    text-align: center;
}
.counter-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.counter-item p {
    color: #020202;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 550;
}
.learn-more {
    margin-top: 2rem;
    background: var(--primary);
    color: #000;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    width: 200px;
}

/*--------------------- Video Modal Styles -------------------*/
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-in-out;
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 900px;
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.video-close:hover,
.video-close:focus {
    color: #bbb;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .video-close {
        top: -35px;
        font-size: 30px;
    }
}
/*------------------------------------------*/


.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card.dark {
    background: #000;
    color: white;
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--neon-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.membership-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
}

.membership-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.membership-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: white;
}

.membership-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-green);
}

.membership-text {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.membership-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.member-avatars {
    display: flex;
    margin-top: 1rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
    background: #ccc;
}

.avatar:first-child {
    margin-left: 0;
}

/*------------------------index 3rd section adjustments-----------------------*/

.why-choose-us {
    padding: 80px 0;
    background-color: #f9fafb;
    max-height: fit-content;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-radius: 40px;
}
.container-fluid {
    padding: 20px 40px;
}

.subtitle {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
}

.left-section {
    padding-right: 40px;
    height: auto;
}

.right-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    width: auto;
}

.feature-box.dark {
    background: #000;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.arrow-circle {
    width: 50px;
    height: 50px;
    border: 3px solid;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.feature-box.dark .arrow-circle {
    border-color: #a3e635;
    color: white;
}

.arrow-circle:hover {
    border-color: #a3e635;
    transform: rotate(45deg);
}

.green-area-arrow-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-left: 10px;
    background-color: #a3e635;
    border: 1px solid #a3e635;
}
.green-area-arrow-circle:hover {
    border-color: #a3e635;
    transform: rotate(45deg);
}

.button-arrow-icon {
    width: 35px;
    height: 35px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-green);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.newsletter-submit-button:hover .button-arrow-icon {
    transform: rotate(45deg);
}

.us-membership-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-width: fit-content;
    height: auto;
}

.us-membership-box img {
    width: 500px;
    max-height: 350px;
    object-fit: cover;
}

.us-membership-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
}

.us-membership-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #a3e635;
}

.us-membership-label {
    font-size: 1.3rem;
    font-weight: 600;
}

.us-membership-link {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-block;
}

.us-avatars-row {
    display: flex;
    align-items: center;
    padding-right: 40px;
}

.us-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #a3e635;
    margin-right: -15px;
    overflow: hidden;
}

.us-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.row-features {
    display: flex;
    gap: 20px;
}

.row-features > div {
    flex: 1;
}

/*------------------------index 4th section adjustments-----------------------*/

.services-section {
    padding: 3rem 0 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    gap: 4rem;
    align-items: center;
    border-radius: 40px;
    background-color: #ffffff;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--neon-green);
}

.service-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 420px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.7));
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--neon-green);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    align-self: flex-start;
}

.service-icon img {
    width: 32px;
    height: 32px;
}

.service-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: rgba(205, 205, 205, 0.3);
    width: 100%;
    height: auto;
    padding: 5px;
    border-radius: 15px;
}

.service-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    padding: 10px;
}
.service-arrow {
    width: 32px;
    height: 32px;
    background-color: var(--neon-green);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: px solid var(--neon-green);
}
.service-card:hover .service-arrow {
    background-color: var(--neon-green);
    color: #000;
    transform: rotate(45deg);
}

/*------------------------- index 5th section -------------------------------*/

.booking-section {
    padding: 3rem 0 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    gap: 4rem;
    align-items: center;
    border-radius: 40px;
    background-color: #ffffff;
    overflow: hidden;
}

/* Feature Tags Animations */
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.tag {
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    background: white;
    color: #333;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.tag:nth-child(1) {
    animation-delay: 0.1s;
}
.tag:nth-child(2) {
    animation-delay: 0.2s;
}
.tag:nth-child(3) {
    animation-delay: 0.3s;
}
.tag:nth-child(4) {
    animation-delay: 0.4s;
}
.tag:nth-child(5) {
    animation-delay: 0.5s;
}
.tag:nth-child(6) {
    animation-delay: 0.6s;
}
.tag:nth-child(7) {
    animation-delay: 0.7s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tag:hover {
    color: #000;
    transform: translateY(-3px) scale(1.05);
}

.tag.dark {
    background-color: #000;
    color: white;
    border-color: #000;
}

/* Image Animation */
.left-image-container {
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out 0.3s forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.booking-image {
    width: 90%;
    height: 520px;
    object-fit: cover;
    border-radius: 30px;
    transition: transform 0.5s ease;
    flex: auto;
}

.booking-image:hover {
    transform: scale(1.02);
}

/* Right Side Content Animations */
.section-label {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.6s ease-out 0.4s forwards;
}
.section-label-center {
    justify-content: center;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 20px;
    align-items: center;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.6s ease-out 0.4s forwards;
}
.section-label-center::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: var(--neon-green);
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 2s ease-in-out infinite;
}
.section-label::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: var(--neon-green);
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 2s ease-in-out infinite;
}

.center-section-label-center {
    display: flex; /* ✅ REQUIRED */
    justify-content: center;
    align-items: center;

    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 20px;

    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.6s ease-out 0.4s forwards;
}

.center-section-label-center::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: var(--neon-green);
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* CTA Card Animation */
.cta-card {
    background-color: #000;
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: fadeInScale 0.8s ease-out 0.7s forwards;
    transition: transform 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-10px) scale(1.02);
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cta-icon {
    width: 80px;
    height: 80px;
    background-color: var(--neon-green);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cta-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    text-align: justify;
}

/* Benefits Section Animation */
.benefits-section {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease-out 0.9s forwards;
}

.benefits-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}

.green-underline {
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.green-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 17px;
    width: 180px; /* line length */
    height: 4px; /* line thickness */
    background: #a3e635; /* green color */
    border-radius: 10px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.6s ease-out forwards;
}

.benefit-item:nth-child(2) {
    animation-delay: 1.1s;
}
.benefit-item:nth-child(3) {
    animation-delay: 1.2s;
}
.benefit-item:nth-child(4) {
    animation-delay: 1.3s;
}
.benefit-item:nth-child(5) {
    animation-delay: 1.4s;
}
.benefit-item:nth-child(6) {
    animation-delay: 1.5s;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-icon {
    width: 35px;
    height: 35px;
    background-color: var(--neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    color: #000;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: rotate(360deg) scale(1.1);
}

.benefit-text {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
    padding-top: 5px;
}

/* -------------------------------------------- 6th Section ---------------------------------------- */

.padel-training-wrapper {
    background-color: #000;
    color: white;
    padding: 3rem 0 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    gap: 4rem;
    align-items: center;
    border-radius: 40px;
    overflow: hidden;
}

/* Top Hero Section */
.training-hero-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 40px;
}

.training-left-content {
    flex: 1;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.training-main-heading {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease-out 0.4s forwards;
}

.training-middle-section {
    flex-shrink: 0;
    opacity: 0;
    animation: scaleInAnimation 0.8s ease-out 0.6s forwards;
}

@keyframes scaleInAnimation {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.circular-player-photo {
    width: 270px;
    height: 270px;
    object-fit: cover;
    border-radius: 50%;
}

.training-right-content {
    flex: 1;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease-out 0.8s forwards;
}

.program-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 25px;
}

.programs-cta-button {
    background-color: var(--neon-green);
    color: #000;
    border: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.programs-cta-button:hover {
    background-color: #b3e600;
    transform: translateY(-3px);
}

.cta-arrow-icon {
    width: 35px;
    height: 35px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-green);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.programs-cta-button:hover .cta-arrow-icon {
    transform: rotate(45deg);
}

/* Stats Section */
.academy-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 10px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #333;
}

.academy-stat-box {
    opacity: 0;
    animation: fadeSlideUp 0.6s ease-out forwards;
}

.academy-stat-box:nth-child(1) {
    animation-delay: 1s;
}
.academy-stat-box:nth-child(2) {
    animation-delay: 1.2s;
}
.academy-stat-box:nth-child(3) {
    animation-delay: 1.4s;
}

.stat-large-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--neon-green);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-heading-text {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.stat-info-text {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.6;
}

/* Image & Services Section */
.bottom-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.training-photo-wrapper {
    opacity: 0;
    animation: slideFromLeft 0.8s ease-out 1.6s forwards;
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.large-training-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 25px;
    transition: transform 0.5s ease;
}

.large-training-image:hover {
    transform: scale(1.02);
}

/* Services List */
.programs-list-container {
    opacity: 0;
    animation: slideFromRight 0.8s ease-out 1.8s forwards;
}

@keyframes slideFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.program-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 0;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.program-list-item:hover {
    padding-left: 15px;
    border-bottom-color: var(--neon-green);
}

.program-bullet-point {
    width: 12px;
    height: 12px;
    background-color: var(--neon-green);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.program-list-item:hover .program-bullet-point {
    transform: scale(1.5);
}

.program-name-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

/*------------------------------------------------------- 7th Section - Tournaments -& Events -------------------------------------- */

.tournaments-wrapper {
    padding: 3rem 0 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    gap: 4rem;
    align-items: center;
    border-radius: 40px;
    background-color: #ffffff;
    overflow: hidden;
}

/* Header Section */
.tournaments-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Event Cards */
.event-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    min-height: 350px;
    transition: transform 0.3s ease;
    cursor: pointer;
    margin-bottom: 20px;
}

.event-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

/* Event Tags */
.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: white;
}

.event-tag {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    border: 1px solid rgb(255, 255, 255);
}

/* Event Content */
.event-content-bottom {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: auto;
}

.event-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.event-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.event-detail-icon {
    width: 20px;
    height: 20px;
    color: var(--neon-green);
}
/* Large CTA Card */
.cta-event-card {
    background-color: #000;
    border-radius: 25px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 350px;
    transition: transform 0.3s ease;
    cursor: pointer;
    gap: 10px;
    margin-bottom: 10px;
}

.cta-content {
    flex-grow: 1;
    padding: 40px;
}

.cta-heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-image-section {
    padding: 10px;
    width: 100%;
    height: auto;

    overflow: hidden;
}

.cta-image-section img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Green Card Variant */

.event-card.green-variant .event-title,
.event-card.green-variant .event-description,
.event-card.green-variant .event-detail-item {
    color: #ffffff;
}

.event-card.green-variant .event-tag {
    background-color: rgba(0, 0, 0, 0.15);
    border-color: rgb(255, 255, 255);
    color: #ffffff;
}

/* -------------------------- 8th section---------------------------- */

.community-section {
    padding: 40px 0px 60px 0px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}
.community-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    transition: transform 0.4s ease;
}
.community-card:hover {
    transform: translateY(-12px);
}
.badge-community {
    background: var(--neon-green);
    color: #000;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 200px;
    width: 300px;
    margin-bottom: 450px;
    margin-left: 324px;
}

.badge-community span p {
    font-size: 1.2rem;
    font-weight: 800;
}
.icon-box {
    width: 70px;
    height: 70px;
    background: var(--neon-green);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.8rem;
}
.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* ------------------ 9 section----------------------------- */
.reviews-wrapper {
    position: relative;
    padding: 80px 20px;
    background: #ffffff;
    overflow: hidden;
}

.map-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1400px;
    height: 80%;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.map-background img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
}

/* Content Container */
.content-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section */
.header-section {
    text-align: center;
    margin-bottom: 60px;
}

.badge-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 15px;
    animation: fadeSlideDown 0.8s ease-out;
}

.badge-label::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: var(--neon-green);
    border-radius: 50%;
    animation: pulse-animate 2s ease-in-out infinite;
}

@keyframes pulse-animate {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Member Avatars */
.member-avatars-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

.member-photo {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    animation: floating-motion 6s ease-in-out infinite;
}

.member-photo:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.member-photo:nth-child(2) {
    top: 50%;
    left: 3%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.member-photo:nth-child(3) {
    bottom: 15%;
    left: 8%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.member-photo:nth-child(4) {
    top: 8%;
    right: 6%;
    animation-delay: 1.5s;
    animation-duration: 6.5s;
}

.member-photo:nth-child(5) {
    top: 45%;
    right: 4%;
    animation-delay: 0.5s;
}

.member-photo:nth-child(6) {
    bottom: 18%;
    right: 7%;
    animation-delay: 2.5s;
    animation-duration: 7.5s;
}

/* Decorative Elements */
.dots-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.lime-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--neon-green);
    border-radius: 50%;
    opacity: 0.5;
    animation: scale-pulse 3s ease-in-out infinite;
}

/* Testimonial Card Area */
.testimonial-display {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.review-card {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2px);
    width: fit-content;
    margin-bottom: 2rem;
    border-radius: 30px;
    padding: 60px 50px;
}

@keyframes scaleSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(40px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.testimonial-quote {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #1e293b;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    transition: opacity 0.5s ease;
}

.author-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--neon-green);
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 5px 0;
}

.author-info p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

/* Navigation Controls */
.control-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    animation: fadeSlideUp 1s ease-out 0.6s both;
}

.arrow-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #000;
    color: var(--neon-green);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.arrow-button:hover {
    background-color: var(--neon-green);
    color: #000;
    transform: scale(1.1);
}

.arrow-button:active {
    transform: scale(0.95);
}

/* Pagination */
.dots-pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
    animation: fadeSlideUp 1s ease-out 0.8s both;
}

.page-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-dot.is-active {
    background-color: var(--neon-green);
    width: 40px;
    border-radius: 6px;
}

.page-dot:hover {
    background-color: #94a3b8;
}

/* --------------------------------setion 10-----------------------------*/

.join-container {
    padding: 20px 20px 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Green Card */
.lime-membership-card {
    background: var(--neon-green);
    border-radius: 40px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    animation: slideInLeft 1s ease-out;
    height: 600px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Decorative Background Shapes */
.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.15;
}

.shape-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
}

.shape-circle-1 {
    width: 7px;
    height: 70px;
    top: -50px;
    right: -50px;
}

.shape-circle-2 {
    width: 70px;
    height: 70px;
    bottom: -30px;
    left: 50px;
}

.shape-circle-3 {
    width: 70px;
    height: 70px;
    top: 50%;
    right: 20%;
}

.main-title-new {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #000;
    position: relative;
    z-index: 1;
}
/* Benefits List */
.perks-list {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    font-size: 30px;
    font-weight: normal;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    animation: fadeInUp 0.6s ease-out backwards;
}

.perk-item:nth-child(1) {
    animation-delay: 0.2s;
}
.perk-item:nth-child(2) {
    animation-delay: 0.3s;
}
.perk-item:nth-child(3) {
    animation-delay: 0.4s;
}
.perk-item:nth-child(4) {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.check-icon {
    width: 35px;
    height: 35px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon i {
    color: var(--neon-green);
    font-size: 1rem;
}

/* Sign Up Button */
.signup-button-wrapper {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease-out 0.6s backwards;
}

/* Black Card */
.dark-info-card {
    background: #000;
    border-radius: 40px;
    padding: 50px;
    color: #fff;
    height: 600px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.info-description {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 500;
    flex-grow: 1;
}

/* Tags Section */
.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.info-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.info-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Image Section */
.photo-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 300px;
    margin-top: auto;
}

.membership-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-container:hover .membership-photo {
    transform: scale(1.05);
}

.photo-overlay-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    color: #fff;
}

.members-count {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.access-info {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/*------------------------------------- section 11 ------------------------------------------*/
.articles-wrapper {
    padding: 20px 20px 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
}

/* Header Area */
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 3px solid var(--neon-green);
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Blog Cards */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.post-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 450px;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: fadeInUp 0.8s ease-out backwards;
}

.post-item:nth-child(1) {
    animation-delay: 0.2s;
}
.post-item:nth-child(2) {
    animation-delay: 0.4s;
}
.post-item:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.post-item:hover {
    transform: translateY(-10px);
}

.post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-item:hover .post-image {
    transform: scale(1.1);
}

.content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        transparent 100%
    );
    color: #fff;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(163, 230, 53, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(163, 230, 53, 0.3);
}

.meta-icon {
    color: var(--neon-green);
    font-size: 0.9rem;
}

.post-heading {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: #fff;
}


/* =================================================
           HEADER & NAVBAR
        ================================================= */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: padding 0.3s ease, background 0.3s ease;

        }

        header.scrolled {
            padding: 12px 5%;
            background: rgba(0, 0, 0, 0.9);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.5px;
            transition: transform 0.3s ease;
            text-decoration: none;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo span {
            color: white;
        }

        /* =================================================
           DESKTOP NAVIGATION (1024px and above)
        ================================================= */
        @media (min-width: 1024px) {
            .mobile-menu-toggle {
                display: none !important;
            }

            header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: padding 0.3s ease, background 0.3s ease;

        }


        .hero-content {
        grid-template-columns: 1fr 1fr;
        max-width: 1280px;
        margin-top: 90px;
        gap: 3.5rem;
        height: auto;
        max-height: 190vh;
        padding-bottom: 30px;
        padding-top: 30px;
        margin-top: 100px !important;
    }

            nav {
                position: static;
                display: flex;
                flex-direction: row;
                align-items: center;
                gap: 2.5rem;
                background: transparent;
                padding: 0;
                height: auto;
                width: auto;
            }

            nav a {
                color: rgba(255, 255, 255, 0.9);
                text-decoration: none;
                font-weight: 500;
                font-size: 0.95rem;
                padding: 0.5rem 0;
                border: none;
                position: relative;
                transition: color 0.3s ease;
                letter-spacing: 0.3px;
            }

            /* Underline effect on hover */
            nav a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0;
                height: 2px;
                background: var(--primary);
                transition: width 0.3s ease;
            }

            nav a:hover {
                color: #fff;
            }

            nav a:hover::after {
                width: 100%;
            }

            /* Active/current page indicator */
            nav a.active {
                color: var(--primary);
            }

            nav a.active::after {
                width: 100%;
            }

            .join-btn {
                background: var(--primary);
                color: #000;
                padding: 0.75rem 2rem;
                border-radius: 50px;
                font-weight: 700;
                font-size: 0.95rem;
                transition: all 0.3s ease;
            }

            .join-btn::after {
                display: none;
            }

            .join-btn:hover {
                transform: translateY(-2px);
                color: #000;
                background: #bef264;
            }

            .mobile-menu-overlay {
                display: none !important;
            }
        }

        /* =================================================
           MOBILE NAVIGATION (Below 1024px)
        ================================================= */
        @media (max-width: 1023px) {
            .mobile-menu-toggle {
                display: flex;
                flex-direction: column;
                justify-content: space-around;
                width: 30px;
                height: 26px;
                background: none;
                border: none;
                cursor: pointer;
                z-index: 1001;
                padding: 0;
            }

            .mobile-menu-toggle span {
                width: 100%;
                height: 3px;
                background: #fff;
                display: block;
                border-radius: 2px;
                transition: all 0.3s ease;
            }

            .mobile-menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(7px, 7px);
            }
            .mobile-menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            .mobile-menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }

            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                max-width: 320px;
                height: 100vh;
                background: rgba(0, 0, 0, 0.98);
                backdrop-filter: blur(20px);
                padding: 80px 25px 25px;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 0;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1000;
                overflow-y: auto;
                border-left: 1px solid rgba(255, 255, 255, 0.1);
            }

            nav.active {
                right: 0;
            }

            nav a {
                color: rgba(255, 255, 255, 0.9);
                text-decoration: none;
                width: 100%;
                padding: 16px 15px;
                border-radius: 8px;
                font-weight: 500;
                font-size: 1.05rem;
                transition: all 0.3s ease;
                letter-spacing: 0.3px;
                margin-bottom: 8px;
                display: block;
            }

            nav a:hover {
                color: #fff;
                background: rgba(255, 255, 255, 0.08);
                padding-left: 20px;
            }

            nav a.active {
                color: var(--primary);
                background: rgba(163, 230, 53, 0.1);
                border-left: 3px solid var(--primary);
                padding-left: 20px;
            }

            .join-btn {
                background: var(--primary);
                color: #000;
                padding: 16px 0;
                border-radius: 12px;
                font-weight: 700;
                margin-top: 20px;
                width: 100%;
                text-align: center;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                font-size: 1.05rem;
                transition: all 0.3s ease;
            }

            .join-btn:hover {
                transform: translateY(-2px);
                background: #bef264;
            }

            .mobile-menu-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.7);
                backdrop-filter: blur(4px);
                display: none;
                z-index: 999;
                transition: opacity 0.3s ease;
            }

            .mobile-menu-overlay.active {
                display: block;
                animation: fadeIn 0.3s ease;
            }

            @keyframes fadeIn {
                from { opacity: 0; }
                to { opacity: 1; }
            }
        }

        /* Tablet optimization */
        @media (min-width: 768px) and (max-width: 1023px) {
            nav {
                max-width: 350px;
            }

            nav a {
                font-size: 1.1rem;
            }
        }

