/* ===== RESET ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
}


/* ===== GLOBAL FIX (IMPORTANT) ===== */
*{
    box-sizing: border-box;
}

html{
    font-size: 16px; /* base for rem */
}






/* ===== NAVBAR ===== */
.navbar{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding: clamp(12px, 2vw, 20px) clamp(15px, 3vw, 40px);
    background:transparent;

    z-index:1000;
}

/* ===== LOGO ===== */
.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width: clamp(110px, 12vw, 155px);
    height: auto;
    object-fit:contain;
    margin-left:-40px  !IMPORTANT;
}

/* ===== NAV LINKS ===== */
.nav-links{
    display:flex;
    align-items:center;
    gap: clamp(10px, 2vw, 25px);

    flex-wrap: nowrap;
}

/* ===== NAV ITEM ===== */
.nav-item{
    color:#fff;
    text-decoration:none;
    font-size: clamp(14px, 1.1vw, 18px);
    font-weight:500;

    display:flex;
    flex-direction:column;
    align-items:center;

    position:relative;
    padding-right: clamp(10px, 1.5vw, 18px);
}

/* ===== SECOND LINE ===== */
.nav-item span{
    font-size: clamp(12px, 0.9vw, 15px);
    color:#fff;
    opacity:0.9;
}

/* ===== VERTICAL DIVIDER ===== */
.nav-item::before{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:25px;
    background:#fff;
}

/* LAST ITEM NO LINE */
.nav-item:last-child::before{
    display:none;
}

/* ===== UNDERLINE HOVER ===== */
.nav-item::after{
    content:"";
    position:absolute;
    bottom:-6px;
    left:0;
    width:0%;
    height:2px;
    background:#fff;
    transition:0.3s ease;
}

.nav-item:hover::after{
    width:100%;
}

/* ===== BUTTON ===== */
.btn-primary{
    background:#FAFBED!important;
    color: #411900 !important;

    padding: clamp(8px, 1vw, 10px) clamp(16px, 2vw, 24px);
    border-radius:30px;

    text-decoration:none;
    font-weight:600;
    border:2px solid #fff;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:8px;

    /* 🔥 MAIN FIX */
    white-space: nowrap;   /* text break nahi hoga */
    flex-wrap: nowrap;     /* icon + text alag line me nahi jayega */
    min-width: fit-content; /* button shrink nahi hoga */

    font-size: clamp(13px, 1vw, 16px);

    transition:all 0.3s ease;
}

/* ICON FIX */
.btn-primary i,
.btn-primary svg{
    flex-shrink: 0;   /* icon compress nahi hoga */
}

/* TEXT FIX */
.btn-primary span{
    display:inline-block;
}

/* BUTTON HOVER */
.btn-primary:hover{
    background:transparent;
    color:#fff;
    transform:scale(1.05);
}

/* ===== RESPONSIVE SAFETY ===== */
@media (max-width: 992px){
    .nav-links{
        gap:12px;
    }

    .nav-item{
        font-size:14px;
    }

    .nav-item span{
        font-size:12px;
    }
}

/* ===== EXTRA ZOOM SAFETY ===== */
@media (max-width: 768px){
    .navbar{
        flex-direction:column;
        gap:10px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }
}
/* ===== HERO ===== */
/* ===== HERO ===== */
.hero {
    width: 100% !important;
    min-height: 90vh !important;
    height: 90vh !important;
    background-image: url('frontend/assets/front-img/banner-img/newbanner.png') !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0px 80px !important;
    margin-top: 0 !important;
    overflow: hidden !important;
}

/* overlay if needed */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15); /* optional */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1{
font-family: 'Playfair Display', serif;
    font-size: 70px;
    font-style: italic;
    color: #fff;
    margin: 10px 0 20px;
    text-align: center;
}

.connect-btn{
    background:#FAFBED !important;
    border:none;
    padding:14px 25px;
    border-radius:6px;
    cursor:pointer;
    color: #411900 !important;
}
/* INITIAL STATE (hidden left) */
.hero-content h1,
.hero-content .connect-btn{
    opacity: 0;
    transform: translateX(-80px);
}

/* ANIMATION TRIGGER */
.hero-content.animate h1{
    animation: slideLeft 1s ease forwards;
}

.hero-content.animate .connect-btn{
    animation: slideLeft 1s ease forwards;
    animation-delay: 0.5s; /* button delay */
}

/* KEYFRAMES */
@keyframes slideLeft{
    0%{
        opacity: 0;
        transform: translateX(-80px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}
.contact-form select{
    width: 100%;
    padding: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;

    font-family: 'Poppins', sans-serif;
    font-size: 14px;

    background: #fff;
    outline: none;

    appearance: none; /* remove default arrow */
    cursor: pointer;
}

/*  */

/* Wrapper */
.course-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 20px;
}

/* Card */
.course-card {
    background: #676846;
    color: #fff;
    border-radius: 10px;
    width: 30%;
    padding: 25px 20px;

    display: flex;
    justify-content: center;   
    align-items: center;      

    text-align: center;        

    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Star */
.star {
    font-size: 20px;
    margin-right: 10px;
}

/* Text container */
.course-text {
    display: flex;
    flex-direction: column;
    align-items: center;  
    justify-content: center;
}

/* Heading */
.course-text h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

/* Paragraph */
.course-text p {
    margin: 5px 0 0;
    font-size: 20px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .course-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .course-card {
        width: 100%;
    }
}

/* ===== TABLET ===== */
@media(max-width:1024px){

    .hero{
        padding:0 40px;
    }

    .hero-content h1{
        font-size:50px;
    }
}

/* ===== MOBILE ===== */
@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#000;
        flex-direction:column;
        padding:20px;
        display:none;
    }

    .nav-links.active{
        display:flex;
    }

    .hero{
        padding:0 20px;
    }

    .hero-content h1{
        font-size:36px;
    }

    .btn-primary{
        display:none;
    }
}


/*  */

/* SECTION */
.about-section{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:60px;
    gap:50px;
    overflow:hidden;
}

/* LEFT CONTENT */
.about-content{
    width:50%;
}

/* RIGHT IMAGE */
/* RIGHT IMAGE */
/* RIGHT IMAGE */
.about-img{
    width: 50%;
    height: 900px !important;
    overflow: hidden; /* extra image hide */
    border-radius: 12px;
}

.about-img img{
    width: 100%;
    height: 100%;
    object-fit: cover; /* full cover without stretch */
    display: block;
    border-radius: 12px;
    
}
/* TEXT */
.about-tag{
    letter-spacing:6px;
    color:#411900;
    font-size:26px;
    font-weight: 500;
     font-family:'Playfair Display', serif;
}

.about-title{
    font-family:'Playfair Display', serif;
    font-size:50px !important;
    font-style:italic;
    color:#411900;

}

.about-text{
    color:#411900;
    font-size:18px;
    line-height:1.8;
    margin-bottom:0px;
    text-align:justify;
}

/* BUTTON */
.about-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#676846;
    color:#fff;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    transition:0.3s;
    margin-top: 20px;
}

.about-btn:hover{
    background:#411900;
}

.about-btn::before{
    content:"✦";
}

/* ================= ANIMATION ================= */

/* initial hidden */
.animate-left,
.animate-right{
    opacity:0;
    transition:all 1s ease;
}

/* left */
.animate-left{
    transform:translateX(-100px);
}

/* right */
.animate-right{
    transform:translateX(100px);
}

/* active */
.show{
    opacity:1;
    transform:translateX(0);
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .about-section{
        flex-direction:column;
        padding:0px 0px !important;
    }

    .about-content,
    .about-img{
        width:100%;
        text-align:center;
    }

    .about-title{
        font-size:40px;
    }

    .about-text{
        font-size:15px;
        padding:0 10px;
    }

    .about-btn{
        width:100%;
        justify-content:center;
    }
}
/*  */
/* SECTION */
.bs-hero{
    background:#fff;
    width:100%;
    padding:20px 0 !important;
    overflow:hidden;
}

/* FLEX */
.bs-hero__container{
    display:flex;
    align-items:center;
    padding:0 70px;
    gap:50px;

    flex-direction: row-reverse; /* 🔥 THIS LINE ADD */
}

/* LEFT IMAGE */
.bs-hero__right{
    width:50%;
}

/* RIGHT CONTENT */
.bs-hero__left{
    width:50%;
}

/* IMAGE */
.bs-hero__image-wrap{
    position:relative;
    height: 500px !important;
    width: 500px !important;
}

.bs-hero__laptop{
    width:100%;
    border-radius:15px;
    transform:scale(1.1);
}

.bs-hero__model{
    position:absolute;
    bottom:-380px;
    left:50%;
    transform:translateX(-50%);
    width:620px;
    height: 600;
    border-radius:10px;
}

/* TITLE */
.bs-hero__title{
    font-family:'Playfair Display', serif;
    font-size:50px !important;
    font-style:italic;
    color:#411900;
}

/* TAGLINE */
.bs-hero__tagline{
    letter-spacing:4px;
    font-size:18px;
    margin:20px 0;
}

/* TEXT */
.bs-hero__course h6{
    font-size:18px;
    font-weight:600;
    color: #411900;
}

.bs-hero__course p{
    font-size:18px;
  color: #411900;
    line-height:1.7;
    text-align: justify;
}

/* LINE */
.bs-hero__line{
    height:1px;
    width:80%;
    background:#ccc;
    margin:15px 0;
}

/* ================= ANIMATION ================= */

/* initial */
.animate-content{
    opacity:0;
    transform:translateX(100px);
}

.animate-image{
    opacity:0;
    transform:translateX(-120px) scale(0.9);
}

/* show */
.show-content{
    opacity:1;
    transform:translateX(0);
    transition:all 1s ease;
}

.show-image{
    opacity:1;
    transform:translateX(0) scale(1);
    transition:all 1.2s ease;
}

/* IMAGE EXTRA EFFECT */
.bs-hero__image-wrap:hover .bs-hero__laptop{
    transform:scale(1.15);
    transition:0.5s;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .bs-hero__container{
        flex-direction:column;
        padding:0 20px;
    }

    .bs-hero__left,
    .bs-hero__right{
        width:100%;
        text-align:center;
    }

    .bs-hero__title{
        font-size:40px;
    }

    .bs-hero__model{
        position:relative;
        bottom:auto;
        margin-top:-60px;
    }
}

/*  */
/* ================= MOBILE VIEW ================= */

