/* ==========================================================
   VM MASTERCLASS
   GLOBAL THEME
========================================================== */

:root{

    /* Brand Colors */

    --gold:#d4af37;
    --gold-light:#f5d77b;

    --dark:#18110b;
    --brown:#2d1d12;

    --cream:#faf7f0;
    --white:#ffffff;

    --text:#555555;

    --border:#ebe3d3;

    --shadow:0 12px 30px rgba(0,0,0,.08);

    --radius:18px;

}

/* ==========================================================
   RESET
========================================================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins','Hind Siliguri',sans-serif;

    background:var(--cream);

    color:var(--text);

    line-height:1.8;

    overflow-x:hidden;

}

/* Images */

img{

    max-width:100%;

    display:block;

}

/* Links */

a{

    text-decoration:none;

}

/* Section */

section{

    padding:90px 0;

}

/* Headings */

h1,h2,h3,h4,h5{

    color:var(--dark);

    font-weight:700;

}

/* Paragraph */

p{

    color:var(--text);

}

/* Selection */

::selection{

    background:var(--gold);

    color:#000;

}



/* ==========================================================
   NAVBAR
========================================================== */

.custom-navbar{

    position:fixed;

    top:0;
    left:0;
    width:100%;

    z-index:9999;

    padding:14px 0;

    background:rgba(24,17,11,.75);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    transition:all .35s ease;

    border-bottom:1px solid rgba(255,255,255,.08);

}

/* Optional: Add this class with JavaScript when scrolling */
.custom-navbar.scrolled{

    background:rgba(24,17,11,.95);

    padding:10px 0;

    box-shadow:0 10px 30px rgba(0,0,0,.18);

}

/* ==========================
   Logo
========================== */

.navbar-brand{

    display:flex;

    align-items:center;

    color:var(--white);

}

.navbar-brand img{

    height:55px;

    width:auto;

    margin-right:12px;

}

.navbar-brand strong{

    color:var(--gold);

    font-size:18px;

    letter-spacing:.5px;

}

.navbar-brand small{

    color:#ddd;

    font-size:12px;

}

/* ==========================
   Navigation Links
========================== */

.custom-navbar .nav-link{

    color:#fff !important;

    font-weight:500;

    margin-left:18px;

    position:relative;

    transition:.3s;

}

.custom-navbar .nav-link:hover{

    color:var(--gold)!important;

}

/* Gold underline animation */

.custom-navbar .nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.35s;

}

.custom-navbar .nav-link:hover::after{

    width:100%;

}

/* Active menu */

.custom-navbar .nav-link.active{

    color:var(--gold)!important;

}

/* ==========================
   Register Button
========================== */

.btn-register{

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    color:#000;

    font-weight:700;

    padding:12px 28px;

    border-radius:40px;

    transition:.35s;

    border:none;

    box-shadow:0 10px 25px rgba(212,175,55,.35);

}

.btn-register:hover{

    transform:translateY(-3px);

    color:#000;

    box-shadow:0 18px 35px rgba(212,175,55,.45);

}

/* ==========================
   Mobile Menu
========================== */

.navbar-toggler{

    border:none;

    box-shadow:none!important;

}

.navbar-toggler:focus{

    box-shadow:none;

}

.navbar-collapse{

    margin-top:10px;

}

/* ==========================
   Responsive
========================== */

@media(max-width:991px){

    .custom-navbar{

        background:rgba(24,17,11,.97);

    }

    .custom-navbar .nav-link{

        margin-left:0;

        padding:12px 0;

    }

    .btn-register{

        margin-top:15px;

        width:100%;

    }

}










/* ==========================================================
   HERO BANNER
========================================================== */

.hero-banner{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    background:url("vajramunee2.jpeg") center center no-repeat;

    background-size:cover;

}

/* ==============================
   Dark Overlay
============================== */

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.82) 5%,
        rgba(0,0,0,.55) 45%,
        rgba(0,0,0,.35) 100%
    );

    display:flex;

    align-items:center;

}

/* ==============================
   Hero Content
============================== */

