/* ============================================================
   GLOBAL RESETS & SHARED TOKENS
   ============================================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #FFF7EF;
    color: #1C120C;
    width: 100%;
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: #cf4700;
    color: #FFFFFF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #1C120C;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.25s ease;
}

ul {
    list-style: none;
}

img {
    display: block;
}

/* Scroll-triggered reveal animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   1. HEADER SECTION -> WITH 2 LINES & TRULY STICKY MENU! 
   ============================================================ */

/* STICKY MENU KI CSS PROBLEM RESOLVER = display:contents (Ye bnd lifafe ka ghlata ha tah ky apke mnu aazdi sy aateken! ) */
.hdr-wrapper {
    display: contents; /* <<=== MAGIC CSS: Isi ki wajah se MENU sticky ho kr baaki sab upper jayega bina kisineke phsye!  */
}

.hdr-header {
    width: 100%;
    position: relative;
    background-color: #FFF7EF;
    border-bottom: 1px solid #FFD8B8;
    z-index: 200;
}

.hdr-top-line {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #cf4700, #e05800, #cf4700);
}

.hdr-main-section {
    width: 100%;
    max-width: 1450px; 
    margin: 0 auto;
    padding: 10px 20px; 
    display: flex;
    flex-wrap: nowrap; 
    align-items: center;
    justify-content: space-between; 
}


/* ======= LEFT , RIGHT , CENTER CONTAINERS ======= */
.hdr-left-section { flex: 1; display: flex; justify-content: flex-start; align-items: center; position: relative; }
.hdr-center-section { flex: 1.5; display: flex; justify-content: center; align-items: center; position: relative; }
.hdr-right-section { flex: 1; display: flex; justify-content: flex-end; align-items: center; position: relative; }


.hdr-logo-link { display: inline-block; text-decoration: none; line-height: 0; }

/* ======== MOBILE SIZES FIRST =================== */

.hdr-logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    transition: transform 0.2s ease;
}

.hdr-logo-container:hover { transform: scale(1.03); }
.hdr-main-logo-image { width: 100%; height: auto; object-fit: contain; display: block; }


.hdr-side-logo-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover; 
    background-color: #FFE8D5;
    border: 2px solid #FFD4B0; 
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    cursor: pointer;
    display: block;
}

.hdr-side-logo-image:hover { transform: scale(1.05); border-color: #e05200; box-shadow: 0 4px 10px rgba(207, 71, 0, 0.2); }

.hdr-divider-right, .hdr-divider-left { display: none; }


/* ======== BIG SIZE LAPTOP / COMPUTERS PAR AJEEBA AJJA !! ============ */
@media (min-width: 1024px) {

    .hdr-main-section {
        padding: 8px 30px; 
    }

    .hdr-logo-container { width: 165px; }
    .hdr-side-logo-image { width: 110px; height: 110px; border-width: 3px; }

    .hdr-divider-right, 
    .hdr-divider-left { 
        display: block; 
        position: absolute; 
        height: 65px; 
        width: 2px; 
        background-color: #FFD0A8; 
        top: 50%; 
        transform: translateY(-50%); 
    }

    .hdr-left-section .hdr-divider-right { right: -5%; }  
    .hdr-right-section .hdr-divider-left { left: -5%; }   
}


/* ================= NAVBAR CSS ================= */

.hdr-navbar {
    width: 100%;
    background: linear-gradient(180deg, #cf4700 0%, #b03e00 100%);
    display: block;
    box-shadow: 0 4px 15px -4px rgba(0, 0, 0, 0.30);
    
    position: -webkit-sticky; 
    position: sticky;
    top: -1px;
    z-index: 9999;
}

/* NORMAL Nav Links */
.hdr-mobile-toggle { display: flex; align-items: center; justify-content: space-between; padding-left: 20px; padding-right: 20px; padding-top: 12px; padding-bottom: 12px; border-bottom: 1px solid rgba(255, 255, 255, 0.15); background-color: transparent; }
.hdr-mobile-toggle-text { color: #FFFFFF; font-size: 16px; font-weight: 600; letter-spacing: 0.05em; font-family: 'Playfair Display', serif; }
.hdr-mobile-toggle-btn { color: #FFFFFF; padding: 4px; background: none; border: none; cursor: pointer; border-radius: 8px; transition: background-color 0.2s ease; }
.hdr-mobile-toggle-btn:hover { background-color: rgba(255, 255, 255, 0.12); }
.hdr-mobile-toggle-btn:focus { outline: none; }
.hdr-menu-icon, .hdr-close-icon { width: 26px; height: 26px; display: block; }
.hdr-close-icon { display: none; }
.hdr-nav-links { display: none; flex-direction: column; max-width: 1400px; margin: 0 auto; color: #FFFFFF; font-weight: 500; font-size: 15.5px; font-family: 'Montserrat', sans-serif; }
.hdr-nav-links.hdr-active { display: flex; }
.hdr-nav-link { padding: 14px 24px; flex: 1; text-align: left; text-decoration: none; color: #FFFFFF; border-bottom: 1px solid rgba(255, 255, 255, 0.12); transition: background-color 0.2s ease; font-weight: 500; letter-spacing: 0.03em; }
.hdr-nav-link:hover { background-color: rgba(255, 255, 255, 0.10); }

/* ==== YEH AAPKA CSS FIX HAI ==== */
/* Purane '.hdr-nav-link-home' ko in do rules se badal diya gaya hai */
.hdr-nav-link.active-link {
    background-color: #891a0e;
}
.hdr-nav-link.active-link:hover {
    background-color: #6e150b;
}
/* =============================== */


@media (min-width: 1024px) {
    .hdr-mobile-toggle { display: none; }
    .hdr-nav-links { display: flex !important; flex-direction: row; }
    .hdr-nav-link { text-align: center; border-bottom: none; border-right: 1px solid rgba(255, 255, 255, 0.15); }
    .hdr-nav-link:last-child { border-right: none; }
}

/* ============================================================
   2. HERO SECTION (hero- prefix)
   ============================================================ */
.hero-section-wrapper {
    width: 100%;
    
    /* BACKGROUND CHANGES HERE */
    background-color: transparent;
    background-image: url('images/background.png');
    
    /* Cover se image cut off ho kay zoomed lghti thy jisk leyeh 100% 100% Use keyh gaya jisey completely poora screen mai without border hide aye or Zoom-Out lagay  */
    background-size: 100% 100%; 
    /* (Notes): Agar stretch lage toh app iss ki jaga ( background-size: 100% auto; ) ya simply wapis ( background-size: cover; ) kr k usky samney background-position: center top; use karyin */

    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    
    position: relative;
    z-index: 80;
    overflow: hidden;
    /* Images and layout pulled UP via decreased top padding */
    padding-top: 1rem; 
    padding-bottom: 4rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    user-select: none;
    -webkit-user-select: none;
}

.hero-falling-flowers-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 5;
}

@keyframes heroFall {
    0%   { transform: translateY(-150px) rotate(0deg); }
    100% { transform: translateY(120vh) rotate(360deg); }
}
@-webkit-keyframes heroFall {
    0%   { -webkit-transform: translateY(-150px) rotate(0deg); transform: translateY(-150px) rotate(0deg); }
    100% { -webkit-transform: translateY(120vh) rotate(360deg); transform: translateY(120vh) rotate(360deg); }
}

.hero-falling-flower {
    position: absolute;
    top: -150px;
    animation-name: heroFall;
    -webkit-animation-name: heroFall;
    animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    pointer-events: none;
}
.hero-falling-flower img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.9;
    filter: drop-shadow(0px 8px 12px rgba(0, 0, 0, 0.4)) contrast(1.1) saturate(1.1);
    -webkit-filter: drop-shadow(0px 8px 12px rgba(0, 0, 0, 0.4)) contrast(1.1) saturate(1.1);
    border: none;
}

.hero-toggle-btn {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 150;
    padding: 0.75rem;
    background: rgba(255, 247, 239, 0.93);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid #CA9C46; /* Matching golden border */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 9999px;
    color: #fff200; /* Premium Gold button color */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.hero-toggle-btn:hover {
    background: #FDF4E1; /* Light golden/cream background */
}

.hero-main-heading {
    color: #fff200; /* Pure Premium Gold Header */
    font-size: clamp(1rem, 3vw, 3rem);
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    word-spacing: 0.2em;
    /* Margins removed at the bottom to shift the entire layout strictly up */
    margin-bottom: clamp(1rem, 3vw, 2.5rem); 
    font-family: 'Playfair Display', serif;
    /* Enhances premium shiny contrast look over light backdrops */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15); 
}

.hero-main-layout {
    width: 100%;
    margin: 0 auto; 
    /* Adding subtle margin reduction here keeps the top-pull robust */
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    /* gap: clamp(1rem, 4vw, 3.5rem); */
    position: relative;
    margin-top: -60px;
}

.hero-side-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 28%;
    margin-bottom: 3%;
    z-index: 20;
    /* Extra subtle translation pushing side layouts up slightly */
    transform: translateY(-0.5rem); 
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: 450px;
    /* TITTLE KO UPPER LENAY KAY LIYEY reduced gap. Yahan pehle extra margin dia hoa that  */
    margin-bottom: clamp(0.2rem, 1vw, 0.5rem); 
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: none;
    outline: none;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    -webkit-filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.5s;
}
.hero-img-wrapper:hover img {
    transform: scale(1.05);
}

.hero-img-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.hero-img-wrapper:hover .hero-img-overlay {
    opacity: 1;
}
.hero-img-overlay span {
    color: #FFFFFF;
    font-weight: 500;
    padding: 0 0.5rem;
    font-size: clamp(0.7rem, 1.2vw, 1rem); 
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.hero-label-area {
    text-align: center;
    font-weight: bold;
}

.hero-label-area h2 {
    font-size: clamp(1.2rem, 1.8vw, 1.875rem); 
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    /* Primary PREMIUM GOLD Shade Added */
    color: #fff200; 
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); 
}
.hero-label-area h3 {
    font-size: clamp(1rem, 1.4vw, 1.5rem); 
    margin-top: 0.125rem;
    font-family: 'Playfair Display', serif;
    /* Complementing secondary Light GOLD Added */
    color: #cca458; 
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08); 
}

.hero-center-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 35%;
    position: relative;
    z-index: 10;
    /* Moved Up Instead of Moved down -> Pehle translateY(5%) (Neeche ko tha), mainay (-) me upar laga dihai hai */
    transform: translateY(-1.5rem);
}
.hero-center-col .hero-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
.hero-center-col .hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    -webkit-filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.5s;
}
.hero-center-col .hero-img-wrapper:hover img {
    transform: scale(1.02);
}