@media(max-width:768px){

    .bs-hero{
        padding:60px 0 40px;
        overflow:hidden;
    }

    .bs-hero__container{
        flex-direction:column;
        gap:40px;
        padding:0 20px;
    }

    /* FULL WIDTH */
    .bs-hero__left,
    .bs-hero__right{
        width:100%;
    }

    /* CONTENT */
    .bs-hero__left{
        text-align:center;
        order:2;
    }

    /* IMAGE */
    .bs-hero__right{
        display:flex;
        justify-content:center;
        align-items:center;
        order:1;
    }

    .bs-hero__image-wrap{
        width:100% !important;
        max-width:320px;
        height:320px !important;
        margin:auto;
        position:relative;
    }

    .bs-hero__laptop{
        width:100%;
        border-radius:20px;
        transform:scale(1);
        box-shadow:0 15px 40px rgba(0,0,0,0.15);
    }

    .bs-hero__model{
        width:360px;
        max-width:120%;
        position:absolute;
        bottom:-180px;
        left:50%;
        transform:translateX(-50%);
    }

    /* TITLE */
    .bs-hero__title{
        font-size:42px !important;
        line-height:1.2;
        margin-top:20px;
    }

    /* TAGLINE */
    .bs-hero__tagline{
        font-size:14px;
        letter-spacing:2px;
        margin:15px 0;
    }

    /* TEXT */
    .bs-hero__course h6{
        font-size:18px;
        margin-bottom:10px;
    }

    .bs-hero__course p{
        font-size:15px;
        line-height:1.8;
        text-align:center;
        padding:0 5px;
    }

    /* LINE */
    .bs-hero__line{
        width:100%;
        margin:18px auto;
    }

    /* ANIMATION FIX */
    .animate-content,
    .animate-image{
        transform:none;
    }

    .show-content,
    .show-image{
        transform:none;
    }
}

/* ================= SMALL MOBILE ================= */

@media(max-width:480px){

    .bs-hero{
        padding:50px 0 30px;
    }

    .bs-hero__container{
        padding:0 15px;
    }

    .bs-hero__image-wrap{
        max-width:280px;
        height:280px !important;
    }

    .bs-hero__model{
        width:300px;
        bottom:-140px;
    }

    .bs-hero__title{
        font-size:34px;
    }

    .bs-hero__tagline{
        font-size:12px;
        letter-spacing:1.5px;
    }

    .bs-hero__course h6{
        font-size:16px;
    }

    .bs-hero__course p{
        font-size:14px;
        line-height:1.7;
    }
}

/**/
/* SECTION */
.one-section{
    width:100%;
    background: #f8f8f8;
    padding: 60px 60px;
}

/* CONTAINER */
.one-container{
    display:flex;
    min-height:100vh;

    flex-direction: row-reverse; /* 🔥 ye lagao */
}

/* LEFT IMAGE */
.one-left{
    width:50%;
}

