*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Poppins,sans-serif;
    }
    
    html{
    scroll-behavior:smooth;
    }
    
    body{
    
    background:#060606;
    color:white;
    
    }
    
    /* NAVBAR */
    
    .navbar{
        position:fixed;
        top:0;
        left:0;
        width:100%;
        padding:18px 8%;
        display:flex;
        justify-content:space-between;
        align-items:center;
        background:rgba(0,0,0,.75);
        backdrop-filter:blur(15px);
        z-index:9999;
        }
    
    .logo{
    
    font-size:24px;
    
    font-weight:700;
    
    color:#FFD700;
    
    }
    

    /* ==========================
MOBILE MENU
========================== */

.menu-btn{

display:none;

cursor:pointer;

font-size:28px;

color:#FFD700;

}

@media (max-width:768px){

    .menu-btn{
        display:block;
        z-index:1001;
    }
    
    .nav-links{
        position:fixed;
        top:0;
        right:-100%;
        width:280px;
        height:100vh;
        background:#090909;
    
        display:flex;
        flex-direction:column;
    
        justify-content:flex-start;   /* changed */
        align-items:flex-start;       /* changed */
    
        padding:100px 35px 40px;      /* changed */
    
        gap:28px;
    
        transition:.4s ease;
    
        box-shadow:-5px 0 20px rgba(0,0,0,.5);
    
        z-index:1000;
    }
    
    .nav-links.show{
        right:0;
    }
    
    .nav-links li{
        list-style:none;
        width:100%;
    }
    
    .nav-links a{
        display:block;
        width:100%;
    
        font-size:22px;
        font-weight:600;
    
        color:white;
        text-decoration:none;
    
        transition:.3s;
    }
    
    .nav-links a:hover{
        color:#FFD700;
        padding-left:10px;
    }
    
    }
  
    
    /* HERO */
    
    .hero{
        min-height:100vh;
        padding-top:90px;
    
    background:
    
    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
    
    url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1600");
    
    background-size:cover;
    
    background-position:center;
    
    display:flex;
    
    justify-content:center;
    
    align-items:center;
    
    text-align:center;
    
    padding:20px;
    
    }
    
    .hero-content h3{
    
    color:#ff2d2d;
    
    letter-spacing:3px;
    
    }
    
    .hero-content h1{
    
    font-size:55px;
    
    margin:20px 0;
    
    color:#FFD700;
    
    }
    
    .hero-content p{
    
    max-width:650px;
    
    margin:auto;
    
    line-height:1.8;
    
    color:#ddd;
    
    }
    
    .hero-buttons{
    
    margin-top:35px;
    
    display:flex;
    
    justify-content:center;
    
    gap:20px;
    
    flex-wrap:wrap;
    
    }
    
    .join-btn{
    
    padding:15px 35px;
    
    background:#FFD700;
    
    color:black;
    
    text-decoration:none;
    
    font-weight:700;
    
    border-radius:40px;
    
    }
    
    .call-btn{
    
    padding:15px 35px;
    
    border:2px solid #ff2d2d;
    
    color:white;
    
    text-decoration:none;
    
    border-radius:40px;
    
    }
    
    .join-btn:hover{
    
    transform:scale(1.05);
    
    transition:.3s;
    
    }
    
    .call-btn:hover{
    
    background:#ff2d2d;
    
    transition:.3s;
    
    }
    
    /* ABOUT */
    
    .about{
    
    padding:80px 20px;
    
    text-align:center;
    
    }
    
    .about h2{
    
    font-size:40px;
    
    color:#FFD700;
    
    margin-bottom:25px;
    
    }
    
    .about p{
    
    max-width:800px;
    
    margin:auto;
    
    color:#ccc;
    
    line-height:1.8;
    
    }
    
    .features{
    
    display:grid;
    
    grid-template-columns:repeat(3,1fr);
    
    gap:20px;
    
    margin-top:50px;
    
    }
    
    .box{
    
    background:#111;
    
    padding:35px;
    
    border-radius:15px;
    
    transition:.3s;
    
    border:1px solid #222;
    
    }
    
    .box:hover{
    
    transform:translateY(-10px);
    
    border-color:#FFD700;
    
    }
    
    .box i{
    
    font-size:40px;
    
    color:#ff2d2d;
    
    margin-bottom:15px;
    
    }
    
    /* MOBILE */
    
    @media(max-width:768px){
    
    
    
    .menu-btn{
    
    display:block;
    
    }
    
    .hero-content h1{
    
    font-size:38px;
    
    }
    
    .features{
    
    grid-template-columns:1fr;
    
    }
    
    .about h2{
    
    font-size:30px;
    
    }
    
    }


    /*=========================
FACILITIES
=========================*/