.hero-right-img-mask {
    object-fit: cover !important;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
}

/* ===========================
   Hero Responsive Design Fixes
   =========================== */
@media (max-width: 480px) {
    .hero-section-wrapper {
        padding-top: 1rem;
        padding-bottom: 2.5rem;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
        background-attachment: scroll;
        /* Chhoti screen paay aspect adjustement: agar "100% 100%" thek na bethe you can easily modify background for phone explicitly here using back to cover */
    }
    .hero-main-heading {
        font-size: clamp(0.85rem, 4.5vw, 1.4rem);
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-main-layout {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .hero-side-col,
    .hero-center-col {
        width: 90%;
        max-width: 400px;
        margin-bottom: 0;
    }
    /* Set to gently negative instead of baseline, matching the top upward placement */
    .hero-center-col {
        transform: translateY(-1rem);
        order: -1;
    }
    .hero-side-col {
        transform: translateY(0);
    }
    .hero-side-col .hero-img-wrapper {
        max-height: 350px;
    }
    .hero-center-col .hero-img-wrapper {
        max-height: 500px;
    }
    .hero-label-area h2 {
        font-size: 1.65rem !important;
    }
    .hero-label-area h3 {
        font-size: 1.15rem !important;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .hero-side-col {
        width: 28%;
    }
    .hero-center-col {
        width: 40%;
    }
    .hero-side-col .hero-img-wrapper {
        max-height: 380px;
    }
    .hero-center-col .hero-img-wrapper {
        max-height: 520px;
    }
    .hero-label-area h2 {
        font-size: 1.3rem !important;
    }
    .hero-label-area h3 {
        font-size: 1.05rem !important;
    }
}

/* ============================================================
   3. ABOUT SECTION (abt- prefix)
   ============================================================ */
.abt-main-container {
    width: 100%;
    min-height: 100dvh;
    background: #FFF7EF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0px 40px 0px !important;
    overflow-x: hidden;
    position: relative;
    z-index: 70;
}

.abt-grid-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

.abt-left-column {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
}

.abt-decor-square {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 24px;
    height: 24px;
    background: #891a0e;
    z-index: 0;
    border-radius: 2px;
}

.abt-image-container {
    position: relative;
    z-index: 10;
    width: 100%;
    aspect-ratio: 4.5/5;
    border-top-left-radius: 120px;
    border-top-right-radius: 6px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 120px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}

.abt-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.abt-overlay {
    position: absolute;
    bottom: -32px;
    right: 0;
    z-index: 30;
    transform: scale(0.65);
    transform-origin: bottom right;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.abt-right-column {
    padding-left: 0;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.abt-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #cf4700;
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 12px;
    text-transform: uppercase;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}
.abt-kicker-om {
    font-size: 20px;
    line-height: 1;
}

.abt-heading {
    font-size: 38px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #442c3d;
    line-height: 1.1;
    letter-spacing: -0.025em;
}
.abt-heading br {
    display: none;
}

.abt-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 20px;
    column-gap: 16px;
    padding-top: 16px;
    padding-bottom: 8px;
    width: 100%;
    max-width: 340px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

.abt-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.abt-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    background: #FFE8D5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.abt-feature-icon svg {
    width: 16px;
    height: 16px;
    color: #cf4700;
    stroke-width: 3.5px;
}

.abt-feature-text {
    color: #442c3d;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
}

.abt-quote-section {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 16px;
    padding-top: 8px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.abt-quote-bars {
    display: flex;
    gap: 6px;
    align-items: flex-start;
    padding-top: 6px;
}
.abt-bar-1 {
    width: 1.5px;
    height: 32px;
    background: rgba(0, 0, 0, 0.8);
}
.abt-bar-2 {
    width: 2px;
    height: 64px;
    background: #891a0e;
}

.abt-quote-text {
    color: #6b7280;
    font-weight: 500;
    line-height: 1.6;
    max-width: 420px;
    font-size: 16px;
    letter-spacing: 0.025em;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

.abt-button-wrap {
    padding-top: 16px;
}

.abt-learn-more-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1.5px solid #FFD4B0;
    border-radius: 9999px;
    padding: 12px 24px;
    color: #cf4700;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    background: transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: 'Montserrat', sans-serif;
}
.abt-learn-more-btn:hover {
    background: #FFE8D5;
    border-color: #e05200;
}
.abt-learn-more-btn svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.5px;
}

/* Diya & Agarbatti Styles */
.abt-diya {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.abt-flame-container {
    position: absolute;
    bottom: 30px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 64px;
    justify-content: flex-end;
    pointer-events: none;
}
.abt-flame-glow {
    position: absolute;
    bottom: -15px;
    width: 128px;
    height: 128px;
    background: #ff7b00;
    opacity: 0.2;
    filter: blur(40px);
    border-radius: 9999px;
    animation: abtPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes abtPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}
.abt-flame-authentic {
    width: 18px;
    height: 48px;
    background: radial-gradient(100% 100% at 50% 85%, transparent 5%, rgba(255, 255, 255, 0.9) 15%, #ffeb3b 35%, #ff7300 65%, rgba(255, 0, 0, 0) 95%);
    box-shadow: 0 0 15px rgba(255, 150, 0, 0.9), 0 -15px 30px rgba(255, 60, 0, 0.7);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: abtFlameFlicker 0.12s infinite alternate ease-in-out;
    transform-origin: center bottom;
    filter: blur(0.5px);
    position: relative;
    display: flex;
    justify-content: center;
}
@keyframes abtFlameFlicker {
    0%   { transform: scale(1) skewX(0deg); opacity: 0.95; }
    25%  { transform: scale(1.02, 1.05) skewX(1deg); opacity: 1; }
    50%  { transform: scale(0.98, 0.98) skewX(-1deg); opacity: 0.9; }
    75%  { transform: scale(1.02, 1.04) skewX(1deg); opacity: 1; }
    100% { transform: scale(1) skewX(-1deg); opacity: 0.95; }
}
.abt-flame-core {
    position: absolute;
    bottom: 4px;
    width: 8px;
    height: 20px;
    background: radial-gradient(100% 100% at 50% 80%, rgba(20, 100, 255, 0.5) 0%, rgba(255, 255, 255, 0.9) 50%, #ffe96f 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    filter: blur(1px);
}
.abt-wick {
    position: absolute;
    bottom: 24px;
    width: 3px;
    height: 16px;
    background: linear-gradient(to top, black, #1a0f08, #e5531b);
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    z-index: 10;
    opacity: 0.9;
    filter: blur(0.5px);
}
.abt-bowl {
    position: relative;
    width: 130px;
    height: 55px;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
    z-index: 0;
    margin-top: 20px;
}
.abt-bowl-rim-outer {
    position: absolute;
    top: 3px; left: -3px;
    width: 136px;
    height: 30px;
    background: linear-gradient(to right, #ffd700, #fff5b0, #b8860b);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    border: 0.5px solid #a16207;
}
.abt-bowl-rim-inner {
    position: absolute;
    top: 5px; left: 0;
    width: 130px;
    height: 26px;
    background: linear-gradient(to bottom, #c41e00, #800b00);
    border-radius: 50%;
    z-index: 2;
}
.abt-bowl-inner {
    position: absolute;
    top: 8px; left: 5px;
    width: 120px;
    height: 20px;
    background: linear-gradient(to bottom, #4a1f03, #260e00);
    border-radius: 50%;
    z-index: 3;
    box-shadow: inset 0 4px 12px 4px rgba(0, 0, 0, 0.9);
    border: 1px solid #3e1b00;
}
.abt-oil-reflection-1 {
    position: absolute;
    top: 2px; left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 10px;
    background: linear-gradient(to bottom, #ff8c00, transparent);
    opacity: 0.4;
    border-radius: 50%;
    filter: blur(2px);
}
.abt-oil-reflection-2 {
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 3px;
    background: #fff5b0;
    opacity: 0.5;
    border-radius: 50%;
    filter: blur(1px);
}
.abt-bowl-body {
    position: absolute;
    top: 16px; left: 0;
    width: 130px;
    height: 39px;
    background: linear-gradient(to bottom, #c85a1a, #853205, #3a1200);
    border-bottom-left-radius: 65px;
    border-bottom-right-radius: 65px;
    z-index: 0;
    overflow: hidden;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.5);
}
.abt-base-stand {
    position: absolute;
    bottom: -6px; left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 8px;
    background: linear-gradient(to right, #3a1200, #6e2900, #3a1200);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    z-index: -1;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid #2a0e00;
}
.abt-detail-patterns {
    position: absolute;
    top: 4px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding-left: 10px;
    padding-right: 10px;
    opacity: 0.4;
}
.abt-detail-pattern {
    width: 8px;
    height: 12px;
    border: 2px solid #ffd700;
    border-radius: 50%;
}

/* Agarbatti */
.abt-agarbatti {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.abt-sticks-container {
    position: relative;
    width: 128px;
    height: 176px;
}
.abt-stick {
    position: absolute;
    bottom: 0; left: 50%;
    width: 3px;
    height: 176px;
    transform-origin: bottom;
}
.abt-stick-1 { transform: translateX(-16px) translateY(16px) rotate(-28deg); }
.abt-stick-2 { transform: translateX(-4px) rotate(-8deg); }
.abt-stick-3 { transform: translateX(4px) rotate(12deg); }
.abt-stick-4 { transform: translateX(16px) translateY(16px) rotate(25deg); }
.abt-bamboo-base {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 30px;
    background: #d2a679;
    border-bottom-left-radius: 9999px;
    border-bottom-right-radius: 9999px;
}
.abt-incense-material {
    position: absolute;
    bottom: 30px; left: 0;
    width: 4px;
    margin-left: -0.5px;
    height: calc(100% - 30px);
    background: linear-gradient(to right, #1a1818, #2a2a2a, #111111);
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
    box-shadow: 1px 0 2px rgba(0, 0, 0, 0.5);
}
.abt-burning-tip {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #d9381e;
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
    box-shadow: 0 0 8px #ef4444, 0 0 12px #f97316;
}
.abt-glowing-ember {
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 2px;
    background: #fff3b0;
    border-radius: 9999px;
    margin-top: 1px;
    box-shadow: 0 0 6px 2px #fff3b0;
}
.abt-smoke-container {
    position: absolute;
    bottom: 100%; left: 50%;
    margin-top: -2px;
    transform: translateX(-50%);
    width: 2px;
    height: 150px;
    pointer-events: none;
    z-index: 50;
}
.abt-smoke-wave {
    position: absolute;
    bottom: 0; left: 50%;
    width: 14px;
    height: 100px;
    background: radial-gradient(ellipse at bottom, rgba(70, 75, 80, 0.3) 0%, rgba(90, 95, 100, 0.1) 60%, transparent 100%);
    filter: blur(6px);
    border-radius: 50%;
    transform-origin: bottom center;
    opacity: 0;
}
.abt-smoke-wave-1 { animation: abtSmokeLeft 4.5s infinite cubic-bezier(0.5, 0, 0.3, 1); }
.abt-smoke-wave-2 {
    width: 18px; height: 120px;
    animation: abtSmokeRight 5.5s infinite cubic-bezier(0.5, 0, 0.3, 1) 1.2s;
    background: radial-gradient(ellipse at bottom, rgba(60, 65, 70, 0.25) 0%, rgba(80, 85, 90, 0.08) 60%, transparent 100%);
}
.abt-smoke-wave-3 {
    width: 10px; height: 140px;
    animation: abtSmokeLeft 6s infinite cubic-bezier(0.5, 0, 0.3, 1) 2.5s;
    background: radial-gradient(ellipse at bottom, rgba(80, 85, 90, 0.2) 0%, rgba(100, 105, 110, 0.05) 60%, transparent 100%);
}
@keyframes abtSmokeLeft {
    0%   { transform: translateX(-50%) translateY(0) scaleX(0.3) scaleY(0.3) rotate(0deg); opacity: 0; filter: blur(3px); }
    15%  { opacity: 0.6; filter: blur(5px); }
    45%  { transform: translateX(calc(-50% - 30px)) translateY(-70px) scaleX(1.8) scaleY(1.2) rotate(-15deg); opacity: 0.3; filter: blur(8px); }
    75%  { transform: translateX(calc(-50% + 20px)) translateY(-130px) scaleX(3.5) scaleY(1.5) rotate(10deg); opacity: 0.15; filter: blur(14px); }
    100% { transform: translateX(calc(-50% - 40px)) translateY(-200px) scaleX(5) scaleY(2.2) rotate(-25deg); opacity: 0; filter: blur(20px); }
}
@keyframes abtSmokeRight {
    0%   { transform: translateX(-50%) translateY(0) scaleX(0.3) scaleY(0.3) rotate(0deg); opacity: 0; filter: blur(3px); }
    15%  { opacity: 0.5; filter: blur(5px); }
    45%  { transform: translateX(calc(-50% + 30px)) translateY(-70px) scaleX(1.8) scaleY(1.2) rotate(15deg); opacity: 0.25; filter: blur(8px); }
    75%  { transform: translateX(calc(-50% - 20px)) translateY(-130px) scaleX(3.5) scaleY(1.5) rotate(-10deg); opacity: 0.1; filter: blur(14px); }
    100% { transform: translateX(calc(-50% + 40px)) translateY(-200px) scaleX(5) scaleY(2.2) rotate(25deg); opacity: 0; filter: blur(20px); }
}
.abt-brass-stand {
    position: relative;
    margin-top: -16px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}
.abt-top-plate {
    width: 40px; height: 16px;
    background: linear-gradient(to right, #d08f3e, #f9e29f, #b8761e);
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
    box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.5);
    z-index: 10;
    border-bottom: 1px solid #a66a20;
}
.abt-top-plate-hole {
    width: 16px; height: 6px;
    background: #4a2e10;
    border-radius: 50%;
    margin-left: auto; margin-right: auto;
    margin-top: 4px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6);
}
.abt-brass-plate-rim {
    width: 120px; height: 20px;
    background: linear-gradient(to right, #8e5211, #fae199, #8e5211);
    border-radius: 50%;
    margin-top: -8px;
    border: 0.5px solid #f5db91;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.abt-plate-inner {
    width: 110px; height: 14px;
    background: linear-gradient(to bottom, #a46416, #b37522);
    border-radius: 50%;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
}
.abt-base-body {
    width: 120px; height: 26px;
    background: linear-gradient(to bottom, #b37522, #e2be64, #73430c);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    margin-top: -10px;
    z-index: -1;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.abt-base-stem {
    width: 28px; height: 16px;
    background: linear-gradient(to right, #8e5211, #f9e29f, #8e5211);
    margin-top: -2px;
    z-index: -2;
    border-radius: 2px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-left: 1px solid #8e5211;
    border-right: 1px solid #8e5211;
}
.abt-base-foot {
    width: 70px; height: 12px;
    background: linear-gradient(to right, #5c3205, #ca8a25, #5c3205);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    margin-top: -2px;
    z-index: -3;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.6);
}

/* About Responsive */
@media (max-width: 480px) {
    .abt-main-container {
        padding: 36px 16px 80px 16px;
    }
    .abt-heading {
        font-size: 28px;
    }
    .abt-feature-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
    .abt-quote-text {
        font-size: 14px;
    }
}

@media (min-width: 480px) and (max-width: 639px) {
    .abt-heading {
        font-size: 32px;
    }
}

@media (min-width: 640px) {
    .abt-heading {
        font-size: 44px;
    }
    .abt-heading br {
        display: block;
    }
    .abt-image-container {
        border-top-left-radius: 200px;
        border-bottom-right-radius: 200px;
    }
}

@media (min-width: 768px) {
    .abt-main-container {
        padding: 64px 24px 160px 24px;
    }
    .abt-grid-container {
        gap: 80px;
    }
    .abt-left-column {
        max-width: 500px;
    }
    .abt-heading {
        font-size: 48px;
    }
    .abt-right-column {
        gap: 32px;
    }
    .abt-overlay {
        bottom: -48px;
        right: -32px;
        transform: scale(0.75);
    }
    .abt-image-container {
        border-top-left-radius: 160px;
        border-bottom-right-radius: 160px;
    }
    .abt-quote-text {
        line-height: 1.7;
        font-size: 17px;
    }
    .abt-learn-more-btn {
        padding: 14px 32px;
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .abt-main-container {
        padding: 64px 64px 128px 64px;
    }
    .abt-grid-container {
        grid-template-columns: 1fr 1.1fr;
        gap: 96px;
    }
    .abt-left-column {
        max-width: 500px;
        margin-left: 0;
        margin-right: 0;
    }
    .abt-right-column {
        padding-left: 16px;
        margin-top: 0;
        align-items: flex-start;
        text-align: left;
        gap: 32px;
    }
    .abt-heading {
        font-size: 54px;
    }
    .abt-kicker {
        font-size: 13px;
        justify-content: flex-start;
    }
    .abt-feature-grid {
        row-gap: 28px;
        column-gap: 32px;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }
    .abt-quote-section {
        justify-content: flex-start;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        gap: 20px;
    }
    .abt-quote-text {
        line-height: 1.75;
    }
    .abt-overlay {
        right: -16px;
        transform: scale(0.8);
        gap: 40px;
    }
    .abt-image-container {
        border-top-left-radius: 240px;
        border-bottom-right-radius: 240px;
    }
    .abt-feature-icon {
        width: 36px;
        height: 36px;
    }
    .abt-feature-icon svg {
        width: 18px;
        height: 18px;
    }
    .abt-feature-text {
        font-size: 17px;
    }
    .abt-decor-square {
        top: -16px;
        right: -16px;
    }
}

/* ============================================================
   SERVICES SECTION (svc- prefix) - REFINED FOR REAL IMAGES
   ============================================================ */
.services-section {
    height: 450vh;
    background: #FFF7EF;
    color: #0a0a0a;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}
.services-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

/* Scroll Buttons Config etc. */
.svc-fixed-ui {
    position: absolute;
    top: 16px; right: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 50;
}
@media (min-width: 768px) {
    .svc-fixed-ui { top: 28px; right: 28px; }
}
.services-track {
    display: flex;
    flex-wrap: nowrap;
    height: 100%;
    width: max-content;
    position: relative;
    z-index: 10;
    will-change: transform;
}

/* ── HERO PANEL ── */
.svc-hero-panel {
    width: 100vw;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #111; 
    overflow: hidden;
}
.svc-hero-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('images/thumbnail.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.55) saturate(1.0); 
    transition: opacity .1s ease;
}
.svc-parallax-bg {
    position: absolute;
    inset: -15%;
    width: 130%;
    height: 130%;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
    transition: opacity .4s ease;
}

/* Corner Animations */
.svc-corners { position: absolute; inset: 0; pointer-events: none; transition: opacity .5s ease; z-index: 2; }
.svc-corner { position: absolute; }
.svc-corner svg { width: 22px; height: 22px; color: yellow; }
@media (min-width: 768px) { .svc-corner svg { width: 36px; height: 36px; } }
@media (min-width: 1024px) { .svc-corner svg { width: 44px; height: 44px; } }
.svc-tl { top: 18px; left: 18px; } .svc-tr { top: 18px; right: 18px; }
.svc-bl { bottom: 18px; left: 18px; } .svc-br { bottom: 18px; right: 18px; }
@media (min-width: 768px) {
    .svc-tl { top: 36px; left: 36px; } .svc-tr { top: 36px; right: 36px; }
    .svc-bl { bottom: 36px; left: 36px; } .svc-br { bottom: 36px; right: 36px; }
}

/* ── HERO CONTENT ── */
.svc-hero-content {
    position: relative;
    display: inline-block;
    padding: 0 14px;
    z-index: 3;
}
.svc-meta {
    position: absolute; top: -22px; left: 0;
    display: flex; align-items: center; gap: 5px;
    font-size: 9px; letter-spacing: .2em; font-weight: 500;
    text-transform: uppercase; color: #fff;
    font-family: 'Montserrat', sans-serif;
}
@media (min-width: 768px) { .svc-meta { top: -38px; font-size: 11px; } }
.svc-meta-dot { width: 6px; height: 6px; background: yellow; border-radius: 50%; }

.svc-counter {
    position: absolute; top: -28px; right: 0;
    display: flex; align-items: center; gap: 8px;
    font-size: 16px; font-weight: 300; color: #fff;
    font-family: 'Montserrat', sans-serif;
}
@media (min-width: 768px)  { .svc-counter { top: -48px; font-size: 28px; gap: 14px; } }
@media (min-width: 1024px) { .svc-counter { font-size: 38px; gap: 36px; } }
.svc-counter-line { width: 16px; height: 1px; background: rgba(255, 255, 255, 0.5); }
@media (min-width: 768px) { .svc-counter-line { width: 28px; height: 2px; } }

.svc-title-wrap {
    position: relative; transform: scaleY(1.08); transform-origin: bottom;
}
.svc-title-bg, .svc-title-fill-txt {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 9vw, 96px);
    line-height: 1; text-transform: uppercase; letter-spacing: -.02em; white-space: nowrap;
}
.svc-title-bg { color: rgba(255, 255, 255, 0.30); user-select: none; }
.svc-title-fill { position: absolute; top: 0; left: 0; height: 100%; overflow: hidden; width: 0%; transition: none; }
.svc-title-fill-txt { color: yellow; }

.svc-scroll-ind {
    position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5); font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 5px; font-family: 'Montserrat', sans-serif; z-index: 3;
}
.svc-scroll-line { width: 1px; height: 22px; background: rgba(255, 255, 255, 0.12); position: relative; overflow: hidden; }
.svc-scroll-dot { position: absolute; top: 0; left: 0; width: 100%; height: 50%; background: #cf4700; animation: scrollDot 1.5s linear infinite; }
@keyframes scrollDot { from { transform: translateY(-100%); } to { transform: translateY(200%); } }

/* ── SERVICE PANELS ── */
.svc-panel {
    width: 90vw;
    height: 80%;
    align-self: center;
    flex-shrink: 0;
    position: relative;
    border-right: 1px solid #FFD8B8;
    padding: 30px 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background: #FFF7EF;
    border-radius: 12px;
}

@media (min-width: 500px)  { .svc-panel { width: 80vw; } }
@media (min-width: 640px)  { .svc-panel { width: 68vw; padding: 40px 24px; } }
@media (min-width: 768px)  { .svc-panel { width: 50vw; padding: 56px 32px 32px; } }

@media (min-width: 1024px) { 
    .svc-panel { 
        width: 42vw; 
        padding: 56px 48px; 
        height: 100%;       
        align-self: stretch;
        border-radius: 0;
    } 
}
@media (min-width: 1280px) { .svc-panel { width: 38vw; } }

.svc-panel-bg-num {
    position: absolute;
    bottom: -10px; right: -5px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(90px, 14vw, 160px);
    line-height: 1;
    color: rgba(207, 71, 0, 0.05);
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.svc-panel-top { display: flex; justify-content: space-between; align-items: flex-start; z-index: 10; position: relative;}
.svc-panel-num { font-family: 'Montserrat', sans-serif; font-size: clamp(32px, 5.5vw, 76px); font-weight: 300; color: #0a0a0a; line-height: 1; letter-spacing: -.05em; opacity: .07; transform: translateY(8px); transition: opacity .5s ease, transform .5s ease; }
.svc-panel-num.in-view { opacity: 1; transform: translateY(0); }
.svc-lets-work { font-family: 'Playfair Display', serif; font-size: clamp(13px, 1.6vw, 20px); text-transform: uppercase; display: flex; align-items: center; color: #0a0a0a; margin-top: 5px; opacity: 0; transform: translateX(12px); transition: opacity .5s ease .1s, transform .5s ease .1s; font-weight: 600;}
.svc-panel.in-view .svc-lets-work { opacity: 1; transform: translateX(0); }

.svc-panel-icon {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 5;
    padding: 10px 0;
    position: relative;
}

.svc-panel-icon img {
    width: 100%;
    height: auto;
    max-height: 30vh;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
    opacity: 0.1;
    transform: scale(.9) translateY(15px);
    transition: opacity .8s ease, transform .8s cubic-bezier(0.1, 0.9, 0.2, 1);
}

@media (min-width: 768px) {
    .svc-panel-icon img { max-height: 380px; border-radius: 18px; aspect-ratio: 4 / 3;} 
}

.svc-panel-icon img.in-view {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.svc-panel-bottom {
    width: 100%;
    z-index: 10;
    margin-top: auto;
    padding-top: 5px;
    opacity: 0;
    position: relative;
    transform: translateY(15px);
    transition: opacity .55s ease .18s, transform .55s ease .18s;
}
.svc-panel.in-view .svc-panel-bottom {
    opacity: 1;
    transform: translateY(0);
}
.svc-panel-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2.2vw, 30px);
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: .04em;
    color: #0a0a0a;
}
@media (min-width: 768px) { .svc-panel-title { margin-bottom: 12px; } }
.svc-panel-desc {
    color: #0a0a0a;
    font-size: clamp(13.5px, 1.2vw, 16px);
    line-height: 1.6;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    color: #333333;
}

.svc-panel::before {
    content: '';
    position: absolute; left: 0; top: 0; width: 4px; height: 0%;
    background: #cf4700; transition: height .6s ease; z-index: 20;
}
.svc-panel.in-view::before { height: 100%; }

/* ============================================================
   5. RESONANCE SECTION (rsn- prefix)
   ============================================================ */
.rsn-section-wrapper {
    padding: 5rem 5%;
    background: radial-gradient(circle at 50% -20%, #FFE8D5 0%, #FFF7EF 80%);
    position: relative;
    z-index: 50;
    max-width: 100%;
    overflow-x: hidden;
}

.rsn-section-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.rsn-heading {
    text-align: center;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    margin-bottom: 3.5rem;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
    color: #cf4700;
}
.rsn-heading::after {
    content: "✦ ॥ ॐ ॥ ✦";
    display: block;
    color: #cf4700;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.rsn-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.rsn-col-center-image {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.rsn-image-wrapper {
    width: 100%;
    overflow: hidden;
}
.rsn-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

.rsn-image-caption {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #1C120C;
    line-height: 1.6;
}
.rsn-caption-author {
    margin-top: 1rem;
    font-weight: bold;
    color: #cf4700;
    font-family: 'Playfair Display', serif;
}

.rsn-col-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rsn-content-card {
    background: #FFF7EF;
    border: 1px solid rgba(207, 71, 0, 0.12);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(207, 71, 0, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}
.rsn-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(207, 71, 0, 0.13);
}

.rsn-test-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #1C120C;
    margin: 0;
    line-height: 1.5;
}

.rsn-stars {
    color: #FFB300;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

/* Resonance Responsive */
@media (max-width: 480px) {
    .rsn-section-wrapper {
        padding: 2.5rem 5%;
    }
    .rsn-heading {
        margin-bottom: 2rem;
    }
    .rsn-image-caption {
        font-size: 0.9rem;
    }
    .rsn-test-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
    .rsn-section-wrapper {
        padding: 4rem 5%;
    }
    .rsn-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .rsn-col-center-image {
        order: 1;
    }
    .rsn-col-content {
        order: 2;
    }
}

/* ============================================================
   6. INVOKE SECTION (inv- prefix)
   ============================================================ */

/* ===== Invoke Section ===== */
        #invoke-section {
            width: 100%;
            background: #FFEDE0;
            display: block;
            overflow: hidden; /* CRITICAL: hides the top chain start & prevents spilling to other sections */
            padding: 80px 0;
            position: relative;
        }

        #invoke-section .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box;
            z-index: 5;
        }

        #invoke-section .form-card {
            position: relative;
            width: 90%;
            max-width: 500px;
            margin: 0 auto 40px auto;
            background: #FFE0C8;
            padding: 40px 24px;
            border-radius: 6px;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
            z-index: 20;
        }

        #invoke-section .form-header {
            text-align: center;
            margin-bottom: 24px;
        }

        #invoke-section .subtitle {
            font-size: 0.6rem;
            letter-spacing: 0.25em;
            font-weight: 500;
            color: #6c6157;
            text-transform: uppercase;
            margin-bottom: 16px;
            font-family: 'Montserrat', sans-serif;
        }

        #invoke-section .form-header h2 {
            font-size: 2rem;
            font-family: 'Playfair Display', serif;
            color: #44382c;
            margin-bottom: 16px;
        }

        #invoke-section .description {
            font-size: 0.8rem;
            color: #6c6157;
            line-height: 1.625;
            padding: 0 8px;
            font-family: 'Montserrat', sans-serif;
        }

        #invoke-section form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        #invoke-section .name-row {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        #invoke-section input[type="text"],
        #invoke-section input[type="email"],
        #invoke-section textarea {
            width: 100%;
            background: #FFEADB;
            border: 1px solid #FFD0A8;
            padding: 0.85rem 16px;
            font-size: 0.875rem;
            font-family: 'Montserrat', sans-serif;
            color: #42352B;
            outline: none;
            transition: border-color 0.15s;
            box-sizing: border-box;
            border-radius: 4px;
        }

        #invoke-section input::placeholder,
        #invoke-section textarea::placeholder {
            color: #aea59b;
        }

        #invoke-section input:focus,
        #invoke-section textarea:focus {
            border-color: #cf4700;
        }

        #invoke-section textarea {
            resize: none;
        }

        #invoke-section button {
            width: 100%;
            background: #cf4700;
            color: white;
            padding: 12px;
            margin-top: 4px;
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.025em;
            border: none;
            cursor: pointer;
            border-radius: 4px;
            font-family: 'Montserrat', sans-serif;
            transition: background-color 0.15s;
        }
        #invoke-section button:hover {
            background: #891a0e;
        }

        #invoke-section .right-column {
            width: 100%;
            max-width: 800px;
            position: relative;
            padding: 0 0 60px 0;
            margin: 0 auto;
            z-index: 10;
        }

        #invoke-section .mandala-watermark {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            color: #FFB888;
            opacity: 0.15;
            pointer-events: none;
            line-height: 0;
        }
        #invoke-section .mandala-watermark svg {
            width: 100%;
            max-width: 500px;
        }

        #invoke-section .content {
            width: 100%;
            position: relative;
            z-index: 10;
        }

        #invoke-section .content h1 {
            font-size: 2.2rem;
            line-height: 1.2;
            font-family: 'Playfair Display', serif;
            color: #44382c;
            margin-bottom: 32px;
            letter-spacing: -0.025em;
            text-align: center;
        }
        #invoke-section .content h1 br {
            display: none;
        }

        #invoke-section .accordion {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        #invoke-section .accordion-item {
            border-bottom: 1px solid #FFD0A8;
            cursor: pointer;
            overflow: hidden;
        }

        #invoke-section .accordion-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 0;
        }

        #invoke-section .accordion-title {
            font-size: 1rem;
            color: #554940;
            transition: color 0.15s;
            font-family: 'Montserrat', sans-serif;
        }
        #invoke-section .accordion-item:hover .accordion-title {
            color: #cf4700;
        }
        #invoke-section .accordion-title.active {
            color: #cf4700;
            font-weight: 500;
        }

        #invoke-section .chevron {
            margin-left: 16px;
            flex-shrink: 0;
            transition: transform 0.3s, color 0.15s;
            transform: rotate(-90deg);
            color: #44382c;
        }
        #invoke-section .chevron.active {
            transform: rotate(0deg);
            color: #cf4700;
        }

        #invoke-section .accordion-body {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
        }
        #invoke-section .accordion-body.active {
            max-height: 500px;
            opacity: 1;
        }

        #invoke-section .accordion-body p {
            padding-bottom: 1.2rem;
            padding-right: 32px;
            color: #6c6157;
            font-size: 0.9rem;
            line-height: 1.625;
            font-family: 'Montserrat', sans-serif;
        }

        /* ===== FIXED LAMP STYLES (top hidden chain) ===== */
        #invoke-section .lamp {
            position: absolute;
            z-index: 1;
            pointer-events: none;
            transform-origin: top center; /* rotation from the hidden anchor point */
        }

        /* Base (mobile) - top negative hides chain start */
        #invoke-section .lamp {
            width: 70px;
            height: 140px;
            top: -30px;   /* hides top of chain, lamp hangs down */
        }
        #invoke-section .lamp-left {
            left: 5px;
            -webkit-animation: swingLeft 4s ease-in-out infinite alternate;
            animation: swingLeft 4s ease-in-out infinite alternate;
        }
        #invoke-section .lamp-right {
            right: 5px;
            -webkit-animation: swingRight 4s ease-in-out infinite alternate;
            animation: swingRight 4s ease-in-out infinite alternate;
        }

        /* Keyframes (global needed) */
        @-webkit-keyframes swingLeft {
            from { -webkit-transform: rotate(-4deg); transform: rotate(-4deg); }
            to   { -webkit-transform: rotate(4deg);  transform: rotate(4deg);  }
        }
        @keyframes swingLeft {
            from { transform: rotate(-4deg); }
            to   { transform: rotate(4deg);  }
        }
        @-webkit-keyframes swingRight {
            from { -webkit-transform: rotate(4deg);  transform: rotate(4deg);  }
            to   { -webkit-transform: rotate(-4deg); transform: rotate(-4deg); }
        }
        @keyframes swingRight {
            from { transform: rotate(4deg);  }
            to   { transform: rotate(-4deg); }
        }
        @-webkit-keyframes flicker {
            0%   { -webkit-transform: scaleY(1)    scaleX(1)    rotate(-2deg); transform: scaleY(1)    scaleX(1)    rotate(-2deg); }
            25%  { -webkit-transform: scaleY(1.15) scaleX(0.95) rotate(2deg);  transform: scaleY(1.15) scaleX(0.95) rotate(2deg);  }
            50%  { -webkit-transform: scaleY(0.95) scaleX(1.05) rotate(-1deg); transform: scaleY(0.95) scaleX(1.05) rotate(-1deg); }
            75%  { -webkit-transform: scaleY(1.1)  scaleX(0.98) rotate(1deg);  transform: scaleY(1.1)  scaleX(0.98) rotate(1deg);  }
            100% { -webkit-transform: scaleY(1)    scaleX(1)    rotate(0deg);  transform: scaleY(1)    scaleX(1)    rotate(0deg);  }
        }
        @keyframes flicker {
            0%   { transform: scaleY(1)    scaleX(1)    rotate(-2deg); }
            25%  { transform: scaleY(1.15) scaleX(0.95) rotate(2deg);  }
            50%  { transform: scaleY(0.95) scaleX(1.05) rotate(-1deg); }
            75%  { transform: scaleY(1.1)  scaleX(0.98) rotate(1deg);  }
            100% { transform: scaleY(1)    scaleX(1)    rotate(0deg);  }
        }

        #invoke-section .flame {
            -webkit-animation: flicker 0.8s ease-in-out infinite alternate;
            animation: flicker 0.8s ease-in-out infinite alternate;
        }

        /* Responsive adjustments for lamp positions (keeping chain hidden) */
        @media (max-width: 480px) {
            #invoke-section .lamp {
                width: 55px;
                height: 110px;
                top: -25px;   /* hides chain start on very small screens */
            }
            #invoke-section .lamp-left { left: 2px; }
            #invoke-section .lamp-right { right: 2px; }
            #invoke-section .form-card { width: 100%; padding: 28px 16px; }
            #invoke-section .form-header h2 { font-size: 1.6rem; }
        }

        @media (min-width: 481px) and (max-width: 639px) {
            #invoke-section .form-header h2 { font-size: 1.8rem; }
        }

        @media (min-width: 640px) {
            #invoke-section .lamp {
                width: 120px;
                height: 240px;
                top: -60px;   /* hides chain top for tablet */
            }
            #invoke-section .lamp-left { left: 10px; }
            #invoke-section .lamp-right { right: 10px; }

            #invoke-section .form-card { padding: 50px 40px; }
            #invoke-section .form-header { margin-bottom: 32px; }
            #invoke-section .form-header h2 { font-size: 2.3rem; }
            #invoke-section .name-row { flex-direction: row; gap: 16px; }
            #invoke-section .name-row input { width: 50%; }
            #invoke-section .content h1 { font-size: 2.8rem; margin-bottom: 40px; }
            #invoke-section .content h1 br { display: block; }
            #invoke-section .accordion-header { padding: 1.4rem 0; }
            #invoke-section .accordion-body p { font-size: 0.95rem; }
            #invoke-section .mandala-watermark svg { max-width: 700px; }
        }

        @media (min-width: 1024px) {
            #invoke-section .lamp {
                width: 180px;
                height: 360px;
                top: -100px;   /* hides chain top for desktop, lamp appears hanging */
                margin-top: 0; /* reset */
            }
            #invoke-section .lamp-left { left: 0; }
            #invoke-section .lamp-right { right: 0; }

            #invoke-section .container {
                flex-direction: row;
                align-items: flex-start;
                justify-content: space-between;
                gap: 60px;
                padding: 0 50px;
            }
            #invoke-section .form-card {
                top: auto; left: auto; transform: none;
                width: 45%; max-width: 480px; margin: 0; flex-shrink: 0;
            }
            #invoke-section .right-column { width: 55%; max-width: 800px; margin: 0; padding: 0; }
            #invoke-section .content { padding: 0; max-width: 100%; margin: 0; }
            #invoke-section .content h1 { font-size: 3.5rem; text-align: left; line-height: 1.15; }
            #invoke-section .accordion-title { font-size: 1.1rem; }
            #invoke-section .mandala-watermark {
                left: 50%; top: 50%; transform: translate(-50%, -50%); opacity: 0.2;
            }
            #invoke-section .mandala-watermark svg { max-width: 800px; }
        }

        @media (min-width: 1400px) {
            #invoke-section .lamp {
                width: 200px;
                height: 400px;
                top: -120px;   /* fully hides chain on very large screens */
            }
            #invoke-section .content h1 { font-size: 4rem; }
            #invoke-section .container { padding: 0 80px; }
        }