.one-left img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* RIGHT */
.one-right{
    width:50%;

    padding:80px 10px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

/* SMALL TEXT */
.one-small{
    letter-spacing:6px;
    font-size:30px;
    color:#411900;
    margin-bottom:10px;
    font-weight: 500;
}

/* TITLE */
.one-title{
    font-family:'Playfair Display', serif;
    font-style:italic;
    font-size:60px;
    color:#411900;
    margin-bottom:20px;
}

/* SUBTITLE */
.one-sub{
    letter-spacing:4px;
    font-size:20px;
    color:#411900;
    margin-bottom:25px;
}

/* DESC */
.one-desc{
    font-size:18px;
    color:#411900;
    line-height:1.9;
    max-width:580px;
    text-align: justify;
}

/* BUTTONS */
.one-btns{
    margin-top:30px;
    display:flex;
    gap:20px;
}

.btn-red{
       background: #676846;
    color:#fff;
    padding:14px 28px;
    text-decoration:none;
    font-size:14px;
    letter-spacing:1px;
    display:inline-block;
    transition:0.3s;
}

.btn-red:hover{
    background:#411900;
}

@media(max-width:768px){

    .one-section{
        padding: 40px 0;
    }

    .one-container{
        flex-direction:column;
        min-height:auto;
    }

    /* IMAGE */
    .one-left{
        width:100%;
    }

    .one-left img{
        height:300px;
        object-fit:cover;
    }

    /* RIGHT CONTENT */
    .one-right{
        width:100%;
        padding:30px 20px;
        text-align:center;
    }

    /* SMALL TEXT */
    .one-small{
        font-size:14px;
        letter-spacing:3px;
    }

    /* TITLE */
    .one-title{
        font-size:34px;
        line-height:1.2;
    }

    /* SUBTITLE */
    .one-sub{
        font-size:14px;
        letter-spacing:2px;
    }

    /* DESCRIPTION */
    .one-desc{
        font-size:15px;
        line-height:1.7;
        text-align:justify;     /* 👈 justify */
        word-spacing:2px;       /* 👈 word spacing */
        padding:0 10px;         /* 👈 left-right gap */
        margin:auto;
    }

    /* BUTTONS */
    .one-btns{
        flex-direction:column;
        gap:12px;
        margin-top:25px;
    }

    .btn-red{
        width:100%;
        text-align:center;
        padding:12px;
        font-size:13px;
    }
}
/*  */


/* ================= SECTION ================= */
.ts-section{
    padding:40px 0;
    background-image:url('https://thebhavanasingh.com/static/media/Collection.347c598e698985459e53.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    text-align:center;
}

/* ================= HEADER ================= */
.ts-small{
    letter-spacing:6px;
    font-size:26px;
    color:#411900;
    margin-bottom:10px;
}

.ts-title{
    font-family:'Playfair Display',serif;
    font-style:italic;
    font-size:50px;
    color:#411900;
    margin-bottom:20px;
    font-weight:300;
}

.ts-desc{
    font-size:18px;
    color:#411900;
    max-width:900px;
    margin:0 auto 40px;
    line-height:1.7;
    padding:0 15px;
}

/* ================= CARDS ================= */
.ts-cards{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    max-width:1600px;
    margin:auto;
    padding:0 20px;
}

/* ================= CARD ================= */
.ts-card{
    width:100%;
    height:400px;
    position:relative;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.ts-card:hover{
    transform:translateY(-6px);
}

.ts-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* ================= PLAY BUTTON ================= */
.ts-play{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(255,255,255,.95);
    box-shadow:0 5px 15px rgba(0,0,0,.25);
    transition:.3s;
}

.ts-card:hover .ts-play{
    transform:translate(-50%,-50%) scale(1.08);
}

/* ================= LARGE TABLET ================= */
@media (max-width:1200px){

    .ts-cards{
        grid-template-columns:repeat(3,1fr);
    }

    .ts-title{
        font-size:42px;
    }

}

/* ================= TABLET ================= */
@media (max-width:992px){

    .ts-cards{
        grid-template-columns:repeat(2,1fr);
    }

    .ts-card{
        height:350px;
    }

    .ts-title{
        font-size:38px;
    }

    .ts-small{
        font-size:22px;
    }

    .ts-desc{
        font-size:16px;
    }

}

/* ================= MOBILE ================= */
@media (max-width:768px){

    .ts-section{
        padding:30px 0;
    }

    .ts-cards{
        grid-template-columns:1fr;
        gap:18px;
        padding:0 15px;
    }

    .ts-card{
        width:100%;
        height:320px;
    }

    .ts-title{
        font-size:30px !important;
        margin-bottom:15px;
    }

    .ts-small{
        font-size:18px;
        letter-spacing:3px;
    }

    .ts-desc{
        font-size:15px;
        line-height:1.6;
        margin-bottom:25px;
    }

    .ts-play{
        width:50px;
        height:50px;
    }

}

/* ================= SMALL MOBILE ================= */
@media (max-width:480px){

    .ts-section{
        padding:25px 0;
    }

    .ts-cards{
        grid-template-columns:1fr;
        padding:0 12px;
        gap:15px;
    }

    .ts-card{
        width:100%;
        height:260px;
        border-radius:10px;
    }

    .ts-card img{
        border-radius:10px;
    }

    .ts-title{
        font-size:24px !important;
    }

    .ts-small{
        font-size:15px;
        letter-spacing:2px;
    }

    .ts-desc{
        font-size:14px;
        margin-bottom:20px;
    }

    .ts-play{
        width:42px;
        height:42px;
    }

}

/**/

/* ===== MAIN SECTION ===== */
/* ================= SECTION ================= */

.social-connect-section{
    width:100%;

    padding:40px 0;

    background:#ffffff;

    overflow:hidden;
}

/* ================= FULL WIDTH HEADING BOX ================= */

.social-connect-heading-box{
    width:100%;

    background:
    linear-gradient(
    135deg,
    #5f603f,
    #787b4f,
    #4b2a17
    );

    padding:70px 20px;

    text-align:center;

    position:relative;

    overflow:hidden;
}

/* LEFT GLOW */

.social-connect-heading-box::before{
    content:"";

    position:absolute;

    width:350px;
    height:350px;

    background:rgba(255,255,255,0.07);

    border-radius:50%;

    top:-120px;
    left:-120px;

    filter:blur(10px);
}

/* RIGHT GLOW */

.social-connect-heading-box::after{
    content:"";

    position:absolute;

    width:300px;
    height:300px;

    background:rgba(255,255,255,0.05);

    border-radius:50%;

    bottom:-120px;
    right:-120px;

    filter:blur(10px);
}

/* ================= SMALL TEXT ================= */

.social-connect-mini-text{
    display:inline-block;

    font-size:14px;
    letter-spacing:4px;

    color:#f4e7d7;

    margin-bottom:18px;

    position:relative;
    z-index:2;

    font-family:'Poppins', sans-serif;
}

/* ================= MAIN HEADING ================= */

.social-connect-main-heading{
    font-size:90px;

    color:#ffffff;

    font-weight:700;

    line-height:1.1;

    margin:0;

    position:relative;
    z-index:2;

    font-family:'Poppins', sans-serif;

    text-shadow:
    0 5px 20px rgba(0,0,0,0.25);
}

/* UNDERLINE */

.social-connect-main-heading::after{
    content:"";

    display:block;

    width:180px;
    height:4px;

    background:#ffffff;

    margin:24px auto 0;

    border-radius:20px;
}

/* ================= MOBILE VIEW ================= */

@media(max-width:768px){

    .social-connect-section{
        padding:20px 0;
    }

    .social-connect-heading-box{
        padding:50px 15px;
    }

    .social-connect-mini-text{
        font-size:11px;
        letter-spacing:2px;

        margin-bottom:12px;
    }

    .social-connect-main-heading{
        font-size:38px;

        line-height:1.3;
    }

    .social-connect-main-heading::after{
        width:90px;
        margin-top:14px;
    }

    .social-connect-heading-box::before{
        width:180px;
        height:180px;

        top:-70px;
        left:-70px;
    }

    .social-connect-heading-box::after{
        width:160px;
        height:160px;

        bottom:-70px;
        right:-70px;
    }
}
/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-section{
    width:100%;
    overflow:hidden;
    background:#fff;
    padding:20px 0;
    text-align:center;
    font-family:'Poppins', sans-serif;
    box-sizing:border-box;
}


/* =====================================================
   TOP TEXT
===================================================== */

.top-text{
    letter-spacing:6px;
    font-size:24px;
    color:#411900;
    margin-bottom:15px;
    padding:0 15px;
}


/* =====================================================
   INSTAGRAM BANNER
===================================================== */

.insta-banner{
    width:100%;
    overflow:hidden;
    background:#676846;
    padding:20px 10px;
}

.insta-banner h1{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;

    font-size:90px !important;
    font-weight:600;
    color:#fff !important;

    margin-top:-30px;
    word-break:break-word;
}


/* =====================================================
   ICON
===================================================== */

.insta-banner h1 img{
    width:20px;
    height:20px;
    object-fit:contain;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.desc{
    max-width:800px;
    width:100%;

    margin:30px auto;
    padding:0 15px;

    font-size:20px;
    line-height:1.6;
    color:#444;

    box-sizing:border-box;
}


/* =====================================================
   CONTACT TITLE
===================================================== */

.contact-title{
    font-size:58px;
    font-family:"Playfair Display", serif;
    font-style:italic;
    font-weight:100;

    color:#411900;

    margin:40px 0;
    padding:0 15px;
}


/* =====================================================
   CONTACT FORM
===================================================== */

.contact-form{
    width:100%;
    max-width:900px;

    margin:auto;
    padding:0 15px;

    box-sizing:border-box;
}


/* =====================================================
   FORM ROW
===================================================== */

.form-row{
    display:flex;
    gap:20px;

    width:100%;
    margin-bottom:20px;
}

.form-row input{
    flex:1;
    min-width:0;
}


/* =====================================================
   INPUTS / TEXTAREA / SELECT
===================================================== */

.contact-form input,
.contact-form textarea,
.contact-form select{
    width:100%;
    max-width:100%;

    padding:18px;

    border:none;
    outline:none;

    font-size:16px;

    box-sizing:border-box;
}


/* =====================================================
   TEXTAREA
===================================================== */

.contact-form textarea{
    height:120px;
    resize:none;

    margin-bottom:25px;
}


/* =====================================================
   BUTTON
===================================================== */

.contact-form button{
    background:#676846;
    color:#fff;

    padding:15px 40px;

    border:none;
    border-radius:6px;

    font-size:18px;
    cursor:pointer;

    transition:0.3s;
}

.contact-form button:hover{
    background:#411900;
}


/* =====================================================
   MOBILE VIEW
===================================================== */

@media(max-width:768px){

    .contact-section{
        padding:0px 0;
    }

    .top-text{
        font-size:14px;
        letter-spacing:2px;
    }

    .insta-banner{
        padding:18px 12px;
    }

    .insta-banner h1{
        font-size:34px !important;
        line-height:1.3;
        margin-top:0;
    }

    .desc{
        font-size:15px;
        line-height:1.7;
    }

    .contact-title{
        font-size:34px;
        margin:25px 0;
    }

    .form-row{
        flex-direction:column;
        gap:15px;
    }

    .contact-form button{
        width:100%;
    }

}

.courses-banner{
    position:relative;
    width:100%;
    height:550px;
    background:#676846;
    overflow:hidden;
    margin-top:-70px;
}

/* canvas background */
#orbCanvas{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:0;
}

/* text */
.banner-title{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    font-size:50px;
    color:#FAFBED;
    font-weight:700;
    letter-spacing:3px;
    z-index:2;
}
 

/* Title */
.banner-title{
    position:absolute;
    top:30px;
    left:50%;
    transform:translateX(-50%);
    font-size:72px;
    font-weight:500;   /* normal bold remove */
    color:white;
    font-family:Arial, sans-serif; /* Impact hamesha bold dikhta hai */
    letter-spacing:4px;
    z-index:5;
    margin-top:280px;
}

/* Model Image */
.banner-model{
    position:absolute;
    right:30px;
    bottom:0;
    height:200px;
    z-index:5;
}

.banner-model img{
    height:100%;
}

/* Animation */
@keyframes scrollArrows{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}






/* SECTION */

/* Mobile */
/* ================= MOBILE FIX ================= */
@media (max-width:768px){

    .courses-banner{
        height:400px;
        margin-top:-140px;
        padding-top: 200px;
    }

    /* TITLE CENTER PERFECT */
    .banner-title{
        font-size:32px;
        top:50%;
        left:50%;
        transform:translate(-50%, -50%);
        margin-top:0;
        text-align:center;
        letter-spacing:2px;
        width:100%;
    }

    /* MODEL IMAGE FIX */
    .banner-model{
        height:90px;
        right:5px;
        bottom:0;
        opacity:0.9;
    }

    /* ARROWS SIZE + SPEED FIX */
    .arrow-left,
    .arrow-right{
        gap:10px;
    }

    .arrow{
        width:50px;
        height:50px;
    }

    /* ANIMATION SLOW FOR MOBILE (SMOOTH LOOK) */
    .arrow-left{
        animation:leftMoveMobile 2.5s ease-in-out infinite alternate;
    }

    .arrow-right{
        animation:rightMoveMobile 2.5s ease-in-out infinite alternate;
    }

    @keyframes leftMoveMobile{
        from{
            transform:translateX(-20px);
        }
        to{
            transform:translateX(20px);
        }
    }

    @keyframes rightMoveMobile{
        from{
            transform:translateX(20px);
        }
        to{
            transform:translateX(-20px);
        }
    }
}
/*  */

/* Main Section */
.course-section{
    width:100%;
    min-height:100vh;
    display:flex;
    justify-content:space-between;
    align-items:stretch;
    overflow:hidden;
  background-color: #fff;
    padding: 60px 10px;
}

/* LEFT CONTENT */
.course-left{
    width:62%;
    padding:25px 0 40px 80px;
}

/* Heading */
.course-title{
    font-family:'Cormorant Garamond',serif;
    color:#c52c39;
    font-size:64px;
    line-height:0.9;
    font-weight:400;
}

.course-title span{
    font-style:italic;
    font-weight:300;
}

/* Subtitle */
.course-subtitle{
    margin-top:22px;
    color:#c52c39;
    letter-spacing:8px;
    font-size:20px;
    font-weight:400;
}

/* Description */
.course-desc{
    margin-top:28px;
    max-width:650px;
    font-size:20px;
    line-height:1.55;
    color:#5b5b5b;
    font-weight:400;
}

/* Price Box */
.price-box{
    margin-top:40px;
    width:420px;
    background:#f9f7f2;
    padding:18px 22px;
    border-bottom:1px solid #c52c39;
    font-family:'Cormorant Garamond',serif;
    font-size:42px;
    color:#111;
}

.price-box span{
    color:#c52c39;
    font-weight:600;
}

/* Buttons */
.button-group{
    display:flex;
    gap:26px;
    margin-top:32px;
}

.course-btn{
    background:#c80000;
    color:#fff;
    border:none;
    font-size:16px;
    font-weight:600;
    padding:18px 42px;
    border-radius:6px;
    cursor:pointer;
    text-transform:uppercase;
}

/* RIGHT SIDE */
.course-right{
    width:38%;
    position:relative;
    display:flex;
    justify-content:flex-end;
    align-items:flex-end;
    overflow:hidden;
}

/* Vertical Text */
.vertical-text{
    position:absolute;
    left:25px;
    top:53%;
    transform:translateY(-50%) rotate(180deg);
    writing-mode:vertical-rl;
    font-size:92px;
    font-weight:800;
    color:#c80000;
    line-height:0.9;
    font-family:'Poppins',sans-serif;
    letter-spacing:2px;
}

/* Model Image */
.model-image{
    height:110vh;
    max-height:720px;
    object-fit:contain;
    z-index:2;
}

/* Responsive */
@media(max-width:992px){
    .course-section{
        flex-direction:column;
    }

    .course-left,
    .course-right{
        width:100%;
    }

    .course-left{
        padding:30px;
    }

    .course-title{
        font-size:42px;
    }

    .course-desc{
        font-size:17px;
        text-align: justify;
    }

    .vertical-text{
        font-size:50px;
        left:10px;
    }

    .model-image{
        max-height:500px;
        margin:auto;
    }

    .button-group{
        flex-wrap:wrap;
    }
}
/*  */



/*  */


.course-section{
    width:100%;
    min-height:100vh;
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    background:#efefef;
    overflow:hidden;
    padding: 60px 50px;
}

/* LEFT IMAGE */
.left-image{
    width:44%;
    position:relative;
    display:flex;
    align-items:flex-end;
    justify-content:flex-start;
}

.left-image img{
    width:100%;
    height:auto;
    object-fit:contain;
    display:block;
}

/* RIGHT CONTENT */
.right-content{
    width:56%;
    padding:20px 60px 0 40px;
}

/* HEADING */
.main-heading{
    font-family:'Cormorant Garamond',serif;
    color:#b52d35;
    font-size:64px;
    font-style:italic;
    line-height:0.95;
    font-weight:400;
    margin-bottom:25px;
}

.main-heading span{
    font-size:46px;
}

/* SUBTITLE */
.sub-title{
    font-size:18px;
    letter-spacing:10px;
    color:#c72d33;
    font-weight:400;
    margin-bottom:18px;
}

/* DESCRIPTION */
.description{
    max-width:670px;
    font-size:21px;
    line-height:1.6;
    color:#4e5962;
    font-weight:300;
    margin-bottom:38px;
}

/* PRICE BOX */
.price-box{
    width:420px;
    background:#eceae3;
    padding:18px 25px;
    margin-bottom:35px;
}

.price-box .inr{
    font-family:'Cormorant Garamond',serif;
    font-size:42px;
    color:#122748;
}

.price-box .price{
    font-family:'Cormorant Garamond',serif;
    font-size:48px;
    color:#b00000;
    font-weight:600;
}

/* BUTTONS */
.button-group{
    display:flex;
    gap:25px;
}

.btn{
    width:245px;
    height:64px;
    background:#c70000;
    color:#fff;
    border:none;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    text-transform:uppercase;
    letter-spacing:0.5px;
    box-shadow:0 3px 8px rgba(0,0,0,0.15);
}

.btn:hover{
    background:#a90000;
}

/* WHATSAPP ICON */
.whatsapp{
    position:fixed;
    right:28px;
    bottom:190px;
    width:82px;
    height:82px;
    background:#000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.whatsapp img{
    width:58px;
    height:58px;
}

/* RESPONSIVE */
/* RESPONSIVE - TABLET */
@media (max-width: 1100px){
    .course-section{
        flex-direction: column;
        padding: 40px 25px;
    }

    .left-image,
    .right-content{
        width:100%;
    }

    .left-image{
        justify-content:center;
        margin-bottom:30px;
    }

    .right-content{
        padding:0;
        text-align:center;
    }

    .main-heading{
        font-size:42px;
        line-height:1.1;
    }

    .main-heading span{
        font-size:32px;
    }

    .sub-title{
        letter-spacing:6px;
        font-size:16px;
    }

    .description{
        font-size:18px !important;
        margin:0 auto 25px;
    }

    .price-box{
        width:100%;
        max-width:350px;
        margin:0 auto 25px;
        text-align:center;
    }

    .button-group{
        flex-direction:column;
        align-items:center;
    }

    .btn{
        width:100%;
        max-width:280px;
    }
}


/* RESPONSIVE - MOBILE */
@media (max-width: 600px){
    
    .course-section{
        padding:30px 15px;
    }

    .main-heading{
        font-size:32px;
    }

    .main-heading span{
        font-size:24px;
    }

    .sub-title{
        font-size:14px;
        letter-spacing:4px;
    }

    .description{
        font-size:16px;
        line-height:1.5;
    }

    .price-box{
        padding:15px;
    }

    .price-box .inr{
        font-size:28px;
    }

    .price-box .price{
        font-size:32px;
    }

    .btn{
        height:55px;
        font-size:14px;
    }

    /* WhatsApp icon fix */
    .whatsapp{
        width:60px;
        height:60px;
        right:15px;
        bottom:120px;
    }

    .whatsapp img{
        width:35px;
        height:35px;
    }
}
/*  */


.workshop-section{
    width:100%;
    min-height:100vh;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#efefef;
    overflow:hidden;
}

/* LEFT CONTENT */
.left-content{
    width:52%;
    padding:60px 40px 60px 80px;
}

.heading{
    font-family:'Cormorant Garamond',serif;
    font-size:58px;
    font-style:italic;
    color:#c13239;
    font-weight:400;
    margin-bottom:25px;
}

.sub-heading{
    font-size:24px;
    letter-spacing:12px;
    color:#c13239;
    margin-bottom:25px;
    font-weight:400;
}

.description{
    font-size:21px;
    line-height:1.55;
    color:#505964;
    max-width:650px;
    font-weight:300;
    margin-bottom:40px;
}

.price-box{
    width:420px;
    background:#f5f2ea;
    padding:18px 25px;
    margin-bottom:35px;
}

.price-box .inr{
    font-family:'Cormorant Garamond',serif;
    font-size:42px;
    color:#102847;
}

.price-box .price{
    font-family:'Cormorant Garamond',serif;
    font-size:56px;
    color:#b3000f;
    font-weight:600;
}

.buttons{
    display:flex;
    gap:25px;
}

.btn{
    width:245px;
    height:64px;
    background:#c70000;
    border:none;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    text-transform:uppercase;
    box-shadow:0 4px 10px rgba(0,0,0,0.12);
}

.btn:hover{
    background:#a40000;
}

/* RIGHT IMAGE SECTION */
.right-images{
    width:48%;
    position:relative;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* Main image frame */
.main-frame{
    width:70%;
    height:92%;
    background:#f5f2ea;
    position:relative;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    overflow:hidden;
}

.main-frame img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Side standing image */
.side-model{
    position:absolute;
    right:35px;
    top:10px;
    width:210px;
    height:580px;
    z-index:5;
}

.side-model img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Red tape pieces */
.tape{
    position:absolute;
    width:130px;
    height:55px;
    background:#9e140f;
    transform:rotate(-38deg);
    z-index:6;
    opacity:0.95;
}

.tape.top-left{
    top:20px;
    left:20px;
}

.tape.bottom-left{
    bottom:35px;
    left:0;
    transform:rotate(28deg);
}

/* WhatsApp button */
.whatsapp{
    position:fixed;
    right:20px;
    bottom:190px;
    width:84px;
    height:84px;
    background:#000;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999;
}

.whatsapp img{
    width:58px;
    height:58px;
}

/* Mobile Responsive */
@media(max-width:1100px){
    .workshop-section{
        flex-direction:column;
    }

    .left-content,
    .right-images{
        width:100%;
    }

    .left-content{
        padding:40px 25px;
    }

    .heading{
        font-size:42px;
        text-align: center;
    }

    .sub-heading{
        font-size:18px;
        letter-spacing:8px;
    }

    .description{
        font-size:18px;
        text-align: justify;
    }

    .buttons{
        flex-direction:column;
    }

    .right-images{
        height:auto;
        padding:30px 0;
    }

    .main-frame{
        height:600px;
    }

    .side-model{
        width:140px;
        height:400px;
        right:10px;
    }
}
/*  */


/* /////////////////////////////Transform css///////////////////// */

.hero-section{
    width:100%;
    min-height:100vh;
    background:#676846;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
    overflow:hidden;
    margin-top: -140px;
}

.hero-left{
    width:55%;
    padding-left:50px;
    z-index:2;
}

.hero-small{
    font-family:'Cormorant Garamond',serif;
    font-style:italic;
    color:#fff;
    font-size:52px;
    margin-bottom:20px;
}

.hero-title{
    color:#fff;
    font-size:56px;
    font-weight:800;
    letter-spacing:8px;
    line-height:1.2;
    margin-bottom:18px;
    padding-top: 100px;
}

.hero-subtitle{
    color:#fff;
    font-style:italic;
    font-weight:700;
    font-size:48px;
}

.hero-right{
    width:45%;
    height:100vh;
    position:relative;
}

.hero-right img{
    width:100%;
    height:100%;
    object-fit:cover;
}


/*  */
/* ================= TABLET ================= */
@media (max-width: 992px){

    .hero-section{
        flex-direction:column;
        justify-content:center;
        text-align:center;
        margin-top:0;
        padding:50px 25px;
    }

    .hero-left{
        width:100%;
        padding:0;
    }

    .hero-right{
        width:100%;
        height:400px;
        margin-top:30px;
    }

    .hero-right img{
        border-radius:20px;
    }

    .hero-small{
        font-size:38px;
    }

    .hero-title{
        font-size:40px;
        letter-spacing:4px;
    }

    .hero-subtitle{
        font-size:34px;
    }
}


/* ================= MOBILE ================= */
@media (max-width: 600px){

    .hero-section{
        padding:40px 15px;
    }

    /* TEXT */
    .hero-small{
        font-size:26px;
        margin-bottom:10px;
    }

    .hero-title{
        font-size:28px;
        letter-spacing:2px;
        line-height:1.3;
        margin-bottom:10px;
    }

    .hero-subtitle{
        font-size:22px;
    }

    /* IMAGE */
    .hero-right{
        height:260px;
        margin-top:25px;
    }

    .hero-right img{
        border-radius:15px;
    }
}
/*  */
/* ================= WHO SECTION ================= */
.who-section{
    width:100%;
    background:#676846;
    color:#fff;
    position:relative;
    padding-bottom:60px;
}

.who-top{
    padding:50px 70px 20px;
}

.who-heading{
    font-family:'Cormorant Garamond',serif;
    font-style:italic;
    font-size:72px;
    font-weight:400;
    margin-bottom:12px;
}

.who-subtext{
    font-size:22px;
    font-weight:400;
}

/* GRID */
.who-grid-wrapper{
    display:flex;
    width:100%;
    margin-top:30px;
}

.left-grid{
    width:63%;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:55px 20px;
    padding:0 70px;
}

.grid-item{
    text-align:center;
}

.grid-item img{
    width:150px;
    height:150px;
    object-fit:contain;
    margin-bottom:20px;
    filter:brightness(100);
}

.grid-item p{
    font-size:19px;
    line-height:1.45;
    font-weight:400;
}

/* RIGHT SIDE PANEL */
.right-side{
    width:37%;
    position:relative;
    padding-right:40px;
}

.signature{
    font-family:'Cormorant Garamond',serif;
    font-style:italic;
    font-size:82px;
    color:#ff0000;
    text-align:right;
    line-height:0.95;
    margin:30px 30px 40px 0;
    transform:rotate(-10deg);
}

.info-card{
    background:rgba(95,0,0,0.6);
    padding:45px 35px;
    min-height:340px;
}

.info-card h3{
    font-size:28px;
    font-style:italic;
    font-weight:700;
    line-height:1.4;
    margin-bottom:20px;
}

.info-card p{
    font-size:21px;
    line-height:1.7;
    font-weight:400;
}

/* WhatsApp */
.whatsapp{
    position:fixed;
    right:22px;
    bottom:160px;
    width:88px;
    height:88px;
    background:#000;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999;
    box-shadow:0 0 0 2px #fff inset;
}

.whatsapp img{
    width:58px;
    height:58px;
}

/* RESPONSIVE */
@media(max-width:1100px){

.hero-section{
    flex-direction:column;
}

.hero-left,
.hero-right{
    width:100%;
}

.hero-left{
    padding:40px 25px;
}

.hero-title{
    font-size:34px;
    letter-spacing:3px;
}

.hero-small{
    font-size:38px;
}

.hero-subtitle{
    font-size:32px;
}

.hero-right{
    height:auto;
}

.who-grid-wrapper{
    flex-direction:column;
}

.left-grid,
.right-side{
    width:100%;
}

.left-grid{
    grid-template-columns:1fr;
    padding:0 25px;
}

.who-top{
    padding:40px 25px;
}

.who-heading{
    font-size:46px;
}

.signature{
    text-align:center;
    margin:30px 0;
}

.right-side{
    padding:20px;
}

.info-card{
    min-height:auto;
}
}


/*  */


/* MAIN SECTION */
.program-section{
    width:100%;
    height:100vh;
    display:flex;
    overflow:hidden;
}

/* LEFT IMAGE PANEL */
.left-panel{
    width:38%;
        background: #676846;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:flex-end;
    overflow:hidden;
}

/* Black bottom block */
.left-panel::after{
    content:"";
    position:absolute;
    bottom:0;
    right:-45px;
    width:90px;
    height:50%;
    background:#262626;
    z-index:1;
}

/* Background blurred figures */
.blur-figure{
    position:absolute;
    bottom:40px;
    width:150px;
    opacity:0.55;
    filter:blur(3px);
}

.blur1{ left:35px; }
.blur2{ left:115px; opacity:0.65; }
.blur3{ right:110px; opacity:0.65; }
.blur4{ right:25px; opacity:0.55; }

/* Main center figure */
.main-model{
    position:relative;
    z-index:3;
    width:670px;
}

/* RIGHT CONTENT */
.right-panel{
    width:62%;
    background:#efefef;
    padding:70px 90px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

/* Heading */
.heading{
    font-family:'Cormorant Garamond',serif;
    font-size:68px;
    font-style:italic;
    color:#c23a45;
    font-weight:400;
    margin-bottom:25px;
}

/* Paragraph */
.description{
    font-size:24px;
    color:#111;
    line-height:1.6;
    margin-bottom:35px;
    font-weight:400;
}

/* Feature list */
.feature-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:20px;
}

/* Icon box */
.icon-box{
    width:52px;
    height:52px;
    background: #676846;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
}

.icon-box svg{
    width:26px;
    height:26px;
    stroke:white;
    fill:none;
    stroke-width:2;
}

.feature-text{
    font-size:22px;
    color:#111827;
    font-weight:400;
}

/* Responsive */
@media(max-width:1100px){
    .program-section{
        flex-direction:column;
        height:auto;
    }

    .left-panel,
    .right-panel{
        width:100%;
    }

    .left-panel{
        min-height:500px;
    }

    .right-panel{
        padding:40px 25px;
    }

    .heading{
        font-size:42px;
    }

    .description{
        font-size:20px;
    }

    .feature-text{
        font-size:18px;
    }
}
/*  */

/* ===== JOURNEY HERO SECTION ===== */
.journey-hero-section {
    position: relative;
    width: 100%;
    min-height: 300px;
    background: rgb(103, 104, 70)
;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px 55px;
    margin-top: 40px;
}

/* Overlay Soft Glow */
.journey-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.04), transparent 60%);
    z-index: 1;
}

/* Content */
.journey-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

/* Subtitle */
.journey-hero-subtitle {
    color: #d8b8b8;
    font-size: 18px;
    letter-spacing: 8px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* Main Title */
.journey-hero-title {
    font-size: 54px;
    line-height: 1.15;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 14px;
}

/* Description */
.journey-hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: #f2eaea;
    font-family: 'Poppins', sans-serif;
    max-width: 980px;
    margin-bottom: 28px;
}

/* Button */
.journey-hero-btn {
    display: inline-block;
    background: #f3e9e9;
    color: #411900;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 18px 38px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.journey-hero-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .journey-hero-section {
        padding: 35px 30px;
        min-height: auto;
    }

    .journey-hero-title {
        font-size: 38px;
    }

    .journey-hero-description {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .journey-hero-title {
        font-size: 30px;
    }

    .journey-hero-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .journey-hero-subtitle {
        font-size: 13px;
        letter-spacing: 4px;
    }

    .journey-hero-btn {
        font-size: 16px;
        padding: 14px 24px;
    }
}


/*  */

/* ===== UNIQUE PROGRAM SECTION ===== */
/* Sirf top, bottom aur left padding */
.unique-program-section {
    width: 100%;
    background: #f5f4f2;
    padding: 35px 0 20px 50px;
    overflow: hidden;
}

.unique-program-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 560px;
}

