/* ================= HEADER ================= */

.header-section{position:absolute;width:100%;top:0;left:0;z-index:100;padding:20px 0;}
.logo h3{font-weight:700;color:#fff;}
.logo span{color:var(--primary-color);}
.logo img {
    width: 80px;
}

.main-menu ul{display:flex;justify-content:center;gap:35px;list-style:none;margin:0;padding:0;}
.main-menu a{text-decoration:none;color:var(--white);font-size:15px;font-weight:500;}
.header-right{display:flex;justify-content:flex-end;align-items:center;gap:15px;}

/* =========================
   MENU BUTTON
========================= */
.menu-toggle{
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}




/* =========================
   SIDEBAR (RIGHT SLIDE)
========================= */
.mobile-sidebar{
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: #111;
    padding: 30px;

    z-index: 9999; /* always above overlay */

    transform: translateX(100%);
    transition: transform 0.35s ease;

    pointer-events: auto;
}

/* ACTIVE */
.mobile-sidebar.active{
    transform: translateX(0);
}


/* =========================
   SIDEBAR HEADER
========================= */
.sidebar-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.close-sidebar{
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}


/* =========================
   MOBILE MENU
========================= */
.mobile-menu ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li{
    margin-bottom: 18px;
}

.mobile-menu a{
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.mobile-menu a:hover{
    color: #a855f7; /* optional accent */
}


/* =========================
   OVERLAY
========================= */
.sidebar-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.6);

    z-index: 999; /* below sidebar */

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.3s ease;

    pointer-events: none; /* prevent blocking */
}

/* ACTIVE */
.sidebar-overlay.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* =========================
   PREVENT BODY SCROLL
========================= */
.no-scroll{
    overflow: hidden;
}

@media (max-width:991px){
.desktop-menu{display:none;}
.menu-toggle{display:block;}
.header-section .register-btn{display:none;}
}

/* ================= HERO ================= */