/* ============================================================
   7. CONDUIT / CONTACT SECTION (cnd- prefix)
   ============================================================ */
.cnd-section-wrapper {
    padding: 2rem 5%;
    position: relative;
    background: #FFF7EF;
    z-index: 30;
    max-width: 100%;
    overflow-x: hidden;
}

.cnd-section-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.cnd-heading {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 3.5rem;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
    color: #cf4700;
}
.cnd-heading::after {
    content: "✦ ॥ ॐ ॥ ✦";
    display: block;
    color: #cf4700;
    font-size: 1.2rem;
    margin-top: 1rem;
    opacity: 1;
}

.cnd-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.cnd-card {
    background: linear-gradient(180deg, #FFE8D5, #FFF7EF);
    padding: 40px 20px;
    border-radius: 16px;
    text-align: center;
    border-top: 3px solid rgba(207, 71, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 30px rgba(207, 71, 0, 0.08);
    transition: 0.5s;
    cursor: default;
}
.cnd-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(180deg, rgba(207, 71, 0, 0.08), #FFF7EF);
    border-top-color: #cf4700;
    box-shadow: 0 15px 40px rgba(207, 71, 0, 0.18);
}
.cnd-card i {
    font-size: 3rem;
    color: #cf4700;
    margin-bottom: 20px;
    transition: 0.5s;
}
.cnd-card:hover i {
    transform: scale(1.1);
    color: #891a0e;
}
.cnd-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1C120C;
    font-family: 'Playfair Display', serif;
}
.cnd-card p {
    color: #5D5048;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
}
.cnd-card .cnd-highlight {
    font-family: monospace;
    font-weight: bold;
    font-size: 1.1rem;
    color: #cf4700;
    word-break: break-all;
}

/* Contact Responsive */
@media (max-width: 480px) {
    .cnd-section-wrapper {
        padding: 3rem 4%;
    }
    .cnd-heading {
        margin-bottom: 2rem;
    }
    .cnd-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .cnd-card {
        padding: 28px 16px;
    }
    .cnd-card h4 {
        font-size: 1.2rem;
    }
    .cnd-card p {
        font-size: 0.95rem;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .cnd-section-wrapper {
        padding: 3.5rem 5%;
    }
    .cnd-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .cnd-section-wrapper {
        padding: 4rem 5%;
    }
    .cnd-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* ============================================================
   8. HANUMAN STICKY SECTION
   ============================================================ */
@keyframes hanuman-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes hanuman-spin-reverse {
    from { transform: rotate(360deg); }
    to   { transform: rotate(0deg); }
}
@keyframes hanuman-bounce-hint {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(-10px); }
}

.hanuman-sticky {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
}

.hanuman-sticky .hs-forest-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.4;
    background-image: url('https://images.unsplash.com/photo-1448375240586-882707db888b?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}
.hanuman-sticky .hs-forest-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(to bottom, rgba(26,11,2,0.8), transparent, rgba(26,11,2,1));
    pointer-events: none;
}

.hanuman-sticky .hs-mandala-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    pointer-events: none;
    opacity: 0.8;
    z-index: 1;
}
.hanuman-sticky .hs-mandala-outer-svg {
    position: absolute;
    width: 150vmin;
    height: 150vmin;
    max-width: 1200px;
    max-height: 1200px;
    animation: hanuman-spin 20s linear infinite;
}
.hanuman-sticky .hs-mandala-inner-svg {
    position: absolute;
    width: 120vmin;
    height: 120vmin;
    max-width: 950px;
    max-height: 950px;
    animation: hanuman-spin-reverse 15s linear infinite;
}
.hanuman-sticky .hs-mandala-glow {
    position: absolute;
    width: 50vmin;
    height: 50vmin;
    max-width: 400px;
    max-height: 400px;
    background: #ea580c;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    mix-blend-mode: screen;
}
.hanuman-sticky .hs-mandala-text-outer {
    font-size: 32px;
    fill: #facc15;
    font-family: 'Yatra One', system-ui;
    font-weight: bold;
    letter-spacing: 0.1em;
}
.hanuman-sticky .hs-mandala-text-inner {
    font-size: 28px;
    fill: #fef08a;
    font-family: 'Yatra One', system-ui;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.hanuman-sticky .hs-character-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 140vmin;
    max-width: 1200px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    z-index: 10;
    pointer-events: none;
}
.hanuman-sticky .hs-images-container {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    filter: drop-shadow(0 0 60px rgba(249,115,22,0.6));
}
.hanuman-sticky .hs-sequence-img {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    filter: saturate(1.5) contrast(1.25);
    will-change: opacity;
}

.hanuman-sticky .hs-scroll-hint {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: hanuman-bounce-hint 1s infinite;
    z-index: 50;
    pointer-events: none;
}
.hanuman-sticky .hs-scroll-hint span {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 0.5rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    color: #fb923c;
    text-shadow: 0 0 8px rgba(0,0,0,1);
    font-family: 'Montserrat', sans-serif;
}
.hanuman-sticky .hs-scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #fb923c, transparent);
}