/* LEFT SIDE */
.unique-program-left {
    width: 58%;
    padding-top: 10px;
}

.unique-program-title {
    font-size: 64px;
    font-style: italic;
    font-family: "Cormorant Garamond", serif;
    color: #411900;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.1;
}

/* ITEM */
.unique-program-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 34px;
}

/* ICON BOX */
.unique-program-icon-box {
    width: 52px;
    height: 52px;
    background: #676846;
    color: white;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* TEXT */
.unique-program-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #411900;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.unique-program-text p {
    font-size: 18px;
    color: #303846;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* FLEXIBLE MODE */
.unique-program-mode-box {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-top: 12px;
}

.unique-program-mode-left strong,
.unique-program-mode-right strong {
    display: block;
    font-size: 20px;
    margin-bottom: 6px;
    color: #2e3440;
    font-family: 'Poppins', sans-serif;
}

.unique-program-mode-left p,
.unique-program-mode-right p {
    font-size: 17px;
    line-height: 1.6;
    color: #303846;
}

.unique-program-mode-right span {
    font-size: 17px;
    color: #303846;
    font-family: 'Poppins', sans-serif;
}

.unique-program-divider {
    width: 2px;
    height: 95px;
    background: #c74a50;
    transform: skew(-15deg);
    margin-top: 5px;
}

/* RIGHT SIDE IMAGE */
.unique-program-right {
    width: 42%;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.unique-program-right img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    object-fit: contain;
    display: block;
    
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .unique-program-wrapper {
        flex-direction: column;
    }

    .unique-program-left,
    .unique-program-right {
        width: 100%;
    }

    .unique-program-title {
        font-size: 42px;
    }

    .unique-program-right {
        justify-content: center;
        margin-top: 30px;
    }

    .unique-program-mode-box {
        flex-direction: column;
        gap: 20px;
    }

    .unique-program-divider {
        width: 100%;
        height: 2px;
        transform: none;
    }
}

@media (max-width: 768px) {
    .unique-program-section {
        padding: 25px 20px;
    }

    .unique-program-title {
        font-size: 34px;
    }

    .unique-program-text h3 {
        font-size: 20px;
    }

    .unique-program-text p {
        font-size: 16px;
    }

    .unique-program-icon-box {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}
/*  */


.exact-main-wrap{
    width:100%;
    min-height:100vh;
    display:flex;
    overflow:hidden;
}

/* LEFT PANEL */
.exact-left-panel{
    width:50%;
    background:#8b0000;
    color:#fff;
    position:relative;
    padding:55px 60px 40px;
}

.exact-left-title{
    font-family:'Playfair Display',serif;
    font-size:28px;
    font-style:italic;
    font-weight:600;
    margin-bottom:28px;
}

.exact-left-line{
    width:82%;
    height:1px;
    background:rgba(255,255,255,0.5);
    margin-bottom:18px;
    position:relative;
}

.exact-left-line span{
    position:absolute;
    right:-65px;
    top:-13px;
    font-size:16px;
    color:#fff;
}

.exact-left-line span::before{
    content:"⭐";
    margin-right:6px;
    color:#ffd700;
}

.exact-left-list{
    list-style:none;
}

.exact-left-list li{
    font-size:18px;
    line-height:1.8;
    font-weight:400;
    display:flex;
    align-items:flex-start;
    gap:10px;
}

.exact-left-list li::before{
    content:"⭐";
    color:#ffd700;
    font-size:20px;
    line-height:1;
    margin-top:4px;
}

.exact-left-list li:first-child::before{
    content:"";
    margin:0;
}

.exact-enroll-btn{
    display:inline-flex;
    align-items:center;
    gap:14px;
    background:#fff;
    color:#c40000;
    padding:18px 40px;
    border-radius:6px;
    text-decoration:none;
    font-size:18px;
    font-weight:500;
    margin-top:28px;
}

.exact-enroll-btn span{
    font-size:28px;
    line-height:1;
}

.exact-left-bottom-img{
    position:absolute;
    bottom:0;
    right:30px;
    width:260px;
}

.exact-left-bottom-img img{
    width:100%;
    display:block;
}

/* RIGHT PANEL */
.exact-right-panel{
    width:50%;
    background:#f4f4f4;
    position:relative;
    padding:55px 75px;
    overflow:hidden;
}

.exact-right-title{
    font-family:'Playfair Display',serif;
    font-size:28px;
    font-style:italic;
    font-weight:600;
    color:#000;
    margin-bottom:28px;
}

.exact-right-line{
    width:82%;
    height:1px;
    background:#999;
    margin-bottom:18px;
}

.exact-right-list{
    list-style:none;
    position:relative;
    z-index:2;
}

.exact-right-list li{
    font-size:18px;
    line-height:1.8;
    color:#111;
}

.exact-right-list li::before{
    content:"✓ ";
    font-weight:bold;
}

.exact-right-list li:first-child::before{
    content:"";
}

/* RIGHT SIDE MODEL */
.exact-right-model{
    position:absolute;
    right:0;
    top:0;
    height:100%;
    width:42%;
}

.exact-right-model img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

/* Background room image */
.exact-bg-room{
    position:absolute;
    left:0;
    bottom:0;
    width:50%;
    opacity:0.22;
}

.exact-bg-room img{
    width:100%;
    display:block;
}

/* WhatsApp Button */
.exact-whatsapp{
    position:absolute;
    right:35px;
    bottom:180px;
    width:72px;
    height:72px;
    border-radius:50%;
    background:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:5;
}

.exact-whatsapp img{
    width:58px;
    height:58px;
}

/* RESPONSIVE */
@media(max-width:992px){
    .exact-main-wrap{
        flex-direction:column;
    }

    .exact-left-panel,
    .exact-right-panel{
        width:100%;
    }

    .exact-right-model{
        position:relative;
        width:100%;
        height:500px;
        margin-top:20px;
    }

    .exact-left-bottom-img{
        position:relative;
        right:auto;
        margin:20px auto 0;
    }

    .exact-whatsapp{
        bottom:40px;
    }
}
/*  */

.bridal-section-wrap{
    width:100%;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px 40px;
    position:relative;
}

.bridal-section-container{
    width:1400px;
    display:grid;
    grid-template-columns: 470px 1fr;
    gap:120px;
    align-items:center;
}

/* LEFT IMAGE */
.bridal-left-frame{
    background:#676846;
    padding:14px;
    border-radius:24px 24px 24px 24px;
    position:relative;
    overflow:hidden;
}

.bridal-left-frame img{
    width:100%;
    height:600px;
    object-fit:cover;
    display:block;
    border-radius:35px;
    clip-path: polygon(
        0% 4%, 6% 0%, 14% 4%, 22% 0%, 30% 4%, 38% 0%, 46% 4%, 54% 0%, 
        62% 4%, 70% 0%, 78% 4%, 86% 0%, 94% 4%, 100% 8%,
        100% 92%, 94% 96%, 86% 100%, 78% 96%, 70% 100%, 62% 96%,
        54% 100%, 46% 96%, 38% 100%, 30% 96%, 22% 100%, 14% 96%, 6% 100%, 0% 96%
    );
}

/* RIGHT CONTENT */
.bridal-right-content{
    padding-right:20px;
}

.bridal-title{
    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    line-height:1.1;
    color:#411900;
    font-weight:400;
    margin-bottom:24px;
}

.bridal-subtitle{
    color:#411900;
    font-size:18px;
    letter-spacing:8px;
    text-transform:uppercase;
    line-height:1.6;
    margin-bottom:28px;
}

.bridal-description{
    font-size:20px;
    line-height:1.65;
    color:#411900;
    max-width:640px;
    margin-bottom:35px;
}

.bridal-btn{
    display:inline-flex;
    align-items:center;
    gap:14px;
    background:#676846;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    padding:20px 48px;
    border-radius:4px;
}

.bridal-btn span{
    font-size:24px;
}

/* WhatsApp Floating Icon */
.whatsapp-float-btn{
    position:fixed;
    right:35px;
    bottom:40px;
    width:78px;
    height:78px;
    border-radius:50%;
    background:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:999;
    box-shadow:0 8px 20px rgba(0,0,0,0.25);
}

.whatsapp-float-btn img{
    width:48px;
    height:48px;
}

/* Responsive */
/* ================== TABLET ================== */
@media (max-width: 992px){

    .bridal-section-wrap{
        padding:40px 25px;
    }

    .bridal-section-container{
        grid-template-columns:1fr;
        gap:50px;
        max-width:650px;
    }

    .bridal-left-frame{
        padding:12px;
        border-radius:20px;
    }

    .bridal-left-frame img{
        height:480px;
        border-radius:25px;
    }

    .bridal-right-content{
        text-align:center;
        padding:0;
    }

    .bridal-title{
        font-size:44px;
        line-height:1.2;
    }

    .bridal-subtitle{
        font-size:15px;
        letter-spacing:6px;
    }

    .bridal-description{
        font-size:17px;
        margin:0 auto 25px;
        text-align: justify;
    }

    .bridal-btn{
        justify-content:center;
        padding:16px 35px;
        font-size:16px;
    }
}


/* ================== MOBILE ================== */
@media (max-width: 600px){

    .bridal-section-wrap{
        padding:30px 15px;
    }

    .bridal-section-container{
        gap:35px;
    }

    /* IMAGE */
    .bridal-left-frame{
        padding:10px;
        border-radius:18px;
    }

    .bridal-left-frame img{
        height:340px;
        border-radius:20px;
    }

    /* TEXT */
    .bridal-title{
        font-size:32px;
        line-height:1.25;
        margin-bottom:15px;
    }

    .bridal-subtitle{
        font-size:13px;
        letter-spacing:4px;
        margin-bottom:15px;
    }

    .bridal-description{
        font-size:15px;
        line-height:1.6;
        margin-bottom:25px;
        padding:0 5px;
    }

    /* BUTTON */
    .bridal-btn{
        width:100%;
        max-width:260px;
        justify-content:center;
        font-size:14px;
        padding:14px 20px;
        margin:0 auto;
        border-radius:6px;
    }

    .bridal-btn span{
        font-size:18px;
    }

    /* WHATSAPP */
    .whatsapp-float-btn{
        width:55px;
        height:55px;
        right:15px;
        bottom:15px;
    }

    .whatsapp-float-btn img{
        width:30px;
        height:30px;
    }
}
/*  */

.pageant-banner-wrap{
    width:100%;
    min-height:120vh;
    position:relative;
    overflow:hidden;
    background-image:url("https://thebhavanasingh.com/static/media/pageant.2336ea8ec78010018c7e.jpg");
    background-repeat:no-repeat;
    background-position:center center;
    background-size:cover;   /* Full width full section */
    background-color:#f7f5f3;
}

/* Grey middle strip */




.pageant-main-content{
    max-width:1600px;
    margin:auto;
    position:relative;
    z-index:5;
    display:flex;
    justify-content:flex-start;
    align-items:flex-start;
    padding:60px 70px;
}

.pageant-left-box{
    width:48%;
    position:relative;
    z-index:5;
}

.pageant-title{
    font-family:'Playfair Display', serif;
    font-size:70px;
    margin-bottom:30px;
    line-height:1;
}

.pageant-red{
    color:#c84b58;
}

.pageant-gold{
    color:#e5b62d;
    font-style:italic;
}

.pageant-subtitle{
    color:#411900;
    font-size:24px;
    letter-spacing:7px;
    margin-bottom:45px;
    font-weight:500;
}

.pageant-description{
    color:#5d6670;
    font-size:28px;
    line-height:1.7;
    max-width:700px;
    margin-bottom:50px;
}

.pageant-button-row{
    display:flex;
    gap:30px;
}

.pageant-btn{
    background:#676846;
    color:#fff;
    text-decoration:none;
    font-size:22px;
    font-weight:600;
    padding:22px 34px;
    border-radius:8px;
    min-width:260px;
    display:flex;
    align-items:center;
    gap:12px;
}

.pageant-btn:hover{
    background:#a30000;
}

.pageant-star{
    font-size:24px;
}

.pageant-right-box{
    display:none;
}

/* Responsive */
/* ================= TABLET ================= */
@media (max-width: 992px){

    .pageant-banner-wrap{
        min-height:auto;
        padding-bottom:60px;
        background-position:center;
    }

    .pageant-main-content{
        padding:40px 25px;
        justify-content:center;
        text-align:center;
    }

    .pageant-left-box{
        width:100%;
    }

    .pageant-title{
        font-size:44px;
        line-height:1.2;
    }

    .pageant-subtitle{
        font-size:18px;
        letter-spacing:4px;
        margin-bottom:25px;
    }

    .pageant-description{
        font-size:18px;
        margin:0 auto 30px;
        max-width:600px;
    }

    .pageant-button-row{
        flex-direction:column;
        align-items:center;
        gap:15px;
    }

    .pageant-btn{
        width:100%;
        max-width:280px;
        justify-content:center;
        font-size:16px;
        padding:16px 20px;
    }
}


/* ================= MOBILE ================= */
@media (max-width: 600px){

    .pageant-banner-wrap{
        padding-bottom:50px;
    }

    .pageant-main-content{
        padding:30px 15px;
    }

    /* HEADING */
    .pageant-title{
        font-size:30px;
        line-height:1.3;
        margin-bottom:15px;
    }

    /* SUBTITLE */
    .pageant-subtitle{
        font-size:14px;
        letter-spacing:3px;
        margin-bottom:15px;
    }

    /* DESCRIPTION */
    .pageant-description{
        font-size:15px;
        line-height:1.6;
        margin-bottom:25px;
        padding:0 5px;
    }

    /* BUTTON */
    .pageant-btn{
        font-size:14px;
        padding:14px 18px;
        border-radius:6px;
    }

    .pageant-star{
        font-size:16px;
    }
}



/*  */

/* Main Section */
.wardrobe-cleanse-section{
    width:100%;
    min-height:100vh;
    display:flex;
    background:#f3f3f3;
    position:relative;
    overflow:hidden;
}

/* Left Side */
.wardrobe-left-panel{
    width:48%;
    /* background:#9f1111; */
    position:relative;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    min-height:130vh;
}

/* Top white strip */
.wardrobe-left-panel::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:92px;
    background:#efefef;
    z-index:1;
}

/* Clothing Rack */
.wardrobe-rack-image{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    z-index:2;
}

/* Main Model */
.wardrobe-model-image{
    position:relative;
    z-index:3;
    max-height:100vh;
    width:auto;
    object-fit:contain;
}

/* Right Content */
.wardrobe-right-panel{
    width:70%;
    padding:35px 70px 40px 70px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    position:relative;
}

/* Heading */
.wardrobe-heading{
    font-family:'Playfair Display',serif;
    font-size:64px;
    font-weight:400;
    color:#411900;
    line-height:1.1;
    margin-bottom:24px;
}

/* Subtitle */
.wardrobe-subtitle{
    color:#411900;
    font-size:25px;
    letter-spacing:9px;
    line-height:1.5;
    font-weight:500;
    margin-bottom:22px;
    text-transform:uppercase;
}

/* Paragraph */
.wardrobe-description{
    font-size:19px;
    line-height:1.7;
    color:#411900;
    max-width:760px;
    margin-bottom:55px;
}

/* Button */
.wardrobe-btn{
    display:inline-flex;
    align-items:center;
    gap:14px;
    width:245px;
    justify-content:center;
    height:64px;
    background:#676846;
    color:#fff;
    text-decoration:none;
    font-size:20px;
    font-weight:600;
    border-radius:6px;
}

.wardrobe-btn:hover{
    background:#411900;
}

.wardrobe-star{
    font-size:22px;
}

/* WhatsApp */
.wardrobe-whatsapp{
    position:absolute;
    right:35px;
    top:54%;
    width:82px;
    height:82px;
    background:#000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.wardrobe-whatsapp img{
    width:56px;
    height:56px;
}

/* Responsive */
@media(max-width:1100px){
    .wardrobe-cleanse-section{
        flex-direction:column;
    }

    .wardrobe-left-panel,
    .wardrobe-right-panel{
        width:100%;
    }

    .wardrobe-left-panel{
        min-height:650px;
    }

    .wardrobe-heading{
        font-size:42px;
    }

    .wardrobe-subtitle{
        font-size:18px;
        letter-spacing:4px;
    }

    .wardrobe-description{
        font-size:17px;
        text-align: justify;
    }

    .wardrobe-right-panel{
        padding:30px 20px;
    }

    .wardrobe-whatsapp{
        right:20px;
        top:auto;
        bottom:20px;
    }
}
/*  */

.event-styling-section{
    position: relative;
    width: 100%;
    min-height: 130vh;
    overflow: hidden;

    /* Full image proper visible */
    background: url('https://thebhavanasingh.com/static/media/event_styling.bd431ec863179b5a00ee.jpg')
                center center / cover no-repeat;

    display: flex;
    align-items: center;
    padding: 60px 100px;
}

/* Agar image pura width + height me clearly dikhani hai */
.event-styling-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center center;
    z-index: -1;
}