.facilities{

    padding:90px 20px;
    
    background:#0b0b0b;
    
    }
    
    .facilities h2{
    
    text-align:center;
    
    font-size:38px;
    
    color:#FFD700;
    
    margin-bottom:50px;
    
    }
    
    .facility-grid{
    
    display:grid;
    
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    
    gap:25px;
    
    }
    
    .facility-card{
    
    background:#111;
    
    padding:35px;
    
    border-radius:18px;
    
    text-align:center;
    
    border:1px solid #222;
    
    transition:.4s;
    
    }
    
    .facility-card:hover{
    
    transform:translateY(-12px);
    
    border-color:#FFD700;
    
    box-shadow:0 0 25px rgba(255,215,0,.2);
    
    }
    
    .facility-card i{
    
    font-size:45px;
    
    color:#ff2d2d;
    
    margin-bottom:20px;
    
    }
    
    .facility-card h3{
    
    margin-bottom:15px;
    
    }
    
    .facility-card p{
    
    color:#aaa;
    
    line-height:1.7;
    
    }
    
    /*=========================
    PLANS
    =========================*/
    
    .plans{
    
    padding:100px 20px;
    
    }
    
    .plans h2{
    
    text-align:center;
    
    font-size:38px;
    
    color:#FFD700;
    
    margin-bottom:50px;
    
    }
    
    .plan-grid{
    
    display:grid;
    
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    
    gap:30px;
    
    }
    
    .plan-card{
    
    background:#111;
    
    border-radius:20px;
    
    padding:40px;
    
    text-align:center;
    
    border:1px solid #222;
    
    transition:.4s;
    
    position:relative;
    
    }
    
    .plan-card:hover{
    
    transform:translateY(-10px);
    
    box-shadow:0 0 30px rgba(255,215,0,.25);
    
    }
    
    .popular{
    
    border:2px solid #FFD700;
    
    }
    
    .popular span{
    
    position:absolute;
    
    top:15px;
    
    right:15px;
    
    background:#ff2d2d;
    
    padding:6px 14px;
    
    border-radius:30px;
    
    font-size:12px;
    
    font-weight:600;
    
    }
    
    .plan-card h3{
    
    font-size:28px;
    
    }
    
    .plan-card h1{
    
    font-size:55px;
    
    margin:20px 0;
    
    color:#FFD700;
    
    }
    
    .plan-card ul{
    
    list-style:none;
    
    margin:25px 0;
    
    }
    
    .plan-card li{
    
    margin:15px 0;
    
    color:#bbb;
    
    }
    
    .plan-card a{
    
    display:inline-block;
    
    padding:14px 35px;
    
    background:#FFD700;
    
    color:black;
    
    font-weight:700;
    
    text-decoration:none;
    
    border-radius:50px;
    
    }
    /*=========================
    MOBILE
    =========================*/
    
    @media(max-width:768px){
    
    .facilities h2,
    .plans h2,
    
    
    .plan-card h1{
    
    font-size:45px;
    
    }
    
    
    
    }


    /*=====================
STATS
======================*/