.hero-section{min-height:100vh;display:flex;align-items:center;background:radial-gradient(circle at center,#101014,#050505);}
.video-btn{color:var(--white);text-decoration:none;display:flex;align-items:center;gap:10px;}
.play-icon{width:40px;height:40px;border:1px solid var(--white);border-radius:50%;display:flex;align-items:center;
  justify-content:center;font-size:14px;}
.hero-image-wrapper{position:relative;text-align:center;}
.hero-image{max-width:420px;position:relative;z-index:2;}
.shape-border{position:absolute;width:300px;height:300px;border:4px solid #7b3cff;transform:rotate(45deg);
top:50%;left:50%;transform:translate(-50%,-50%) rotate(45deg);z-index:1;}

/* ================= FEATURE ================= */

.features-section {background: #0b0b0f;}
.feature-card {background-color: #111;border: 1px solid #7b3cff;border-radius: 20px;padding: 25px;text-align: center;
  transition: all 0.3s ease;height: 100%;}
.feature-card:hover {box-shadow: 0 0 20px rgba(123, 60, 255, 0.4);transform: translateY(-5px);}
.feature-card img {border-radius: 14px;margin-bottom: 20px;}
.feature-card p{font-size:16px;line-height:1.7;color:var(--text-color);}

@media (max-width: 767px) {
  .feature-card {padding: 20px 15px;}
}

/* ================= ABOUT ================= */

.about-section{background:#0b0f1a;position:relative;}
.about-image-wrapper{position:relative;text-align:center;}
.about-image{position:relative;z-index:2;max-width:420px;}
.about-gradient-frame{position:absolute;width:300px;height:420px;border-radius:20px;background:linear-gradient(45deg,#ff00cc,#7b3cff,#00d4ff);
top:50%;left:50%;transform:translate(-50%,-50%);z-index:1;opacity:.6;}
.about-highlight{border-left:4px solid var(--primary-color);padding-left:15px;margin-bottom:20px;}

@media (max-width:991px){
.about-image{max-width:300px;margin-bottom:40px;}
.about-gradient-frame{width:220px;height:320px;}
}

/* =================== SERVICE =================== */

.services-section{background:#050505;}
.service-card{background:#0c0f16;border:1px solid rgba(255,255,255,0.08);border-radius:20px;padding:40px;height:100%;
transition:0.3s;position:relative;}
.service-card:hover{transform:translateY(-8px);border-color:#7b3cff;}
.service-card-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px;}
.service-icon{width:60px;height:60px;display:flex;align-items:center;justify-content:center;background:#1a1f2a;border-radius:12px;font-size:24px;padding: 5px;}
.service-number{font-size:40px;font-weight:700;background:linear-gradient(45deg,#ff00cc,#7b3cff,#00d4ff);-webkit-background-clip:text;
  color:transparent;}

.service-details-section {background: linear-gradient(135deg, #050505 0%, #0c0f16 50%, #050505 100%);} 
.service-details-content{background:#0c0f16;padding:40px;border-radius:20px;border:1px solid rgba(255,255,255,0.06);}
.service-details-content .heading{margin-bottom:15px;color: var(--white);}
.service-details-content .text{color:#cfcfcf;line-height:1.8;}
.service-features{padding-top:25px;border-top:1px solid rgba(255,255,255,0.08);}
.feature-title{font-size:20px;margin-bottom:15px;}
.service-features ul{list-style:none;padding:0;}
.service-features li{margin-bottom:12px;padding-left:28px;position:relative;color:#d0d0d0;}
.service-features li::before{content:"";position:absolute;left:0;top:7px;width:8px;height:8px;
    border-radius:50%;background:var(--primary-color);}

.service-process{margin-top:40px;padding-top:25px;border-top:1px solid rgba(255,255,255,0.08);}
.process-box{background:#111;padding:25px 20px;border-radius:14px;text-align:center;border:1px solid rgba(255,255,255,0.05);transition:0.3s;}
.process-box:hover{transform:translateY(-5px);border-color:var(--primary-color);}
.process-box span{font-size:26px;font-weight:700;color:var(--primary-color);display:block;margin-bottom:10px;}
.process-box p{color:#ccc;font-size:14px;}

.why-choose{margin-top:40px;padding-top:25px;border-top:1px solid rgba(255,255,255,0.08);}
.why-choose .text{color:#c0c0c0;}

.service-sidebar{background:#0c0f16;padding:35px 30px;border-radius:20px;border:1px solid rgba(255,255,255,0.06);position:sticky;top:20px;}
.service-sidebar h4{margin-bottom:20px;font-size:20px;}
.service-sidebar ul{list-style:none;padding:0;margin:0;}
.service-sidebar li{margin-bottom:12px;}
.service-sidebar a{color:#fff;text-decoration:none;font-size:15px;transition:0.3s;display:block;}
.service-sidebar a:hover{color:var(--primary-color);}

/* =================== CTA SECTION =================== */

.cta-section{position: relative;padding: 100px 0;background: linear-gradient(135deg, #0c0f16, #050505);overflow: hidden;}
.cta-section::before{content:"";position:absolute;width:400px;height:400px;top:-120px;left:-120px;
    background: radial-gradient(circle, rgba(123,60,255,0.25), transparent);}
.cta-section::after{content:"";position:absolute;width:400px;height:400px;bottom:-120px;right:-120px;
    background: radial-gradient(circle, rgba(0,212,255,0.15), transparent);}
.cta-section .container{position: relative;z-index: 2;}
.cta-section .heading{font-size:42px;margin-bottom:15px;}
.cta-section .text{max-width:600px;margin:0 auto 25px;color:#bdbdbd;font-size:16px;}


/* =========================
   PORTFOLIO SECTION
========================= */

.portfolio-section{background: linear-gradient(135deg, #050505, #0c0f16);}
.portfolio-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    height: 250px;
}

.portfolio-card img{
    width:100%;
    transition:0.4s;
}


/* OVERLAY */

.portfolio-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:20px;
    background:linear-gradient(transparent, rgba(0,0,0,0.9));
    color:#fff;
    transition:0.3s;
}


/* CATEGORY */

.portfolio-category{
    font-size:13px;
    color:var(--primary-color);
    display:block;
    margin-bottom:5px;
}


/* TITLE */

.portfolio-title{
    font-size:18px;
}


/* HOVER EFFECT */

.portfolio-card:hover img{
    transform:scale(1.1);
}

.portfolio-card:hover .portfolio-overlay{
    background:linear-gradient(transparent, rgba(0,0,0,1));
}
.portfolio-category{
    display:inline-block;
    font-size:12px;
    color:#fff;
    background:var(--primary-color);
    padding:5px 12px;
    border-radius:20px;
    margin-bottom:8px;
    text-decoration:none;
}

.portfolio-category:hover{
    opacity:0.9;
}

/* =================== EXTRA =================== */

.dance-style-section{background:#0b0f1a;position:relative;}

.dance-row{margin-top:80px;}
.style-image-wrapper{position:relative;text-align:center;}
.style-image{position:relative;z-index:2;max-width:420px;}
.style-gradient-frame{position:absolute;width:260px;height:360px;background:linear-gradient(45deg,#ff00cc,#7b3cff,#00d4ff);
  border-radius:20px;top:50%;left:50%;transform:translate(-50%,-50%);opacity:.7;z-index:1;}

@media (max-width:991px){
.style-image{max-width:280px;margin-top:30px;margin-bottom:20px;}
}

/* =================== GALLERY =================== */

.gallery-section{background:#050505;}
.cg-tabs {display: none;}

/* =================== TESTIMONIAL =================== */

.testimonial-section{background:#050505;position:relative;}
.testimonial-slider-wrapper{display:flex;align-items:center;justify-content:center;gap:40px;margin-top:60px;}
.testimonial-content{max-width:750px;margin:auto;}
.testimonial-avatars{display:flex;justify-content:center;align-items:center;gap:15px;margin-bottom:30px;}
.avatar{border-radius:50%;object-fit:cover;transition:0.3s;}
.avatar.small{width:55px;height:55px;opacity:0.5;}
.avatar.active{width:90px;height:90px;border:3px solid #7b3cff;}
.testimonial-text{font-size:18px;color:#bdbdbd;line-height:1.7;margin-bottom:25px;}
.testimonial-name{font-size:24px;margin-bottom:10px;color: var(--white);}
.testimonial-role{color:#7b3cff;font-size:14px;}
.testimonial-content p{color:var(--soft-white);}

.testimonial-prev,.testimonial-next{width: 80px;height: 40px;line-height: 40px;border-radius:12px;border:none;  
  background:#1a1f2a;color:var(--white);font-size:20px;cursor:pointer;transition:0.3s;}
.testimonial-prev:hover,.testimonial-next:hover{background:#7b3cff;}

@media(max-width:768px){
.testimonial-prev,.testimonial-next{display:none;}
}

/* =================== CTA =================== */

.signup-section{background-color: #050505;}
.signup-wrapper{background:#0c0f16;padding:80px;border-radius:25px;position:relative;overflow:hidden;}

.register-modal{position:fixed;top:0;left:0;width:100%;height:100%;display:none;align-items:center;justify-content:center;z-index:9999;}
.register-modal.active{display:flex;}
.register-overlay{position:absolute;width:100%;height:100%;background:rgba(0,0,0,0.7);}

.register-modal-content{position:relative;background:#0c0f16;padding:40px;border-radius:15px;width:50%;max-width:90%;z-index:10;}
.modal-close{position:absolute;top:10px;right:15px;font-size:22px;background:none;border:none;color:var(--white);cursor:pointer;}

.form-group{margin-bottom:0px;}
.form-group input,
.form-group select{width:100%;padding:12px;border-radius:6px;border:1px solid rgba(255,255,255,0.2);background:#111;color:var(--white);}

/* =================== INSTRUCTOR =================== */

.instructor-section{background:#050505;}
.instructor-card{background:#0c0f16;border-radius:20px;padding:20px;border:1px solid rgba(255,255,255,0.08);transition:0.3s;height:100%;overflow:hidden;}
.instructor-card:hover{transform:translateY(-6px);border-color:#7b3cff;}
.instructor-img{border-radius:15px;margin-bottom:20px;}
.instructor-img img{width: 100%;height: 200px;object-fit: cover;border-radius:20px;} 
.instructor-name{font-size:20px;margin-bottom:5px;}
.instructor-role{color:#7b3cff;font-size:14px;margin-bottom:15px;}
.instructor-social{display:flex;justify-content:center;gap:15px;}
.instructor-social a{width:32px;height:32px;display:flex;align-items:center;justify-content:center;border-radius:50%;background:#1a1f2a;
  color:var(--white);font-size:12px;text-decoration:none;transition:0.3s;}
.instructor-social a:hover{background:#7b3cff;}

/* =================== CONTACT =================== */

.contact-section{background:#050505;position:relative;}
.contact-image-wrapper{position:relative;text-align:center;}
.contact-image{position:relative;z-index:2;max-width:420px;}
.contact-gradient-frame{position:absolute;width:280px;height:380px;background:linear-gradient(45deg,#ff00cc,#7b3cff,#00d4ff);
  border-radius:20px;top:50%;left:50%;transform:translate(-50%,-50%);opacity:.7;z-index:1;}
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}
.contact-info-item {
    display: flex;
    gap: 15px;
    align-items: center;
}
.contact-info-item i {
    font-size: 35px;
    color: var(--white);
}
.contact-form{margin-top:30px;}
.contact-form input,
.contact-form select,
.contact-form textarea{
width:100%;padding:14px;margin-bottom:20px;border-radius:10px;border:1px solid rgba(255,255,255,0.15);background:#0c0f16;color:#fff;font-size:14px;}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
outline:none;border-color:#7b3cff;}

@media(max-width:991px){
.contact-image{max-width:300px;margin-bottom:40px;}
.contact-gradient-frame{width:220px;height:300px;}
}

/* =================== BLOG =================== */

.blog-section{background:#050505;}
.blog-card{background:#0c0f16;border-radius:20px;overflow:hidden;padding:20px;border:1px solid rgba(255,255,255,0.08);transition:0.3s;height:100%;}
.blog-card:hover{transform:translateY(-6px);border-color:#7b3cff;}
.blog-img{border-radius:15px;margin-bottom:20px;}
.blog-meta{display:flex;gap:20px;font-size:13px;color:#7b3cff;margin-bottom:12px;}
.blog-title{font-size:20px;margin-bottom:20px;}

/* =========================
   BLOG DETAILS
========================= */

.blog-details-section{
    background:#050505;
}

/* IMAGE */

.blog-details-img{
    border-radius:20px;
    margin-bottom:25px;
}


/* META */

.blog-meta{
    display:flex;
    gap:15px;
    font-size:14px;
    color:#bbb;
}


/* CONTENT */

.blog-content{
    line-height:1.9;
    color:#ccc;
}

.blog-content p{
    margin-bottom:15px;
}


/* SIDEBAR */

.blog-sidebar{
    background:#0c0f16;
    padding:25px;
    border-radius:15px;
    border:1px solid rgba(255,255,255,0.06);
}

.sidebar-box h4{
    margin-bottom:15px;
}

.recent-posts{
    list-style:none;
    padding:0;
}

.recent-posts li{
    margin-bottom:10px;
}

.recent-posts a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
}

.recent-posts a:hover{
    color:var(--primary-color);
}

/* =================== FOOTER =================== */

/* =========================
   FOOTER SECTION
========================= */

.footer-section{
    background: linear-gradient(180deg, #0c0f16, #050505);
    padding: 80px 0 30px;
    position: relative;
}


/* =========================
   BRAND AREA
========================= */

.footer-brand{
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.purple{
    color: var(--primary-color);
}

.footer-brand-box .text{
    font-size: 14px;
    color: #bdbdbd;
    line-height: 1.7;
    margin-bottom: 20px;
}


/* =========================
   SOCIAL ICONS
========================= */

.footer-social a{
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1a1f2a;
    border-radius: 50%;
    margin-right: 8px;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.footer-social a:hover{
    background: var(--primary-color);
    transform: translateY(-3px);
}


/* =========================
   LINKS
========================= */

.footer-links h5,
.footer-contact-box h5{
    font-size: 18px;
    margin-bottom: 18px;
}

/* MENU */

.footer-nav{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li{
    margin-bottom: 10px;
}

.footer-nav a{
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-nav a:hover{
    color: var(--primary-color);
    padding-left: 6px;
}


/* =========================
   CONTACT
========================= */

.footer-contact-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li,.footer-contact-list li a{
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
}

.footer-contact-list span{
    color: var(--primary-color);
    font-size: 16px;
}


/* =========================
   DIVIDER
========================= */

.footer-divider{
    border-color: rgba(255,255,255,0.08);
    margin: 30px 0;
}


/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom .copyright{
    font-size: 14px;
    color: #bbb;
}

/* LEGAL MENU */

.legal-menus{
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.legal-menus li{
    display: inline-block;
}

.legal-menus a{
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.legal-menus a:hover{
    color: var(--primary-color);
}


/* =========================
   SCROLL TOP
========================= */

.scroll-top{
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: none;
    z-index: 999;
    transition: 0.3s;
}

.scroll-top:hover{
    transform: translateY(-3px);
}

.whatsapp-btn{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    gap: 8px;
    font-size: 15px;
    position: fixed;
    bottom: 10px;
    left: 10px;
    background-color: #1b6700;
}
.whatsapp-btn i {
    font-size: 30px;
    color: var(--white);
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .footer-top > div{
        margin-bottom: 30px;
    }

}

@media(max-width:768px){

    .footer-brand-box{
        text-align: center;
    }

    .footer-social{
        text-align: center;
    }

    .footer-links,
    .footer-contact-box{
        text-align: center;
    }

    .footer-contact-list li{
        justify-content: center;
    }

    .legal-menus{
        justify-content: center;
        margin-top: 10px;
    }

}

/* =================== SUB BANNER =================== */

.sub-banner-section{position: relative;padding: 140px 0 100px;background: linear-gradient(135deg, #050505, #0c0f16);overflow: hidden;}
.sub-banner-section::before{content: "";position: absolute;width: 400px;height: 400px;top: -100px;left: -100px;z-index: 1;
    background: radial-gradient(circle, rgba(123,60,255,0.3), transparent);}
.sub-banner-section::after{content: "";position: absolute;width: 400px;height: 400px;bottom: -100px;right: -100px;z-index: 1;
    background: radial-gradient(circle, rgba(0,212,255,0.2), transparent);}
.sub-banner-content{position: relative;z-index: 2;color: #fff;max-width: 700px;margin: auto;}
.sub-banner-tag{color: var(--primary-color);font-size: 14px;letter-spacing: 2px;margin-bottom: 10px;}
.sub-banner-title{margin-bottom: 0;}

@media (max-width: 768px){
.sub-banner-section{padding: 80px 0 60px;}
.sub-banner-title{font-size: 30px;}
.register-modal-content {width: 100%;}
.footer-divider {margin: 0px 0;}
.footer-bottom .copyright {text-align: center;}
.big-heading {font-size: 40px;}
.heading {font-size: 30px;}
.about-gradient-frame,.style-gradient-frame {display:none;}
.services-section .fill-btn {margin-bottom:20px}
.hero-image-wrapper {margin-top: 70px;}
.signup-wrapper{padding: 30px;}
.cg-home .cg-item {height: 200px;}
.logo img {width: 65px;}
.service-details-content {padding: 20px;margin-bottom:20px;}
}