/* Mobile responsive full image */
@media (max-width:768px){
    .event-styling-section{
        min-height: 700px;
        padding: 40px 25px;
        background-position: center top;
        background-size: cover;
    }
}
/* .event-overlay-shadow{
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgba(70,0,0,0.85), rgba(120,0,0,0.35));
    z-index:1;
} */

.event-left-content{
    position:relative;
    z-index:5;
    width:100%;
    color:#fff;
}

.event-main-heading{
    font-family:'Cormorant Garamond',serif;
    font-size:68px;
    font-style:italic;
    font-weight:500;
    color:#fff;
    margin-bottom:22px;
    line-height:1;
}

.event-subtitle{
    font-size:18px;
    letter-spacing:6px;
    font-weight:500;
    text-transform:uppercase;
    margin-bottom:4px;
}

.event-highlight-line{
    font-size:18px;
    letter-spacing:6px;
    font-style:italic;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:45px;
    display:block;
}

.event-description{
    max-width:520px;
    font-size:19px;
    line-height:1.7;
    font-weight:300;
    color:#fff;
    margin-bottom:55px;
}

.event-btn-group{
    display:flex;
    gap:28px;
    flex-wrap:wrap;
}

.event-action-btn{
    display:inline-flex;
    align-items:center;
    gap:14px;
    min-width:245px;
    height:64px;
    padding:0 24px;
    border:1px solid rgba(255,255,255,0.2);
    border-radius:6px;
    background:#676846;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    box-shadow:0 6px 20px rgba(0,0,0,0.25);
    transition:0.3s ease;
}

