/* common css */
:root{
    --primary: #6a5cff;
    --gradient: linear-gradient(135deg, #6a5cff, #7c5cff);
    --white: #fff;
    --black: #000;
    --dark: #0f0b2e;
    --card: #140f3c;
    --light: #666;
    --lightWhite: #f1f1f1;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{overflow-x: hidden;}
html{scroll-behavior: smooth;}
body::-webkit-scrollbar{width: 10px;}
body::-webkit-scrollbar-thumb{
    background: var(--primary);
    border-radius: 10px;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero & Header */
/* header */
.heroOuter{
    background: url(images/banner.webp);
    background-size: 100%;
    padding: 10px 0;
    color: var(--white);
}

.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    margin: 20px;
}

.navbar.fixed{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: var(--white);
    background-size: 100%;
    box-shadow: var(--shadow);
    animation: slideDown 0.3s ease;
    margin: 0px;
    border-radius: 0px;
    color: var(--primary);
    padding: 15px 150px;
}

.navbar.fixed a{color: var(--dark);}
.logo{font-weight: 700; font-size: 22px; display: flex; align-items: center; gap: 10px;}
.logo-image{height: 40px; width: auto; object-fit: contain; display: block; filter: brightness(0) invert(1); transition: filter 0.3s ease;}
.logo-image.dark{filter: none;}
.logo-text{color: var(--white); font-size: 20px; font-weight: 700; letter-spacing: 0.5px; transition: color 0.3s ease;}
.logo-text.dark{color: var(--primary);}
.footer-logo-image{filter: none;}
.footer-logo-text{color: var(--primary);}
.nav-links{
    display: flex;
    gap: 25px;
}
.nav-links a{
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
}

.btnPrimary{
    background: var(--white);
    color: var(--black);
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    margin-top: 20px;
    font-size: 16px;
    transition: 0.3s ease-in-out;
    border: 2px solid var(--primary);
}

.btnPrimary:hover{
    background: var(--gradient);
    color: var(--white);
    border: 2px solid var(--white);
}

.hamburger{
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger span{
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 4px 0;
}

/* hero */
.hero{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 10px;
    flex-wrap: wrap;
}

.left{
    max-width: 650px;
}

.subTitle{
    background: rgba(255, 255, 255, 0.08);
    padding: 5px 10px;
    display: inline-block;
    border-radius: 10px;
}

.left h1{
    font-size: 62px;
    margin: 20px 0;
    line-height: 1.2;
    font-weight: 900;
}

.counter{
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.counter div{
    font-size: 36px;
    text-align: center;
    width: 150px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 30px;
}

.counterNum{
    margin-bottom: -20px;
    border: none!important;
}

#c1, #c2, #c3{
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 0px;
}

.counter small{
    font-size: 15px;
    font-weight: 500;
}

.right{
    position: relative;
}

.heroImage{
    width: 580px;
    text-align: center;
    margin: -50px;
    margin-bottom: -94px;
    z-index: 999;
}

.img-rotate{
    width: 80px!important;
    display: block;
    position: absolute;
    top: 66px;
    right: -11px;
    transform: rotate(30deg);
    transform-origin: center center;
    animation: spin 6s linear infinite;
}
@keyframes spin{
    from{transform: rotate(0deg);}
    to{transform: rotate(360deg);}
}

.instructor-card{
    position: absolute;
    bottom: 0px;
    left: 90px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    bottom: -50px;
    color: var(--black);
    align-items: left;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow);
    z-index: 3;
    animation: moveLR 1.5s ease-in-out infinite alternate;
}
@keyframes moveLR{
    0%{transform: translateX(0);}
    100%{transform: translateX(20px);}
}

.avatars img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-right: -10px;
}

.circle-container{
    position: absolute;
    top: 81px;
    left: 128px;
    width: 450px;
    height: 450px; 
}

.circle{
    position: absolute;
    top: 0;
    left: -200px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, #544fb6 30%, #ffffff17 100%);
    opacity: 0.6;
    animation: breathe 3s ease-in-out infinite;
}

.circle:nth-child(2){
    width: 180px;
    height: 180px;
    top: -15px;
    left: -215px;
    animation-delay: 0.5s;
}

.circle:nth-child(3){
    width: 210px;
    height: 210px;
    top: -30px;
    left: -230px;
    animation-delay: 1s;
}
@keyframes breathe{
    0%,
    100%{transform: scale(1); opacity: 0.2;}
    50%{transform: scale(1.1); opacity: 0.7;}
}

/* about section */
.aboutSection{
    padding: 120px 20px;
    background: url(images/back2.png);
}

.aboutOuter{
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.aboutLeft{
    flex: 1;
    position: relative;
    min-width: 300px;
}

.aboutLeft .img1{
    width: 100%;
    border-radius: 10px;
}

.badge{
    position: absolute;
    top: 10%;
    left: 55%;
    transform: translate(-50%, -50%);
    background: url(images/banner.webp);
    background-size: 100%;
    color: var(--white);
    padding: 20px;
    border-radius: 8px;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    gap: 20px;
    animation: moveLR 1.5s ease-in-out infinite alternate;
}

.badge div{padding-top: 3px;}
.badge img{vertical-align: middle; width: 50px;}
.badge span{display:block; font-size: 14px; font-weight: 400;}
.aboutRight{
    flex: 1;
    min-width: 300px;
}

.small-title{
    color: var(--primary);
    font-weight: 300;
    margin-bottom: 10px;
}

.heading{
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
}

.heading span{
    color: var(--primary);
}

.desc{
    color: var(--light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.features{
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature{
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature img{
    width: 90px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list{
    margin: 20px 0;
}
.list li{
    list-style: none;
    color: var(--light);
    margin-bottom: 10px;
    font-size: 14px;
}
.list li::before{
    content: '✓';
    color: var(--white);
    margin-right: 10px;
    padding: 3px 5px;
    border-radius: 2px;
    background: var(--gradient);
}

.btnSecondary{
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 14px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: 0.3s ease-in-out;
}
.btnSecondary:hover{
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

/* What We Offer Section */
.whatWeOffer{
    padding: 120px 20px;
    background: url(images/vr.png), var(--dark);
    background-size: 100%;
}

.sectionHeading{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 160px;
    flex-direction: row;
}

.sectionHeadingRight{
    max-width: 400px;
    color: var(--white);
    padding-top: 40px;
    opacity: 0.7;
}

.whatWeOfferCards{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.whatweofferCard{
    background: url(images/back2.png), var(--white);
    padding: 40px 20px;
    width: 200px;
    padding-bottom: 20px;
    text-align: center;
    position:relative;
    border-radius: 10px;
    transition: .3s;
}

.whatweofferCard:hover{
    transform: translateY(-10px);
}

.icon{
    width: 80px;
    height: 80px;
    background: url(images/banner.webp);
    background-size: 200px;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid var(--primary);
    font-size: 28px;
}

.icon img{
    width: 45px;
}

.whatweofferCard h3{margin-top: 50px;margin-bottom: 10px;}
.whatweofferCard p{
    color: var(--light);
    font-size: 14px;
}

/* cta section */
.cta-section{
    padding: 120px 20px;
    background: url(images/back2.png);
    color: var(--white);
}

.ctacontainer{
    background: url(images/banner.webp);
    border-radius: 10px;
    background-size: 100%;
    max-width: 1200px;
    padding: 70px 50px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.ctaLeft{
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 5;
    min-width: 300px;
}

.circle-img{
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.2);
}
.circle-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content h1{
    font-size: 40px;
    margin-bottom: 20px;
}

.contentList{
    list-style: none;
}

.contentList li{
    margin-bottom: 12px;
    position: relative;
    padding-left: 35px;
    line-height: 21px;
}

.contentList li::before{
    content: '✓';
    position: absolute;
    left: 0;
    top: -4px;
    color: var(--primary);
    background: var(--white);
    padding: 3px 6px;
}

.ctaRight{
    flex: 1;
}

/* why choose section */

.whyChooseSection{
    padding: 120px 20px;
    background: url(images/banner.webp);
    background-size: 100%;
    padding-bottom: 0px;
    color: var(--white);
}

.whyChooseOuter{
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.whyChooseLeft{
    flex: 1;
    min-width: 300px;
}

.boxes{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.box{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--white);
    border-radius: 8px;
    color: var(--black);
}

.box span{
    background: var(--primary);
    color: var(--white);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.boxList{margin: 20px 0;}
.boxList li{
    list-style: none;
    margin-bottom: 10px;
    color: var(--white);
}

.boxList li::before{
    content: "✓";
    color: var(--white);
    margin-right: 10px;
}

.whyChooseRight{
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
}

.whyChooseRight img{
    width: 100%;
    max-width: 600px;
    margin-bottom: -4px;
}

/* testimonial section */
.testimonial{
    padding: 80px 6%;
    background: url(images/back2.png), var(--white);
}

.testimonial-wrap{
    display: flex;
    gap: 50px;
    align-items: center;
}

.testimonial-left{flex: 1;}
.review-box{
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.review-box img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.stars{
    color: orange;
    font-size: 18px;
}

.review-text{
    color: var(--light);
    font-weight: 600;
}         

.nav{display: flex; gap: 15px;}
.nav button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    border: none;
    cursor: pointer;
}

.nav button .bx{
    font-size: 25px;
    margin-top: 5px;
}

.prev, .next{
    background: var(--primary);
    color: var(--white);
}

.testimonial-right{
    flex: 1.8;
    overflow: hidden;
}

.swiper{
    padding: 30px 10px;
}

.testiCard{
    background: var(--primary);
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.profile{
    position: absolute;
    left: 37px;
    top: 40px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
}

.profile img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote{
    position: absolute;
    right: 30px;
    top: 0px;
    font-size: 130px;
    color: var(--white);
    font-family: fantasy;
}

.testiCard h4{
    margin-left: 75px;
    font-size: 20px;
    color: var(--white);
}
.testiCard span{
    margin-left: 75px;
    color: var(--lightWhite);
    font-size: 12px;
}

.testiCard p{
    margin-top: 20px;
    color: var(--lightWhite);
    line-height: 1.6;
}

.testiCard .stars{
    margin-left: 75px;
    margin-bottom: 0px;
}

/* pricing section */
.pricing{
    padding: 90px 0;
    background: url(images/vr.png), var(--gradient);
    color: var(--white);
}

.common-header{
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2{
    font-size: 36px;
    margin: 10px 0;
}

.pricing-header p{
    font-size: 14px;
    margin-bottom: 25px;
}

.save{
    color: var(--blue);
    font-weight: 600;
}

.toggle{
    display: inline-flex;
    background: #f1f1f163;
    padding: 5px;
    border-radius: 30px;
}

.toggle button{
    padding: 8px 20px;
    border: none;
    background: transparent;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
}

.toggle button.active{
    background: var(--white);
    color: var(--primary);
}

.pricing-grid{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.price-card{
    flex: 1 1 calc(33.333% - 30px);
    background: var(--white);
    padding: 40px 30px;
    color: var(--black);
    border-radius: 15px;
    transition: 0.3s ease;
}

.price-card button{
    width: 100%;
}

.price-card.active{
    transform: scale(1.06)!important;
    border: 2px solid var(--blue);
}

.price-card h3{
    font-size: 20px;
    margin-bottom: 15px;
}
.price-card h1{
    font-size: 50px;
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 15px;
}
.price-card h1 span{
    font-size: 14px;
}
.desc{
    font-size: 14px;
    margin-bottom: 20px;
}
.price-card hr{
    margin: 20px 0;
    border: none;
    border-top: 1px solid #eee;
}
.price-card ul{
    list-style: none;
    margin-bottom: 25px;
}
.price-card ul li{
    margin-bottom: 12px;
    font-size: 14px;
}
.price-card ul li i{
  color: var(--white);
  background: var(--primary);
  border-radius: 50%;
  padding: 3px;
  font-size: 18px;
  margin-right: 8px;
}

.disabled{
    color: #c4c4c4;
}
.disabled i{
    background: #c4c4c4!important;
}

/* contact section */

.contactSection{
    padding: 120px 20px;
    background: url(images/back2.png);
}

.contactOuter{
    display: flex;
    gap:40px;
    align-items: center;
    justify-content: space-between;
}
.contactLeft{flex: 1;}
.info-box{
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 15px;
    background: var(--white);
}

.info-box i{
    background: var(--primary);
    color: var(--white);
    padding: 12px;
    border-radius: 10px;
    font-size: 20px;
}

.contact-img{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 260px;
}

.contactRight{
    flex: 1;
    background: var(--white);
    padding: 30px;
    margin-top: 100px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-row{
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group{
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label{
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea{
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
}

textarea{
    resize: none;
    height: 120px;
}

/* blog section */
.blogSection{
    padding: 120px 20px;
    background: url(images/banner.webp);
    background-size: 100%;
}

.header{
    text-align: center;
    margin-bottom: 40px;
}

.blog-wrapper{
    display: flex;
    gap: 25px;
}

.blog-card{
    flex: 1;
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    transition: 0.3s;
}

.blog-card:hover{
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.blog-img{
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.date{
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 15px 18px;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.blog-content{
    padding: 40px 20px 25px;
}

.blog-content h3{
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}
/* FOR NUMSHU */


/* footer */
.footer{
    padding-top: 100px;
    background: url(images/back2.png);
    position: relative;
    overflow: hidden;
}

.newsletter{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.newsletter h2{
    font-size: 36px;
    line-height: 1.4;
}

.news-input{display: flex; gap: 15px;}
.news-input input{
    padding: 15px 20px;
    border: none;
    outline: none;
    border-radius: 8px;
    background: var(--lightWhite);
}

.news-input input::placeholder{color: var(--light);}
.footer-content{
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.footer-col{flex: 1;}
.footer-col h3{margin-bottom: 20px;}
.footer-col ul{list-style: none;}
.footer-col ul li{
    margin-bottom: 10px;
    color: var(--light);
    font-size: 14px;
    cursor: pointer;
    transform: 0.3s;
}

.footer-col ul li:hover{
    color: var(--primary);
}

.info{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--light);
}

.info i{
    background: var(--primary);
    padding: 10px;
    border-radius: 8px;
    color: var(--white);
}

.social{display: flex; gap: 10px;}
.social i{
    background: var(--primary);
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--white);
    transition: 0.3s;
}

.social i:hover{
    background: var(--primary);
}

.footer-bottom{
    padding: 10px;
    background: var(--gradient);
    text-align: center;
    color: var(--white);
    margin-top: 50px;
}

.footer-scroll{
    position:absolute;
    background: var(--primary);
    font-size: 40px;
    width: 54px;
    text-align: center;
    height: 50px;
    border-radius: 11px;
    color: var(--white);
    bottom: 53px;
    right: 42px;
}

#scrollTop .bx{
    color: var(--white);
    margin-top: 6px;
}

/* responsive screen */
@media(max-width:768px){
    .nav-links{
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--primary);
        flex-direction: column;
        text-align: center;
        display: none;
    }
    .nav-links.active{
        display: flex;
        z-index: 9999;
        background: var(--primary);
        padding: 20px;
    }
    .navbar.fixed{position: relative;}
    .hamburger{display: flex;}
    .heroOuter{background-size: cover;}
    .hero{flex-direction: column; text-align: center;}
    .left h1{font-size: 30px;}
    .right img{margin-top: 40px;}
    .review{position: static; margin-top: 20px;}
    .counter{
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .counter div{
        border: none;
    }
    .heroImage{width: 100%;}
    .aboutOuter{flex-direction: column;}
    .aboutLeft .img1{width: 100%;}
    .badge{left: 50%; top: 50%;}
    .heading{font-size: 32px;}
    .sectionHeading{
        flex-direction: column;
        gap: 20px;
    }
    .whatWeOfferCards{justify-content: center;}
    .whatWeOfferCard{margin-bottom: 60px; width: 100%;}
    .ctaLeft{flex-direction: column;}
    .content h1{font-size: 28px;}
    .whyChooseOuter{flex-direction: column;}
    .pricing-grid{padding: 20px;}
    .price-card.active{transform: scale(1);}
    .testimonial-wrap{flex-direction: column;}
    .testimonial-right{width: 100%;}
    .price-card{flex: 1 1 100%;}
    .contactOuter{flex-direction: column;}
    .form-row{flex-direction: column;}
    .blog-wrapper{flex-wrap: wrap;}
    .blog-card{flex: 1 1 100%;}
    .footer{padding: 25px;}
    .newsletter{flex-direction: column; align-items: flex-start;}
    .footer-content{flex-wrap: wrap;}
    .news-input{flex-direction: column; width: 100%;}
    .news-input input{width: 100%;}
    .footer-col{flex: 1 1 100%;}
    .newsletter h2{font-size: 26px;}
    .footer-scroll{bottom: 80px;}
}