/* ================================
   GOOGLE FONTS
================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;500;600&display=swap');

/* ================================
   ROOT VARIABLES
================================ */
:root {
    --ayur-green: #2E7D32;
    --ayur-dark: #1B5E20;
    --ayur-gold: #C5A059;
    --ayur-light: #F1F8E9;
}

/* ================================
   GLOBAL STYLES
================================ */
body {
    font-family: 'Poppins', sans-serif;
    background: #f9fdf9;
    color: #333;
}

h1, h2, h3, h4, .navbar-brand {
    font-family: 'Playfair Display', serif;
    color: var(--ayur-dark);
}

.section {
    padding: 80px 0;
}

/* ================================
   NAVBAR
================================ */
.navbar {
    background: #fff !important;
    border-bottom: 3px solid var(--ayur-gold);
}

.navbar-brand img {
    height: 60px;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
}

.nav-link:hover {
    color: var(--ayur-green) !important;
}

.nav-link.active {
    color: var(--ayur-green) !important;
    font-weight: 600;
}

/* ================================
   HERO SECTION
================================ */
.hero-section,
.hero {
    background: linear-gradient(rgba(46,125,50,0.85), rgba(46,125,50,0.85)), url('child.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
}

/* ================================
   BUTTONS
================================ */
.btn-primary,
.btn-green {
    background: var(--ayur-green);
    border: none;
    border-radius: 25px;
    padding: 10px 30px;
    color: white;
}

.btn-primary:hover,
.btn-green:hover {
    background: var(--ayur-gold);
    color: white;
}

/* ================================
   CARDS (GENERAL)
================================ */
/* PREMIUM SERVICE CARD */
/* PREMIUM BORDER CARD */
.card-box{
    background:#fff;
    border-radius:18px;
    padding:25px;
    position:relative;
    height:100%;
    transition:0.4s ease;
    z-index:1;

    /* base shadow */
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

/* GRADIENT BORDER */
.card-box::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:18px;
    padding:2px;

    background:linear-gradient(135deg, #c8a951, #2e7d32);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    z-index:-1;
}

/* INNER SOFT BORDER (DEPTH EFFECT) */
.card-box::after{
    content:"";
    position:absolute;
    inset:6px;
    border-radius:14px;
    border:1px solid rgba(0,0,0,0.05);
}

/* HOVER EFFECT */
.card-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}
/* ================================
   PRODUCT IMAGE FIX
================================ */
.product-img-container {
    background: #fcfcfc;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 280px;
    overflow: hidden;
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}

.card:hover .product-img {
    transform: scale(1.05);
}

/* ================================
   PAGE HEADER
================================ */
.page-header {
    background: var(--ayur-dark);
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
}

/* ================================
   CONTACT PAGE
================================ */
.info-card {
    border-top: 4px solid var(--ayur-gold);
    transition: 0.3s;
}

.info-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ================================
   CTA BOX
================================ */
.cta-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* ================================
   FOOTER
================================ */
.footer,
footer {
    background: var(--ayur-dark);
    color: white;
    text-align: center;
    padding: 25px;
}

footer a {
    color: var(--ayur-gold);
    text-decoration: none;
}

/* ================================
   WHATSAPP FLOAT BUTTON
================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}

/* ================================
   LOADER (OPTIONAL)
================================ */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loader img {
    width: 120px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.7; }
}



/* GALLERY */
.gallery-section{
    background:#f1f8f1;
}

.gallery-img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:15px;
    transition:0.4s;
}

.gallery-box{
    overflow:hidden;
    border-radius:15px;
    position:relative;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.gallery-box:hover .gallery-img{
    transform:scale(1.1);
}

/* overlay */
.gallery-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
    opacity:0;
    transition:0.3s;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:20px;
}

.gallery-box:hover .gallery-overlay{
    opacity:1;
}