.event-action-btn:hover{
    transform:translateY(-3px);
}

.event-btn-icon{
    font-size:24px;
    line-height:1;
}

.event-right-image-zone{
    position:absolute;
    right:0;
    bottom:0;
    width:52%;
    height:100%;
    z-index:3;
    display:flex;
    align-items:flex-end;
    justify-content:flex-end;
}

.event-back-model{
    position:absolute;
    right:180px;
    bottom:0;
    height:100%;
    opacity:0.28;
    object-fit:contain;
    filter:brightness(1.2);
}

.event-front-model{
    position:absolute;
    right:20px;
    bottom:0;
    height:78%;
    object-fit:contain;
    filter:drop-shadow(0 0 18px rgba(255,180,180,0.25));
}

.whatsapp-floating-icon{
    position:absolute;
    right:50px !important;
    bottom:180px;

    width:88px;
    height:88px;

    border-radius:50%;
    background:#000;
    border:4px solid #fff;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:8;

    box-shadow:0 10px 25px rgba(0,0,0,0.35);
}

.whatsapp-floating-icon img{
    width:58px;
    height:58px;
}

/* ================= MOBILE VIEW ================= */

@media(max-width:768px){

    .whatsapp-floating-icon{
        position:fixed;

        right:95px !important;
        bottom:20px;
        margin-left:-100px !important;

        width:62px;
        height:62px;

        border:3px solid #fff;

        z-index:999;
        display: none !important;
    }

    .whatsapp-floating-icon img{
        width:38px;
        height:38px;
    }

}