@media (orientation: portrait) {
    .hanuman-sticky .hs-character-container {
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100vh !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    .hanuman-sticky .hs-images-container {
        width: 100% !important;
        height: 100vh !important;
        bottom: 0 !important;
    }
    .hanuman-sticky .hs-sequence-img {
        width: auto !important;
        height: 82vh !important;
        max-width: 100vw !important;
        max-height: none !important;
        object-fit: unset !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    .hanuman-sticky .hs-mandala-text-outer { font-size: 20px !important; }
    .hanuman-sticky .hs-mandala-text-inner { font-size: 17px !important; }
}

@media (orientation: landscape) and (max-width: 1200px) {
    .hanuman-sticky .hs-character-container {
        width: 130vmin !important;
    }
}

.hanuman-body {
    color: white;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    min-height: 300vh;
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* ============================================================
   DIVINE FOOTER - CENTERED LAYOUT
   ============================================================ */
.site-footer {
    position: relative;           /* ← FIXED: ensures absolute children (lamps) position relative to footer */
    background: linear-gradient(160deg, #1a0505 0%, #2d0a0a 40%, #4a1212 100%);
    color: #f0e6d8;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;             /* ← clips anything going outside */
    z-index: 1;
    text-align: center;
}

/* --- Animated Wave Top --- */
.footer-wave-top {
    line-height: 0;
    margin-top: -1px;
}
.footer-wave-top svg {
    display: block;
    width: 100%;
    height: 70px;
    fill: #FFF7EF;
}

/* --- Divine Floating Particles --- */
.divine-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: particleFloat var(--duration) ease-in-out infinite;
}
.divine-particle-1 {
    width: 6px; height: 6px;
    background: radial-gradient(circle, #ff9f6b, transparent);
    top: 20%; left: 10%;
    --duration: 5s;
    animation-delay: 0s;
}
.divine-particle-2 {
    width: 4px; height: 4px;
    background: radial-gradient(circle, #cf4700, transparent);
    top: 35%; right: 15%;
    --duration: 7s;
    animation-delay: 1.5s;
}
.divine-particle-3 {
    width: 8px; height: 8px;
    background: radial-gradient(circle, #ffd8b8, transparent);
    bottom: 30%; left: 20%;
    --duration: 6s;
    animation-delay: 3s;
}
.divine-particle-4 {
    width: 5px; height: 5px;
    background: radial-gradient(circle, #ff6b00, transparent);
    top: 50%; right: 8%;
    --duration: 8s;
    animation-delay: 2s;
}
.divine-particle-5 {
    width: 3px; height: 3px;
    background: radial-gradient(circle, #ffcc99, transparent);
    bottom: 40%; right: 25%;
    --duration: 4s;
    animation-delay: 0.5s;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    25% { opacity: 0.8; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 0.5; }
    75% { opacity: 0.8; }
}

/* --- Rotating Mandala Decorations --- */
.mandala-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.08;
    color: #cf4700;
    animation: rotateMandala 30s linear infinite;
}
.mandala-deco-1 {
    top: 5%; left: 3%;
    font-size: 8rem;
    animation-direction: normal;
}
.mandala-deco-2 {
    bottom: 10%; right: 2%;
    font-size: 10rem;
    animation-direction: reverse;
    animation-duration: 40s;
}

@keyframes rotateMandala {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- Glowing Lotus Petals --- */
.lotus-petal {
    position: absolute;
    width: 40px; height: 40px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
    animation: lotusGlow 4s ease-in-out infinite;
}
.lotus-petal svg {
    width: 100%; height: 100%;
    fill: #cf4700;
}
.lotus-petal-1 { top: 15%; left: 8%; animation-delay: 0s; }
.lotus-petal-2 { top: 60%; right: 12%; animation-delay: 2s; transform: scale(0.7); }
.lotus-petal-3 { bottom: 25%; left: 15%; animation-delay: 1s; transform: scale(1.2); }

@keyframes lotusGlow {
    0%, 100% { opacity: 0.04; transform: scale(1); }
    50% { opacity: 0.1; transform: scale(1.1); }
}

/* --- Container (COMPACT) --- */
.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 5% 20px;   /* ← REDUCED from 30px */
    text-align: center;
}

/* --- Centered Brand Section (COMPACT) --- */
.footer-brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 22px;     /* ← REDUCED from 40px */
}

.footer-logo-wrap {
    display: inline-block;
    margin-bottom: 18px;
    position: relative;
}
.footer-logo-wrap::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #cf4700, transparent);
    border-radius: 2px;
}

.footer-logo {
    max-width: 120px;        /* ← REDUCED from 160px */
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.4));
    transition: transform 0.4s ease;
}
.footer-logo:hover {
    transform: scale(1.05);
}

.footer-desc {
    font-size: 0.88rem;      /* ← REDUCED from 0.95rem */
    line-height: 1.7;
    color: #c9b8a5;
    margin: 18px auto 20px;  /* ← REDUCED */
    max-width: 560px;
    text-align: center;
}

/* --- Divine Social Buttons --- */
.footer-socials {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.social-btn {
    width: 40px;             /* ← REDUCED from 46px */
    height: 40px;
    border-radius: 50%;
    background: rgba(207, 71, 0, 0.12);
    border: 1px solid rgba(207, 71, 0, 0.3);
    color: #ff9f6b;
    display: grid;
    place-items: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}
.social-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #cf4700, #ff6b00);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.35s ease;
    z-index: 0;
}
.social-btn i {
    position: relative;
    z-index: 1;
    transition: color 0.35s ease;
}
.social-btn:hover {
    transform: translateY(-5px) scale(1.12);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(207, 71, 0, 0.4);
}
.social-btn:hover::before {
    transform: scale(1);
}
.social-btn:hover i {
    color: #fff;
}

/* --- Centered Quick Links (COMPACT) --- */
.footer-links-section {
    margin-bottom: 22px;     /* ← REDUCED from 40px */
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;       /* ← REDUCED from 1.4rem */
    color: #ffd8b8;
    margin-bottom: 16px;     /* ← REDUCED from 25px */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    padding-bottom: 10px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #cf4700, transparent);
    border-radius: 1px;
}
.title-icon {
    color: #cf4700;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;           /* ← REDUCED */
}
.footer-links li {
    margin: 0;
}
.footer-links a {
    color: #b8a89a;
    text-decoration: none;
    font-size: 0.85rem;      /* ← REDUCED */
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.3s ease;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid transparent;
}
.footer-links a i {
    font-size: 0.65rem;
    color: #cf4700;
    transition: all 0.3s ease;
    opacity: 0.7;
}
.footer-links a:hover {
    color: #ffcc99;
    border-color: rgba(207, 71, 0, 0.3);
    background: rgba(207, 71, 0, 0.08);
}
.footer-links a:hover i {
    opacity: 1;
    transform: translateX(3px);
}

/* --- Divine Divider --- */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(207, 71, 0, 0.4), transparent);
    margin: 18px 0 14px;     /* ← REDUCED from 35px 0 25px */
    position: relative;
}
.footer-divider::before {
    content: '❖';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #cf4700;
    font-size: 0.85rem;
    background: #2d0a0a;
    padding: 0 12px;
}

/* --- Bottom Bar --- */
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.78rem;
    color: #8a7a6e;
    text-align: center;
}
.footer-bottom-left p {
    margin: 0;
}
.footer-bottom-left strong {
    color: #cf4700;
    font-weight: 600;
}
.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-bottom-right a {
    color: #8a7a6e;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-bottom-right a:hover {
    color: #ff9f6b;
}
.footer-bottom-right .sep {
    color: #5a4a40;
    font-size: 0.7rem;
}