.hero-banner .container{

    position:relative;

    z-index:2;

}

.hero-banner h1{

    color:#fff;

    font-size:4rem;

    font-weight:700;

    line-height:1.15;

    margin-bottom:20px;

    text-shadow:0 5px 25px rgba(0,0,0,.5);

}

.hero-banner h2{

    color:var(--gold-light);

    font-size:2rem;

    font-weight:300;

    margin-bottom:25px;

    letter-spacing:1px;

}

.hero-banner p{

    color:#f5f5f5;

    font-size:1.15rem;

    max-width:650px;

    margin:auto;

}

/* ==============================
   Hero Badge
============================== */

.hero-badge{

    display:inline-block;

    padding:10px 28px;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    color:#111;

    font-weight:700;

    letter-spacing:.5px;

    box-shadow:0 8px 25px rgba(212,175,55,.35);

}

/* ==============================
   Buttons
============================== */

.hero-buttons{

    margin-top:40px;

}

.hero-buttons .btn{

    min-width:210px;

    border-radius:50px;

    padding:15px 34px;

    font-size:18px;

    font-weight:600;

    transition:.35s;

}

.hero-buttons .btn-warning{

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    border:none;

    color:#111;

    box-shadow:0 12px 30px rgba(212,175,55,.30);

}

.hero-buttons .btn-warning:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(212,175,55,.45);

}

.hero-buttons .btn-outline-light{

    border:2px solid rgba(255,255,255,.8);

}

.hero-buttons .btn-outline-light:hover{

    background:#fff;

    color:#000;

}

/* ==============================
   Scroll Indicator
============================== */

.scroll-indicator{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    color:#fff;

    animation:bounce 2s infinite;

}

.scroll-indicator i{

    font-size:28px;

}

/* ==============================
   Hero Animation
============================== */

.hero-banner h1,
.hero-banner h2,
.hero-banner p,
.hero-badge,
.hero-buttons{

    animation:fadeUp .9s ease both;

}

.hero-banner h2{

    animation-delay:.2s;

}

.hero-banner p{

    animation-delay:.4s;

}

.hero-buttons{

    animation-delay:.6s;

}

/* ==============================
   Keyframes
============================== */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes bounce{

    0%,20%,50%,80%,100%{

        transform:translate(-50%,0);

    }

    40%{

        transform:translate(-50%,-10px);

    }

    60%{

        transform:translate(-50%,-5px);

    }

}

/* ==============================
   Mobile
============================== */

@media(max-width:991px){

    .hero-banner{

        min-height:700px;

        background-position:center;

    }

    .hero-banner h1{

        font-size:2.6rem;

    }

    .hero-banner h2{

        font-size:1.4rem;

    }

    .hero-banner p{

        font-size:1rem;

    }

    .hero-buttons .btn{

        width:100%;

        margin-bottom:15px;

    }

}

/* ==========================================================
COURSE STATISTICS
========================================================== */

.course-stats{

    background:#fff;

    margin-top:-70px;

    position:relative;

    z-index:20;

}

.stat-card{

    background:#fff;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    transition:.35s;

    box-shadow:var(--shadow);

    border:1px solid var(--border);

    height:100%;

}

.stat-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.stat-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:20px;

}

.stat-icon i{

    font-size:34px;

    color:#111;

}

.stat-card h2{

    color:var(--dark);

    font-size:36px;

    font-weight:700;

    margin-bottom:10px;

}

.stat-card p{

    margin:0;

    color:#777;

    font-size:16px;

}



/* ==========================================================
ABOUT
========================================================== */