@media(max-width:992px){
    .event-styling-section{
        padding:40px 25px;
    }

    .event-left-content{
        width:100%;
        max-width:100%;
    }

    .event-right-image-zone{
        opacity:0.25;
        width:100%;
    }

    .event-main-heading{
        font-size:52px;
    }

    .event-description{
        font-size:17px;
    }

    .event-action-btn{
        min-width:220px;
    }
}

@media(max-width:768px){
    .event-main-heading{
        font-size:42px;
    }

    .event-subtitle,
    .event-highlight-line{
        font-size:15px;
        letter-spacing:4px;
    }

    .event-description{
        font-size:16px;
        line-height:1.6;
    }

    .event-btn-group{
        flex-direction:column;
        gap:18px;
    }

    .event-action-btn{
        width:100%;
        min-width:100%;
    }

    .whatsapp-floating-icon{
        width:70px;
        height:70px;
        bottom:110px;
    }

    .whatsapp-floating-icon img{
        width:42px;
        height:42px;
    }
}

/*  */



/* ////////////////////////////ABOUT US/////////////////////////////// */

/* ===== STATS ===== */
/* ===== STATS SECTION ===== */
.stats-section{
    background:#676846 !important;
    padding:40px 20px;
}

.stats-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

/* CARD */
.stat-box{
    display:flex;
    align-items:center;
    gap:15px;
}

/* ICON */
.icon{
    width:60px;
    height:60px;
    background:#FAFBED;
    color:#411900;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    border-radius:14px;
    box-shadow:0 6px 15px rgba(0,0,0,0.2);
}

/* TEXT */
.stat-box h3{
    font-size:36px;
    margin:0;
    font-weight:700;
    color: #FAFBED;
}

.stat-box p{
    margin:0;
    font-size:15px;
    color:#FAFBED;
}

/* ===== QUOTE SECTION ===== */
.quote-section{
    background:#f2f2f2;
    padding:30px 20px;
    text-align:center;
}

.quote-container{
    max-width:900px;
    margin:auto;
}

.quote-text{
    font-family:'Playfair Display', serif;
    font-size:28px;
    line-height:1.8;
    color:#411900;
    font-style:italic;
}

.quote-author{
    margin-top:30px;
        font-family: Cormorant Garamond;
    font-size:32px;
    color:#411900;
        font-style:italic;
        font-weight: 600;
}

/* MOBILE */
@media(max-width:768px){

    .stats-container{
        flex-direction:column;
        align-items:center;
    }

    .stat-box{
        justify-content:center;
    }

    .quote-text{
        font-size:20px;
    }
}
/*  */

/* ////////////////////////////////BLOG css///////////////////////////////////// */
/* ================= BLOG FULL SECTION ================= */
/* SECTION */
.review-section{
    padding:30px 30px;
    background:#FAFBED;
}

/* HEADING */
.review-heading{
    text-align:center;
    font-size:40px;
    margin-bottom:20px;
    color:#411900; /* ⚠️ fix किया */
}

/* GRID */
.review-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* CARD */
.review-card{
    background:rgba(255,255,255,0.6);
    backdrop-filter:blur(10px);
    border-radius:15px;
    padding:20px;
    transition:0.4s;
    cursor:pointer;

    opacity:0;
    transform:translateY(60px) scale(0.95);
}

.review-card.active{
    opacity:1;
    transform:translateY(0) scale(1);
}

/* HOVER */
.review-card:hover{
    transform:translateY(-10px) scale(1.03);
    box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

/* TOP */
.review-top{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:10px;
}

.review-top img{
    width:40px;
    height:40px;
    border-radius:50%;
}

.review-top h4{
    font-size:14px;
}

.review-stars{
    font-size:12px;
    color:gold;
}

/* TEXT */
.review-card p{
    font-size:13px;
    color:#555;
    line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:992px){
    .review-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .review-grid{
        grid-template-columns:1fr;
    }
}
/* ///////////////////////////////////////////////////////////////////////////// */



/* ///////////////////////////////CONTACT US ///////////////////////////////////// */

/* Open Button */
.btn-primary {
  display: inline-block;
  background: #9d1010;
  color: #fff;
  padding: 9px 18px;
  text-decoration: none;
  font-size: 18px;
  border-radius: 6px;
}

/* Modal Overlay */
.contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal Box */
.contact-modal-box {
  width: 95%;
  max-width: 1220px;
  min-height: 600px;
  background: #9e1010;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  position: relative;
  border: 2px solid #fff;
}

/* Close Button */
.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 38px;
  color: white;
  cursor: pointer;
  z-index: 10;
}

/* Left Section */
.contact-left-section {
  width: 65%;
  padding: 40px;
  color: white;
}

.contact-left-section h2 {
  font-size: 56px;
  font-style: italic;
  font-family: serif;
  margin-bottom: 25px;
}

/* Form Row */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 22px;
}

.form-row input,
textarea {
  width: 100%;
  padding: 20px;
  border: none;
  outline: none;
  font-size: 24px;
  background: #ece9e9;
}

textarea {
  height: 120px;
  resize: none;
  margin-bottom: 20px;
}

/* Connect Button */
.connect-btn {
  background: #fff5f5;
  color: #d11212;
  border: none;
  padding: 20px 38px;
  font-size: 30px;
  cursor: pointer;
  border-radius: 8px;
}