/* --- Large Background Om --- */
.bg-om {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 26rem;
    color: rgba(207, 71, 0, 0.025);
    z-index: 0;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

/* ============================================================
   DEEPAK LAMP STYLES  — FIXED: lamps stay inside footer
   ============================================================ */
.footer-lamp {
    position: absolute;
    top: 0;                  /* ← FIXED: was -10px (caused overflow outside footer) */
    width: 130px;            /* ← slightly smaller */
    height: 280px;
    transform-origin: top center;
    z-index: 3;
    pointer-events: none;
}
.footer-lamp svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}
.footer-lamp-left {
    left: 0;
    animation: swingLeft 4s ease-in-out infinite alternate;
}
.footer-lamp-right {
    right: 0;
    animation: swingRight 4s ease-in-out infinite alternate;
}

@keyframes swingLeft {
    from { transform: rotate(-4deg); }
    to   { transform: rotate(4deg);  }
}
@keyframes swingRight {
    from { transform: rotate(4deg);  }
    to   { transform: rotate(-4deg); }
}

.footer-flame {
    animation: flicker 0.8s ease-in-out infinite alternate;
}
@keyframes flicker {
    0%   { transform: scaleY(1)    scaleX(1)    rotate(-2deg); }
    25%  { transform: scaleY(1.15) scaleX(0.95) rotate(2deg);  }
    50%  { transform: scaleY(0.95) scaleX(1.05) rotate(-1deg); }
    75%  { transform: scaleY(1.1)  scaleX(0.98) rotate(1deg);  }
    100% { transform: scaleY(1)    scaleX(1)    rotate(0deg);  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
    .footer-wave-top svg { height: 45px; }
    .footer-container { padding: 12px 5% 18px; }
    .footer-logo { max-width: 100px; }
    .footer-title { font-size: 1.05rem; }
    .footer-links { gap: 6px 12px; }
    .footer-links a { font-size: 0.8rem; padding: 4px 10px; }
    .footer-desc { font-size: 0.82rem; max-width: 100%; }
    .bg-om { font-size: 14rem; bottom: -3%; }
    .mandala-deco-1 { font-size: 5rem; }
    .mandala-deco-2 { font-size: 6rem; }
    .footer-bottom { flex-direction: column; }
    .footer-lamp { width: 75px; height: 170px; }
}

/* ============================================================
   10. GLOBAL FADE ANIMATIONS
   ============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.fade-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ============================================================
   11. GLOBAL UTILITY — MAX WIDTH WRAPPER
   ============================================================ */
.global-max-width {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}

@media (min-width: 640px) {
    .global-max-width {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 1024px) {
    .global-max-width {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* Style for the active navigation link */
.hdr-nav-link.active-link {
    color: #FFA500; /* Example active color: Orange */
    font-weight: bold;
    text-decoration: none;
    text-underline-offset: 4px;
}