.about-section{

    background:#faf7f0;

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:25px;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.experience-box{

    position:absolute;

    right:-20px;

    bottom:40px;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    color:#111;

    padding:25px;

    border-radius:20px;

    text-align:center;

    width:170px;

    box-shadow:0 15px 35px rgba(0,0,0,.20);

}

.experience-box h2{

    font-size:42px;

    margin:0;

}

.section-tag{

    display:inline-block;

    background:#fff;

    color:var(--gold);

    padding:8px 20px;

    border-radius:30px;

    border:1px solid var(--border);

    font-size:14px;

    font-weight:600;

}

.section-title{

    font-size:42px;

    line-height:1.3;

}

.section-text{

    font-size:17px;

    color:#666;

}

.feature-list{

    margin-top:35px;

}

.feature-item{

    margin-bottom:18px;

    font-size:18px;

    display:flex;

    align-items:center;

}

.feature-item i{

    color:var(--gold);

    margin-right:15px;

    font-size:22px;

}

.quote-box{

    background:#fff;

    border-left:5px solid var(--gold);

    padding:30px;

    border-radius:15px;

    box-shadow:var(--shadow);

}

.quote-box i{

    color:var(--gold);

    font-size:30px;

    margin-bottom:15px;

}

.quote-box p{

    font-style:italic;

    font-size:18px;

    margin-bottom:15px;

}

.quote-box strong{

    color:var(--dark);

}



/* ==========================================================
TRUST SECTION
========================================================== */

.trust-section{

    background:#18110b;

    color:#fff;

}

.trust-section .section-title{

    color:#fff;

}

.trust-section .section-text{

    color:#ddd;

}

.trust-card{

    background:#24170f;

    border-radius:20px;

    padding:35px;

    height:100%;

    transition:.35s;

    border:1px solid rgba(212,175,55,.15);

}

.trust-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

    box-shadow:0 20px 40px rgba(0,0,0,.30);

}

.trust-icon{

    width:75px;

    height:75px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.trust-icon i{

    font-size:30px;

    color:#111;

}

.trust-card h4{

    color:#fff;

    margin-bottom:20px;

}

.trust-card p{

    color:#d8d8d8;

}

/* ==========================================================
TIMELINE
========================================================== */

.timeline-section{

    background:#faf7f0;

}

.timeline{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.timeline-item{

    background:#fff;

    padding:30px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow);

}

.timeline-item span{

    width:70px;

    height:70px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    margin-bottom:20px;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    color:#111;

    font-size:28px;

    font-weight:700;

}

.timeline-item h4{

    margin-bottom:15px;

}

@media(max-width:992px){

.timeline{

grid-template-columns:1fr;

}

}



/* ==============================
BENEFITS
============================== */

.benefit-card{

    background:#fff;

    border-radius:18px;

    padding:30px;

    text-align:center;

    height:100%;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.benefit-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.benefit-card i{

    font-size:45px;

    color:#6f42c1;

    margin-bottom:20px;

}

/* ==============================
TRAINER
============================== */

#trainer img{

    border-radius:20px;

}

/* ==========================================================
MASTERCLASS SCHEDULE
========================================================== */

.schedule-section{

    background:#fff;

}

.day-card{

    background:#faf7f0;

    border-radius:22px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

    border:1px solid var(--border);

    height:100%;

}

.day-card:hover{

    transform:translateY(-8px);

}

.day-header{

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    padding:30px;

    text-align:center;

}

.day-header span{

    display:inline-block;

    padding:6px 18px;

    background:#111;

    color:#fff;

    border-radius:30px;

    font-size:13px;

    letter-spacing:1px;

}

.day-header h3{

    margin-top:18px;

    color:#111;

}

.schedule-list{

    list-style:none;

    padding:35px;

    margin:0;

}

.schedule-list li{

    margin-bottom:22px;

    display:flex;

    align-items:center;

    font-size:17px;

}

.schedule-list i{

    color:var(--gold);

    margin-right:15px;

    font-size:20px;

}

/* ==========================================================
WHAT'S INCLUDED
========================================================== */

.included-section{

    background:#18110b;

}

.included-section .section-title{

    color:#fff;

}

.include-card{

    background:#24170f;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:40px 20px;

    text-align:center;

    transition:.35s;

    height:100%;

}

.include-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

}

.include-card i{

    font-size:45px;

    color:var(--gold);

    margin-bottom:25px;

}

.include-card h5{

    color:#fff;

}


/*==========================================
WHO IS THIS COURSE FOR
==========================================*/