/* Bottom Bar */
.contact-bottom-bar {
  margin-top: 35px;
  background: #7f0b0b;
  padding: 25px;
  font-size: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Right Section */
.contact-right-section {
  width: 35%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.contact-right-section img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive */
@media(max-width:991px){
  .contact-modal-box{
    flex-direction: column;
    height: auto;
  }

  .contact-left-section,
  .contact-right-section{
    width:100%;
  }

  .form-row{
    flex-direction: column;
  }

  .contact-left-section h2{
    font-size:40px;
  }

  .connect-btn{
    font-size:22px;
  }

  .contact-bottom-bar{
    font-size:18px;
    gap:10px;
  }
}
/*  */





.philosophy-section{
    width:100%;
    overflow:hidden;
    padding:100px 8%;
    background:#FAFBED;
    font-family:'Poppins', sans-serif;
    box-sizing:border-box;
}

/* CONTAINER */

.philosophy-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;

    flex-wrap:wrap;

    width:100%;
    max-width:100%;
}

/* LEFT */

.philosophy-left{
    flex:1;
    min-width:300px;
    max-width:100%;
}

/* RIGHT */

.philosophy-right{
    flex:1;
    min-width:300px;
    max-width:100%;

    text-align:right;
}

/* IMAGE BOX */

.gif-border-box{
    position:relative;

    width:100%;
    max-width:450px;

    border-radius:20px;
    padding:10px;

    background:url('https://thebhavanasingh.com/static/media/bhav.a8cb46c86e232deede89.gif');
    background-size:cover;
    background-position:center;

    box-sizing:border-box;
}

/* IMAGE */

.gif-border-box img,
.philosophy-right img{
    width:100%;
    max-width:100%;

    display:block;

    border-radius:15px;
}

/* ================= MOBILE VIEW ================= */

@media(max-width:768px){

    .philosophy-section{
        padding:60px 18px;
    }

    .philosophy-container{
        flex-direction:column;
        gap:35px;

        text-align:center;
    }

    .philosophy-left,
    .philosophy-right{
        width:100%;
        min-width:100%;
    }

    .philosophy-right{
        text-align:center;
    }

    .gif-border-box{
        width:100%;
        max-width:100%;
        margin:auto;
    }

    .philo-small{
        font-size:28px;
    }

    .philo-title{
        font-size:38px;
        line-height:1.2;
    }

    .philo-desc{
        font-size:15px;
    }

    .philo-list li{
        text-align:left;
        font-size:15px;
    }

    .philo-bottom{
        font-size:16px;
    }
}


/*  */
.who-section {
    padding: 40px 8%;
    background: linear-gradient(135deg, #fffef8, #f3f6e8);
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.who-heading {
    font-family: 'Playfair Display', serif;
    font-size: 50px !important;
    font-style: italic;
    color: #411900;
    margin-bottom: 60px;
}

/* GRID */
.who-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

/* CARD */
.who-card {
    position: relative;
    padding: 45px 25px;
    border-radius: 22px;
    background: #676846;
    overflow: hidden;

    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

/* HOVER */
.who-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 35px 80px rgba(0,0,0,0.2);
}
.who-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;

    background: radial-gradient(circle at center, 
        rgba(250, 251, 237, 0.6), 
        rgba(250, 251, 237, 0.2), 
        transparent 70%
    );

    top: -70px;
    right: -70px;

    border-radius: 60% 40% 55% 70%; /* WAVE / BLOB SHAPE */

    filter: blur(10px);
    opacity: 0.9;

    transition: all 0.6s ease;
}

/* HOVER EFFECT */
.who-card:hover::before {
    transform: scale(1.3) rotate(15deg);
    opacity: 1;
}
.who-card:hover::before {
    transform: scale(1.4);
}

/* ICON BOX (MAIN UPGRADE) */
.who-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #FAFBED;
    color: #411900;

    font-size: 26px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

/* ICON HOVER */
.who-card:hover .who-icon {
    background: #411900;
    color: #FAFBED;
    transform: scale(1.15) rotate(8deg);
}

/* TEXT */
.who-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-style: italic;
    color: #FAFBED;
}

.who-card p {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    color: #FAFBED;
}

/* FLOAT (VERY SUBTLE) */
.who-card {
    animation: floatCard 6s ease-in-out infinite;
}

.who-card:nth-child(2) { animation-delay: 0.5s; }
.who-card:nth-child(3) { animation-delay: 1s; }
.who-card:nth-child(4) { animation-delay: 1.5s; }

@keyframes floatCard {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* RESPONSIVE */
@media(max-width:768px){
    .who-heading {
        font-size: 34px;
    }
}

/*  */

/* SECTION */
.impact-section{
    position:relative;
    display:flex;
    justify-content:space-between;
    gap:60px;
    padding:50px 1% !important;
}

/* CENTER LINE */
.impact-section::before{
    content:'';
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:2px;
    height:100%;
    background:linear-gradient(to bottom, transparent, #d4af37, transparent);
}

/* COLUMN */
.impact-col{
    width:48%;
    display:flex;
    flex-direction:column;
    gap:30px;
}

/* CARD */
.card{
    background:#676846;
    border-radius:20px;
    padding:30px;
    box-shadow:0 15px 40px rgba(0,0,0,0.06);
    transition:0.4s ease;
    opacity:0;
    transform:translateY(60px);

    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:420px;
}

/* IMAGE CARD */
.image-card{
    padding:0;
    overflow:hidden;
    background:none !important;
    min-height:auto;
}

.image-card img{
    width:100%;
    height:490px;
    object-fit:cover;
    display:block;
    border-radius:20px;
}

/* HOVER */
.card:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

/* HEADING */
.impact-heading{
    font-family:'Playfair Display', serif;
    font-size:50px !important;
    font-style:italic;
    color:#ffffff;
    margin-bottom:20px;
    line-height:1.1;
}

/* LIST */
.impact-list{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.impact-item{
    display:flex;
    gap:12px;
    font-size:18px;
    color:#ffffff;
}

.impact-item span{
    color:#d4af37;
    font-size:18px;
}

/* TEXT */
.impact-desc{
    margin-top:20px;
    color:#ffffff;
    font-size:18px;
    line-height:1.7;
}

/* PAGEANT */
.pageant-card{
    background:rgba(255,255,255,0.08);
    border-left:4px solid #d4af37;
    padding:20px;
    border-radius:12px;
    margin:20px 0;
    color:#fff;
}

.pageant-card h3{
    color:#fff;
}

.pageant-card p{
    font-size:18px;
}

.pageant-badges{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.pageant-badges span{
    background:#fff;
    color:#411900;
    border:1px solid #f1e2d6;
    padding:6px 14px;
    border-radius:30px;
    font-size:18px;
}

/* ANIMATION */
.show{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:900px){

    .impact-section{
        flex-direction:column;
    }

    .impact-section::before{
        display:none;
    }

    .impact-col{
        width:100%;
    }

    .impact-heading{
        font-size:40px;
    }
}


/*  */


/* MAIN BUTTON */
.whatsapp-float{
    position: fixed;
    right: 25px;
    bottom: 100px;

    width: 80px;
    height: 80px;

    background: #FAFBED;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 
        0 10px 25px rgba(0,0,0,0.25),
        inset -4px -4px 8px rgba(0,0,0,0.2),
        inset 4px 4px 8px rgba(255,255,255,0.1);

    z-index: 9999;

    transform-style: preserve-3d;
    transition: all 0.4s ease;
}

/* ICON */
.whatsapp-float img{
    width: 55px;
    height: 55px;
    z-index: 2;
    transition: 0.4s;
}

/* 3D HOVER 🔥 */
.whatsapp-float:hover{
    transform: translateY(-10px) scale(1.1) rotateX(10deg) rotateY(-10deg);

    box-shadow: 
        0 25px 50px rgba(0,0,0,0.35),
        inset -4px -4px 10px rgba(0,0,0,0.25),
        inset 4px 4px 10px rgba(255,255,255,0.15);
}

/* ICON HOVER */
.whatsapp-float:hover img{
    transform: scale(1.2) rotate(10deg);
}

/* GLOW RING */
.whatsapp-float::before{
    content: "";
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;

    background: radial-gradient(circle, rgba(250,251,237,0.5), transparent 70%);
    animation: pulseRing 2.5s infinite;
}

/* SECOND GLOW */
.whatsapp-float::after{
    content: "";
    position: absolute;
    width: 140%;
    height: 140%;
    border-radius: 50%;

    background: radial-gradient(circle, rgba(250,251,237,0.2), transparent 70%);
    animation: pulseRing 3.5s infinite;
}

/* PULSE ANIMATION */
@keyframes pulseRing{
    0%{
        transform: scale(0.8);
        opacity: 0.8;
    }
    70%{
        transform: scale(1.4);
        opacity: 0;
    }
    100%{
        opacity: 0;
    }
}

/* FLOATING ANIMATION */
.whatsapp-float{
    animation: floatBtn 4s ease-in-out infinite;
}

@keyframes floatBtn{
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-8px); }
}


/*  */
/* NAVBAR DEFAULT (transparent look) */
.navbar{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;

   


    background: transparent;

}

/* SCROLL ACTIVE STATE 🔥 */
.navbar.scrolled{
    background: rgba(103, 104, 70, 0.95); /* #676846 with opacity */
    backdrop-filter: blur(12px);

    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
   
}

/* NAV LINKS COLOR CHANGE */
.navbar.scrolled .nav-item{
    color: #FAFBED;
}

/* OPTIONAL: LOGO SIZE CHANGE */
.navbar.scrolled .logo img{
    height: 80px;
    transition: 0.3s;
}

/*  */


/* COPYRIGHT */
.copyright{
    font-size:18px;   /* 🔥 Desktop Bigger */
    color:#411900;
    font-weight:600;
    letter-spacing:0.8px;
    line-height:1.8;
    margin-top:12px;
}

/* MOBILE VIEW */
@media(max-width:768px){

    .copyright{
        font-size:16px;   /* 🔥 Mobile Bigger */
        padding:0 10px;
        line-height:1.7;
    }

}



/* =========================
   FOOTER
========================= */
.custom-footer{
    width:100%;
    background:#f5f5f5;
    padding:25px 40px;
    font-family:'Poppins',sans-serif;
    box-sizing:border-box;
    overflow:hidden;
}

/* =========================
   TOP AREA
========================= */
.footer-top{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.footer-contact{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:80px;
    flex-wrap:wrap;
}

/* =========================
   CONTACT BOX
========================= */
.contact-box{
    display:flex;
    align-items:center;
    gap:18px;
}

.footer-icon{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#c70000;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:26px;
    flex-shrink:0;
}

.footer-text{
    font-size:22px;
    font-weight:700;
    color:#c70000;
    line-height:1.4;
}

/* =========================
   LINE
========================= */
.footer-line{
    margin:28px 0;
    border:none;
    border-top:1px solid #ddd;
}

/* =========================
   BOTTOM AREA
========================= */
.footer-bottom{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

/* =========================
   POLICIES
========================= */
.footer-policies{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:18px;
}

.policy-title{
    font-size:22px;
    font-weight:700;
    color:#c70000;
}

.footer-policies a{
    text-decoration:none;
    color:#c70000;
    font-size:16px;
    position:relative;
    padding-right:18px;
}

.footer-policies a::after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:24px;
    background:#c70000;
}

.footer-policies a:last-child::after{
    display:none;
}

/* =========================
   SOCIAL ICONS
========================= */
.footer-social{
    display:flex;
    align-items:center;
    gap:16px;
}

.footer-social a{
    width:50px;
    height:50px;
    border-radius:50%;
    border:2px solid #c70000;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#c70000;
    font-size:20px;
    text-decoration:none;
    transition:0.3s;
    background:#fff;
    box-shadow:0 4px 10px rgba(0,0,0,0.10);
}

.footer-social a:hover{
    background:#c70000;
    color:#fff;
}

/* =========================
   MOBILE VIEW
========================= */
@media(max-width:991px){

    .custom-footer{
        padding:30px 20px;
    }

    .footer-contact{
        gap:25px;
        justify-content:flex-start;
    }

    .contact-box{
        width:100%;
        align-items:flex-start;
    }

    .footer-text{
        font-size:18px;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-policies{
        gap:12px;
    }

    .policy-title{
        width:100%;
    }

    .footer-policies a{
        font-size:15px;
        padding-right:12px;
    }

    .footer-policies a::after{
        height:18px;
    }

    .footer-social{
        margin-top:10px;
    }

}

@media(max-width:576px){

    .footer-icon{
        width:48px;
        height:48px;
        font-size:20px;
    }

    .footer-text{
        font-size:16px;
        line-height:1.6;
    }

    .footer-social{
        gap:10px;
    }

    .footer-social a{
        width:44px;
        height:44px;
        font-size:17px;
    }

}