/* =========================================
   MEHER AYURVEDA - GLOBAL STYLES
========================================= */

:root{
    --primary:#2D6A4F;
    --primary-dark:#1B4332;
    --gold:#D4AF37;
    --gold-dark:#B8941F;
    --white:#ffffff;
    --cream:#FFF8E7;
    --text:#333333;
    --shadow:0 10px 30px rgba(0,0,0,0.08);
    --radius:12px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', sans-serif;
    color:var(--text);
    background:#fff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    transition:.3s ease;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:100%;
    max-width:1280px;
    margin:auto;
    padding:0 20px;
}

/* =========================================
   TOP BAR
========================================= */

.top-bar{
    background:var(--primary-dark);
    color:#fff;
    padding:10px 0;
    font-size:14px;
}

.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.top-left a,
.top-right a{
    color:#fff;
}

.top-left a:hover,
.top-right a:hover{
    color:var(--gold);
}

.top-left i,
.top-right i{
    margin-right:6px;
}

/* =========================================
   HEADER
========================================= */

.site-header{
    position:sticky;
    top:0;
    z-index:9999;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(0,0,0,0.05);

    box-shadow:0 5px 25px rgba(0,0,0,0.04);
}

.header-wrapper{
    height:85px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* =========================================
   LOGO
========================================= */

.logo img{
    height:60px;
    width:auto;
}

/* =========================================
   NAVIGATION
========================================= */

.nav-menu{
    display:flex;
    align-items:center;
    gap:35px;
}

.nav-menu li a{
    color:var(--text);
    font-size:15px;
    font-weight:500;
    position:relative;
}

.nav-menu li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;

    width:0%;
    height:2px;

    background:var(--gold);

    transition:.3s;
}

.nav-menu li a:hover{
    color:var(--primary);
}

.nav-menu li a:hover::after{
    width:100%;
}

/* =========================================
   FRANCHISE BUTTON
========================================= */

.franchise-btn{
    background:linear-gradient(
        135deg,
        var(--gold),
        #f5d061
    );

    color:#000;
    font-weight:600;

    padding:13px 28px;

    border-radius:50px;

    box-shadow:
    0 8px 20px rgba(212,175,55,.25);

    transition:.4s;
}

.franchise-btn:hover{
    transform:translateY(-3px);

    box-shadow:
    0 15px 30px rgba(212,175,55,.35);

    background:linear-gradient(
        135deg,
        #f5d061,
        var(--gold)
    );
}

/* =========================================
   MOBILE TOGGLE
========================================= */

.mobile-toggle{
    display:none;
    cursor:pointer;
}

.mobile-toggle i{
    font-size:28px;
    color:var(--primary);
}

/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu{
    position:fixed;
    top:85px;
    left:-100%;

    width:280px;
    height:100vh;

    background:#fff;

    box-shadow:0 0 30px rgba(0,0,0,.15);

    transition:.4s ease;

    z-index:9998;

    padding:30px;
}

.mobile-menu.active{
    left:0;
}

.mobile-menu ul{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.mobile-menu a{
    color:var(--text);
    font-weight:500;
    font-size:16px;
}

.mobile-menu a:hover{
    color:var(--primary);
}

.mobile-franchise{
    display:block;

    margin-top:15px;

    background:var(--gold);

    color:#000 !important;

    text-align:center;

    padding:12px;

    border-radius:50px;

    font-weight:600;
}

/* =========================================
   STICKY SCROLL EFFECT
========================================= */

.site-header.scrolled{
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* =========================================
   TABLET
========================================= */

@media(max-width:992px){

    .navbar{
        display:none;
    }

    .header-btn{
        display:none;
    }

    .mobile-toggle{
        display:block;
    }

    .logo img{
        height:55px;
    }

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .top-bar{
        display:none;
    }

    .header-wrapper{
        height:75px;
    }

    .logo img{
        height:50px;
    }

    .mobile-menu{
        top:75px;
        width:100%;
    }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px){

    .container{
        padding:0 15px;
    }

    .logo img{
        height:45px;
    }

    .mobile-toggle i{
        font-size:24px;
    }

}


/* Footer Css */

/* ==================================================
   FOOTER STYLES - MEHER AYURVEDA
================================================== */

.site-footer{
    background: linear-gradient(
        135deg,
        #163628 0%,
        #1B4332 50%,
        #0f261c 100%
    );
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.site-footer::before{
    content:'';
    position:absolute;
    top:-150px;
    right:-150px;
    width:300px;
    height:300px;
    background:rgba(212,175,55,0.08);
    border-radius:50%;
}

.site-footer::after{
    content:'';
    position:absolute;
    bottom:-120px;
    left:-120px;
    width:250px;
    height:250px;
    background:rgba(212,175,55,0.05);
    border-radius:50%;
}

/* ==========================
   FOOTER MAIN
========================== */

.footer-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr;
    gap:50px;
    padding:80px 0 60px;
    position:relative;
    z-index:2;
}

/* ==========================
   LOGO SECTION
========================== */

.footer-logo{
    margin-bottom:25px;
}

.footer-logo img{
    max-height:75px;
    width:auto;
}

.footer-about{
    color:rgba(255,255,255,0.85);
    line-height:1.9;
    font-size:15px;
    margin-bottom:30px;
}

/* ==========================
   SOCIAL ICONS
========================== */

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,0.08);
    color:#ffffff;
    transition:all .35s ease;
}