.audience-section{

background:#faf7f0;

}

.audience-card{

background:#fff;

padding:40px 30px;

border-radius:20px;

text-align:center;

height:100%;

transition:.35s;

box-shadow:var(--shadow);

}

.audience-card:hover{

transform:translateY(-10px);

}

.audience-card i{

font-size:45px;

color:var(--gold);

margin-bottom:20px;

}

.audience-card h4{

margin-bottom:15px;

}


/*==========================================
TESTIMONIALS
==========================================*/

.testimonial-section{

background:#faf7f0;

}

.testimonial-card{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:var(--shadow);

transition:.35s;

height:100%;

}

.testimonial-card:hover{

transform:translateY(-8px);

}

.stars{

font-size:26px;

color:var(--gold);

margin-bottom:20px;

}

.testimonial-card p{

font-style:italic;

font-size:17px;

min-height:130px;

}

.testimonial-card h5{

margin-bottom:5px;

}

/*==========================================
FAQ
==========================================*/

.faq-section{

background:#fff;

}

.accordion-item{

border:none;

margin-bottom:20px;

border-radius:15px!important;

overflow:hidden;

box-shadow:var(--shadow);

}

.accordion-button{

padding:22px;

font-weight:600;

}

.accordion-button:not(.collapsed){

background:var(--gold);

color:#111;

}

.accordion-button:focus{

box-shadow:none;

}


/* ====================================
Registration
==================================== */

.registration-section{

background:#f8f5ef;

}

.registration-section .card{

border:none;

box-shadow:var(--shadow);

border-radius:22px;

}

.registration-section label{

font-weight:600;

margin-bottom:8px;

}

.registration-section .form-control{

padding:15px;

border-radius:12px;

}

.registration-section button{

padding:18px;

font-size:18px;

font-weight:700;

}





.form-control{

border-radius:12px;

padding:14px;

}

.payment-card{

background:linear-gradient(135deg,#e2136e,#b80056);

color:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.payment-card li{

margin-bottom:10px;

}

.payment-card img{

background:#fff;

padding:15px;

border-radius:15px;

}


/*==========================================
FOOTER
==========================================*/

.footer{

background:#18110b;

color:#ddd;

padding:70px 0 25px;

}

.footer h5{

color:#fff;

margin-bottom:20px;

}

.footer a{

color:#ddd;

text-decoration:none;

transition:.3s;

}

.footer a:hover{

color:var(--gold);

}

.footer i{

color:var(--gold);

margin-right:10px;

width:20px;

}

.footer hr{

border-color:rgba(255,255,255,.10);

margin:40px 0 20px;

}






.process-card{

background:#fff;

border-radius:20px;

padding:35px;

text-align:center;

box-shadow:0 15px 35px rgba(0,0,0,.08);

height:100%;

transition:.3s;

}

.process-card:hover{

transform:translateY(-8px);

}

.process-number{

width:55px;

height:55px;

margin:auto;

background:#d8a74d;

color:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:22px;

font-weight:700;

margin-bottom:20px;

}

.process-icon{

font-size:55px;

color:#d8a74d;

margin-bottom:20px;

}

.qr-card{

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.whatsapp-card{

background:#25D366;

color:#fff;

padding:40px;

border-radius:20px;

height:100%;

}

.whatsapp-card ul{

padding-left:20px;

margin:25px 0;

}

.whatsapp-card li{

margin-bottom:10px;

}


/*====================================
INFO BAR
====================================*/

.info-bar{

background:#ffffff;

padding:25px 0;

box-shadow:0 10px 30px rgba(0,0,0,.05);

margin-top:-40px;

position:relative;

z-index:10;

border-radius:20px;

max-width:1200px;

margin-left:auto;

margin-right:auto;

}

.info-item{

padding:15px;

}

.info-item i{

font-size:34px;

color:#d8a74d;

margin-bottom:12px;

}

.info-item h6{

font-weight:700;

margin-bottom:6px;

}

.info-item p{

margin:0;

color:#666;

}