.stats{

    padding:80px 20px;
    
    display:grid;
    
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    
    gap:25px;
    
    background:linear-gradient(90deg,#111,#1a1a1a);
    
    text-align:center;
    
    }
    
    .stat h1{
    
    font-size:50px;
    
    color:#FFD700;
    
    }
    
    .stat p{
    
    color:#ccc;
    
    margin-top:10px;
    
    }
    
    /*=====================
    GALLERY
    ======================*/
    
    .gallery{
    
    padding:100px 20px;
    
    }
    
    .gallery h2{
    
    text-align:center;
    
    font-size:40px;
    
    color:#FFD700;
    
    margin-bottom:45px;
    
    }
    
    .gallery-grid{
    
    display:grid;
    
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    
    gap:18px;
    
    }
    
    .gallery-grid img{
    
    width:100%;
    
    height:250px;
    
    object-fit:cover;
    
    border-radius:15px;
    
    transition:.4s;
    
    cursor:pointer;
    
    }
    
    .gallery-grid img:hover{
    
    transform:scale(1.05);
    
    }
    
    /*=====================
    TESTIMONIALS
    ======================*/
    
    .testimonials{
    
    padding:100px 20px;
    
    background:#0b0b0b;
    
    }
    
    .testimonials h2{
    
    text-align:center;
    
    font-size:40px;
    
    color:#FFD700;
    
    margin-bottom:50px;
    
    }
    
    .review-grid{
    
    display:grid;
    
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    
    gap:25px;
    
    }
    
    .review-card{
    
    background:#111;
    
    padding:35px;
    
    border-radius:18px;
    
    border:1px solid #222;
    
    transition:.4s;
    
    font-size:18px;
    
    }
    
    .review-card:hover{
    
    border-color:#FFD700;
    
    transform:translateY(-10px);
    
    }
    
    .review-card p{
    
    margin:20px 0;
    
    color:#ccc;
    
    line-height:1.8;
    
    }
    
    .review-card h3{
    
    color:#ff2d2d;
    
    }
    
    /*=====================
    VIDEO
    ======================*/
    
    .video-section{
    
    padding:100px 20px;
    
    }
    
    .video-section h2{
    
    text-align:center;
    
    font-size:40px;
    
    margin-bottom:45px;
    
    color:#FFD700;
    
    }
    
    .video-box{
    
    max-width:900px;
    
    margin:auto;
    
    }
    
    .video-box iframe{
    
    width:100%;
    
    height:500px;
    
    border:none;
    
    border-radius:18px;
    
    }
    
    /*=====================
    MOBILE
    ======================*/
    
    @media(max-width:768px){
    
    .gallery h2,
    
    .video-section h2,
    
    .testimonials h2{
    
    font-size:30px;
    
    }
    
    .video-box iframe{
    
    height:220px;
    
    }
    
    .stat h1{
    
    font-size:38px;
    
    }
    
    }

    /* CONTACT */

.contact{

    padding:100px 20px;
    
    }
    
    .contact h2{
    
    text-align:center;
    
    color:#FFD700;
    
    font-size:40px;
    
    margin-bottom:50px;
    
    }
    
    .contact-container{
    
    display:grid;
    
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    
    gap:40px;
    
    align-items:center;
    
    }
    
    .contact-info{
    
    background:#111;
    
    padding:40px;
    
    border-radius:20px;
    
    }
    
    .contact-info p{
    
    margin:18px 0;
    
    color:#ccc;
    
    }
    
    .map iframe{
    
    width:100%;
    
    height:400px;
    
    border:none;
    
    border-radius:20px;
    
    }
    
    /* FOOTER */
    
    footer{
    
    padding:60px 20px;
    
    text-align:center;
    
    background:#080808;
    
    border-top:1px solid #222;
    
    }
    
    footer h3{
    
    font-size:32px;
    
    color:#FFD700;
    
    }
    
    footer p{
    
    margin-top:15px;
    
    color:#999;
    
    }
    
    .socials{
    
    margin:30px 0;
    
    }
    
    .socials i{
    
    font-size:28px;
    
    margin:0 15px;
    
    color:#FFD700;
    
    cursor:pointer;
    
    transition:.3s;
    
    }
    
    .socials i:hover{
    
    color:#ff2d2d;
    
    }
    
    /* FLOATING BUTTONS */
    
    .whatsapp{
        position:fixed;
        right:20px;
        bottom:20px;
        width:65px;
        height:65px;
        background:#25D366;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        color:#fff;
        font-size:30px;
        text-decoration:none;
        box-shadow:0 10px 25px rgba(37,211,102,.45);
        transition:.3s ease;
        z-index:9999;
    }
    
    .whatsapp:hover{
        transform:scale(1.12);
        box-shadow:0 15px 35px rgba(37,211,102,.6);
    }
    
    /* MOBILE */
    
    @media(max-width:768px){
    
    .contact h2{
    
    font-size:30px;
    
    }
    
    .contact-container{
    
    grid-template-columns:1fr;
    
    }
    
    .map iframe{

        width:100%;
        
        min-height:400px;
        
        border-radius:20px;
        
        }
    
    }