.footer-social a:hover{
    background:#D4AF37;
    color:#000;
    transform:translateY(-4px);
}

/* ==========================
   FOOTER HEADINGS
========================== */

.footer-column h3{
    color:#D4AF37;
    font-size:22px;
    margin-bottom:22px;
    font-family:'Playfair Display', serif;
    position:relative;
}

.footer-column h3::after{
    content:'';
    display:block;
    width:50px;
    height:2px;
    background:#D4AF37;
    margin-top:10px;
}

.seo-heading{
    margin-top:35px;
}

/* ==========================
   LINKS
========================== */

.footer-links{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.footer-links li{
    list-style:none;
}

.footer-links a{
    color:rgba(255,255,255,0.85);
    transition:all .3s ease;
    position:relative;
    padding-left:0;
}

.footer-links a:hover{
    color:#D4AF37;
    padding-left:8px;
}

/* ==========================
   CONTACT INFO
========================== */

.contact-info{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:35px;
}

.contact-info li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    color:rgba(255,255,255,0.9);
    line-height:1.7;
}

.contact-info i{
    color:#D4AF37;
    min-width:18px;
    margin-top:4px;
}

.address-title{
    margin-top:10px;
}

.footer-address p{
    color:rgba(255,255,255,0.9);
    line-height:1.9;
}

.footer-address i{
    color:#D4AF37;
    margin-right:8px;
}

/* ==========================
   FOOTER BOTTOM
========================== */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    background:rgba(0,0,0,0.15);
    position:relative;
    z-index:2;
}

.footer-bottom-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 0;
    gap:20px;
}

.footer-bottom-content p{
    color:rgba(255,255,255,0.8);
    font-size:14px;
}

.footer-bottom-links{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.footer-bottom-links a{
    color:rgba(255,255,255,0.8);
    font-size:14px;
}

.footer-bottom-links a:hover{
    color:#D4AF37;
}

/* ==========================
   WHATSAPP FLOAT BUTTON
========================== */

.whatsapp-float{
    position:fixed;
    bottom:25px;
    left:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    z-index:9999;
    box-shadow:0 8px 25px rgba(37,211,102,.4);
    transition:.3s;
}

.whatsapp-float:hover{
    transform:scale(1.08);
}

/* ==========================
   BACK TO TOP
========================== */

#backToTop{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#D4AF37;
    color:#000;
    cursor:pointer;
    font-size:18px;
    z-index:9999;
    box-shadow:0 10px 25px rgba(212,175,55,.35);
    transition:.3s;
}

#backToTop:hover{
    transform:translateY(-5px);
}

/* ==========================
   TABLET
========================== */

@media (max-width:992px){

    .footer-grid{
        grid-template-columns:1fr;
        gap:40px;
        padding:70px 0 50px;
    }

    .footer-bottom-content{
        flex-direction:column;
        text-align:center;
    }

}

/* ==========================
   MOBILE
========================== */

@media (max-width:768px){

    .footer-grid{
        padding:60px 0 40px;
    }

    .footer-column h3{
        font-size:20px;
    }

    .footer-about{
        font-size:14px;
    }

    .footer-bottom-links{
        justify-content:center;
        gap:15px;
    }

    .whatsapp-float{
        width:55px;
        height:55px;
        font-size:26px;
        left:15px;
        bottom:15px;
    }

    #backToTop{
        width:50px;
        height:50px;
        right:15px;
        bottom:15px;
    }

}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width:480px){

    .footer-grid{
        gap:30px;
    }

    .footer-column h3{
        font-size:18px;
    }

    .footer-bottom-content p{
        font-size:13px;
    }

}
/* Footer css ends */

/* Light Box Css starts */
#lightbox{

    display:none;

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.95);

    z-index:99999;
}

#lightbox-image{

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    max-width:90%;
    max-height:90%;
}

#close-lightbox{

    position:absolute;

    top:20px;
    right:30px;

    color:#fff;

    font-size:45px;

    cursor:pointer;
}

/* Lightbox Css Ends */


/* Franchise Document Download */
/* Earnings Calculator */

.earnings-calculator{
    background:#FFFDF7;
}

.calculator-box{
    max-width:600px;
    margin:auto;
    text-align:center;
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.calculator-box input{
    width:100%;
    padding:15px;
    margin:20px 0;
    border:1px solid #ddd;
    border-radius:10px;
}

.result-box{
    margin-top:25px;
}

.result-box h2{
    color:var(--gold);
    font-size:42px;
}

/* Success Stories */

.success-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.success-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--shadow);
}

.success-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.success-card h3{
    padding:20px 20px 5px;
}

.success-card span{
    color:var(--gold);
    padding:0 20px;
}

.success-card p{
    padding:15px 20px 20px;
}

/* Payment */

.registration-payment{
    background:linear-gradient(135deg,#1B4332,#2D6A4F);
}

.payment-box{
    text-align:center;
    color:#fff;
}

.payment-box h3{
    font-size:42px;
    color:#F5E6A3;
}

/* Brochure */

.franchise-brochure{
    background:#FFFDF7;
}

.brochure-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:var(--shadow);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}
