/* ==========================================================================
   Base Styles & Resets (Daawat Replica)
   ========================================================================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

html {
    font-size: 16px;
    line-height: 100%;
}

@font-face {
    font-family: 'Corda';
    src: url('../font/Hoftype - Corda-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Corda';
    src: url('../font/Hoftype - Corda-Italic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Corda';
    src: url('../font/Hoftype - Corda-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Corda';
    src: url('../font/Hoftype - Corda-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Corda';
    src: url('../font/Hoftype - Corda-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Corda';
    src: url('../font/Hoftype - Corda-BoldItalic.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
}

body {
    width: 100%;
    overflow-x: hidden !important;
    font-family: 'Corda', serif;
    color: #000;
    background: var(--light-bg);
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

* {
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* Utilities */
.text-center {
    text-align: center;
}

.bg-cream {
    background: #f9f6ef;
}

.bg-white {
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-style: italic;
    font-weight: normal;
}

/* ==========================================================================
   Header
   ========================================================================== */
header {
    width: 100%;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9991;
    transition: all .3s;
    background: #fff;
}

.headerWrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.logo {
    width: 15%;
}

.logo-img {
    width: 113px;
    display: block;
}

.navbar {
    width: 85%;
    text-align: right;
    /* Reset Bootstrap .navbar defaults */
    display: block;
    flex-wrap: unset;
    align-items: unset;
    justify-content: unset;
    padding: 0;
    --bs-navbar-padding-x: 0;
    --bs-navbar-padding-y: 0;
}

/* Mobile Toggle Hamburger Icon */
#nav-icon3 {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    display: none;
    z-index: 9999;
}

#nav-icon3 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

#nav-icon3 span:nth-child(1) {
    top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
    top: 8px;
}

#nav-icon3 span:nth-child(4) {
    top: 16px;
}

#nav-icon3.open span:nth-child(1) {
    top: 8px;
    width: 0%;
    left: 50%;
}

#nav-icon3.open span:nth-child(2) {
    transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
    transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
    top: 8px;
    width: 0%;
    left: 50%;
}

.site-header nav ul {
    display: flex;
    justify-content: end;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header nav ul li {
    font-size: 1rem;
    display: inline-block;
    padding: 12px 16px;
    position: relative;
}

.site-header nav ul li a {
    color: #000;
    transition: .3s ease;
    text-transform: uppercase;
    text-decoration: none;
}

nav ul li a:hover {
    color: #C38C27;
}

/* Submenu Dropdown */
.havechild .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-width: 150px;
    text-align: left;
    border-radius: 0 0 8px 8px;
    border-top: 2px solid var(--gold);
    padding: 6px 0;
    z-index: 9999;
}

.havechild:hover .sub-menu {
    display: block;
}

.havechild .sub-menu li {
    display: block;
    padding: 0;
}

.havechild .sub-menu li a {
    color: #333 !important;
    display: block;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, color 0.3s ease;
}

.havechild .sub-menu li a:hover {
    color: var(--gold) !important;
    background: rgba(195, 140, 39, 0.06);
    opacity: 1 !important;
}

/* ==========================================================================
   Mobile Navigation (≤768px)
   ========================================================================== */
@media (max-width: 768px) {
    .header-fullwidth {
        padding: 0 15px;
    }

    .logo {
        width: auto;
        flex: 1;
    }

    #nav-icon3 {
        display: block;
    }

    .navbar {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        left: auto !important;
        width: 80% !important;
        max-width: 320px !important;
        height: 100vh !important;
        background: #8f6a32 !important;
        display: block !important;
        z-index: 9998 !important;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        padding: 80px 30px 60px !important;
        text-align: left;
        overflow-y: auto;
    }

    .navbar.open {
        right: 0 !important;
    }

    .site-header nav ul {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .site-header nav ul li {
        display: block;
        padding: 12px 0;
        text-align: center;
        width: 100%;
    }

    .site-header nav ul li a {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .havechild .sub-menu {
        position: static;
        display: block;
        box-shadow: none;
        background: transparent;
        text-align: center;
        padding-top: 5px;
    }

    .havechild .sub-menu li a {
        font-size: 0.9rem;
        opacity: 0.8;
    }

    .nav-cta-btn {
        margin-top: 10px;
        display: block !important;
        text-align: center;
    }
}

/* ==========================================================================
   Decorative SVG Background Elements
   ========================================================================== */
.deco-svg {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    opacity: 0.06;
    filter: grayscale(30%);
    transition: opacity 0.5s ease;
}

/* Hero: rice grain cluster — bottom-left */
.deco-svg--hero-rice {
    width: 240px;
    height: auto;
    bottom: 0px;
    left: -30px;
    transform: rotate(15deg);
    opacity: 0.1;
}

/* About: biryani illustration — top-right */
.deco-svg--about-biryani {
    width: 300px;
    height: auto;
    top: 40px;
    right: -20px;
    transform: scaleX(-1);
    opacity: 0.2;
}

/* Journey intro: biryani plate — bottom-left */
.deco-svg--journey-plate {
    width: 220px;
    height: auto;
    /* bottom: -30px; */
    left: -10px;
    /* transform: rotate(-10deg); */
    opacity: 0.2;
}

/* Legacy: biryani bowl in middle right */
.deco-svg--legacy-middle {
    width: 320px;
    height: auto;
    top: 48%;
    left: -100px;
    /* Bleeds further off the right edge */
    transform: translateY(-50%);
    /* Varied clockwise rotation */
    opacity: 0.08;
    z-index: 1;
}

/* Warm monochrome filter for colored source SVGs */
.deco-svg--colored-source {
    filter: grayscale(100%) sepia(15%) brightness(0.9) contrast(1.05);
}

/* Legacy: biryani bowl top left */
.deco-svg--legacy-left-top {
    width: 300px;
    height: auto;
    top: 15%;
    right: -90px;
    /* Bleeds further off the left edge */
    /* transform: rotate(-22deg); */
    /* Varied counter-clockwise rotation */
    opacity: 0.08;
    z-index: 1;
}

/* Legacy: biryani bowl bottom left */
.deco-svg--legacy-left-bottom {
    width: 280px;
    height: auto;
    bottom: 8%;
    right: -80px;
    /* Bleeds further off the left edge */
    /* transform: rotate(18deg); */
    /* Varied clockwise rotation */
    opacity: 0.08;
    z-index: 1;
}

/* Hide decorative SVGs on small screens to keep layouts clean */
@media (max-width: 768px) {
    .deco-svg {
        display: none;
    }
}

/* ==========================================================================
   Design System variables
   ========================================================================== */
:root {
    --primary-blue: #05119f;
    --primary-blue-rgb: 12, 12, 92;
    --gold: #C38C27;
    --gold-light: #E0B45C;
    --cream: #FAF6EC;
    --cream-dark: #EADFC9;
    --charcoal: #121212;
    --white: #ffffff;
    --light-bg: #FAF6EC;
    --light-accent: #FFFDF9;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   Header Modifications
   ========================================================================== */
.site-header {
    background: #a5885d;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.site-header.scrolled {
    background: #8f6a32;
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header nav ul li a {
    color: #fff !important;
    font-family: 'Corda', serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.site-header nav ul li a:hover {
    color: var(--cream) !important;
    opacity: 0.85;
}

.header-fullwidth {
    width: 90%;
    margin: 0 auto;
    max-width: 1600px;
}

.nav-cta-btn {
    background: var(--primary-blue) !important;
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    border: 1px solid var(--primary-blue);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    display: inline-block;
    transform: translateY(0) scale(1);
    z-index: 1;
}

.nav-cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.4) 40%,
            rgba(255, 255, 255, 0.4) 45%,
            rgba(255, 255, 255, 0) 55%);
    transform: skewX(-20deg);
    transition: none;
    z-index: 2;
    pointer-events: none;
}

.nav-cta-btn:hover {
    background: var(--gold) !important;
    color: #fff !important;
    border-color: var(--gold) !important;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 20px rgba(195, 140, 39, 0.4);
}

.nav-cta-btn:hover::after {
    left: 100%;
    transition: left 0.7s ease;
}

/* ==========================================================================
   Main Hero Section (Premium White/Light Theme)
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hero.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Luxury dark navy blue to rich dark wash */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.65) 55%, rgba(0, 0, 0, 0.92) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 20px;
}

.sub-heading {
    font-family: 'Corda', serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--gold-light);
    margin-bottom: 25px;
    font-size: 1.25rem;
    font-weight: 600;
}

.main-heading {
    font-family: 'Corda', serif;
    font-size: 4.8rem;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 25px;
}

.gold-text {
    color: var(--gold-light);
    font-style: italic;
}

.hero-desc {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.btn-primary {
    display: inline-block;
    border-radius: 37px;
    background: var(--gold);
    padding: 14px 45px;
    font-size: 1.2rem;
    font-family: 'Corda', serif;
    font-weight: 500;
    color: #fff;
    border: 1px solid var(--gold);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(180, 138, 44, 0.25);
}

.btn-primary:hover {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
    box-shadow: 0 10px 25px rgba(12, 12, 92, 0.45);
    transform: translateY(-3px);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator p {
    margin-top: 10px;
    font-weight: 500;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.6s infinite;
}

@keyframes scroll-wheel {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 22px;
        opacity: 0;
    }
}

/* ==========================================================================
   2. Featured Video Section (White/Light Theme)
   ========================================================================== */
.featured-video-section {
    background: var(--light-accent);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.luxury-glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(195, 140, 39, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.video-intro {
    position: relative;
    z-index: 2;
}

.section-title-premium {
    font-family: 'Corda', serif;
    font-size: 3.4rem;
    line-height: 1.25;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.section-desc-premium {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 50px;
    font-weight: 400;
}

.video-container-box {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(30, 47, 151, 0.08);
    border: 1px solid rgba(195, 140, 39, 0.18);
    z-index: 2;
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    cursor: pointer;
    background: #fdfdfd;
    overflow: hidden;
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.video-thumbnail-wrapper:hover .video-poster {
    transform: scale(1.04);
}

.video-overlay-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-thumbnail-wrapper:hover .video-overlay-play {
    background: rgba(255, 255, 255, 0.05);
}

.play-btn-glow {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(195, 140, 39, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 25px rgba(195, 140, 39, 0.1);
}

.play-btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 1px solid var(--gold);
    animation: pulse-ring 2.0s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.play-icon {
    color: var(--primary-blue);
    font-size: 24px;
    margin-left: 6px;
    transition: var(--transition);
}

.video-thumbnail-wrapper:hover .play-btn-glow {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(195, 140, 39, 0.3);
}

.video-thumbnail-wrapper:hover .play-icon {
    color: #fff;
}

.play-text {
    color: #222;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ==========================================================================
   3. About WBD Section (Light Theme)
   ========================================================================== */
.about-wbd-section {
    background: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-col-text {
    text-align: left;
}

.about-main-title {
    font-family: 'Corda', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.about-main-title span {
    font-style: italic;
    color: var(--gold);
}

.about-paragraph p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 24px;
    font-weight: 300;
}

.btn-secondary {
    display: inline-block;
    border-radius: 37px;
    background: transparent;
    padding: 12px 40px;
    font-size: 1.1rem;
    font-family: 'Corda', serif;
    font-weight: 500;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transform: translateY(0) scale(1);
    z-index: 1;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.25) 40%,
            rgba(255, 255, 255, 0.25) 45%,
            rgba(255, 255, 255, 0) 55%);
    transform: skewX(-20deg);
    transition: none;
    z-index: 2;
    pointer-events: none;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(12, 12, 92, 0.2);
}

.btn-secondary:hover::after {
    left: 100%;
    transition: left 0.7s ease;
}

.about-col-visual {
    position: relative;
}

.about-us-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(12, 12, 92, 0.12);
    border: 1px solid rgba(195, 140, 39, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-us-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 55px rgba(12, 12, 92, 0.2);
}

/* ==========================================================================
   4. Journey Intro Section (Light Theme)
   ========================================================================== */
.journey-intro-section {
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--cream) 100%);
    padding: 120px 0 60px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.timeline-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 6px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.timeline-main-title {
    font-family: 'Corda', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.timeline-intro-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

/* ==========================================================================
   Interactive Timeline Container (Light Theme)
   ========================================================================== */
.timeline-interactive-container {
    background: var(--cream);
    position: relative;
    padding: 100px 0;
}

.timeline-progress-line-wrapper {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(12, 12, 92, 0.08);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-progress-line-active {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, var(--primary-blue), var(--gold));
    border-radius: 2px;
}

.year-section {
    position: relative;
    padding: 140px 0;
    z-index: 2;
}

.year-header-inline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.year-number {
    font-size: 3.5rem;
    font-family: 'Corda', serif;
    font-weight: 700;
    font-style: italic;
    color: var(--gold);
    letter-spacing: -1px;
    line-height: 1;
}

.year-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    z-index: 2;
    position: relative;
}

.year-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.year-grid.reverse .year-content-col {
    order: 2;
}

.year-grid.reverse .year-image-col {
    order: 1;
}

.year-content-col {
    text-align: left;
}

.year-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0;
    background: var(--gold);
    padding: 6px 14px;
    border-radius: 4px;
    border: 1px solid var(--gold);
}

.year-title {
    font-family: 'Corda', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 25px;
    line-height: 1.25;
}

.year-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    line-height: 1.75;
    color: #444;
    margin-bottom: 35px;
    font-weight: 300;
}

.milestone-list {
    list-style: none;
    padding: 0;
}

.milestone-list li {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #333;
    margin-bottom: 24px;
    position: relative;
    padding-left: 30px;
}

.milestone-list li strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.milestone-bullet {
    position: absolute;
    left: 0;
    top: 7px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--cream);
    box-shadow: 0 0 0 2px var(--gold);
}

.year-image-col {
    position: relative;
}

.year-image-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(9, 14, 46, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.85);
    background: #e8e6df;
    transition: transform 0.6s ease;
}

.year-section:hover .year-image-wrapper {
    transform: translateY(-8px);
}

.timeline-media-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    background-image: url('../img/hero.png');
    background-color: #0C0C5C;
    transition: transform 0.8s ease;
}

.year-section:hover .timeline-media-placeholder {
    transform: scale(1.05);
}

.timeline-media-placeholder.m-2022 {
    background-image: url('../img/1st-biryani-day.webp'), url('../img/hero.png');
}

.timeline-media-placeholder.m-2023 {
    background-image: url('../img/spices_about_1779703685860.png'), url('../img/hero.png');
}

.timeline-media-placeholder.m-2024 {
    background-image: url('../img/dreamAd.webp'), url('../img/hero.png');
}

.luxury-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(9, 14, 46, 0.6) 100%);
}

.placeholder-caption {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    text-transform: uppercase;
}

/* ==========================================================================
   8. Transition Section (White/Light Theme)
   ========================================================================== */
.transition-section {
    background: radial-gradient(circle at center, rgba(195, 140, 39, 0.04) 0%, #ffffff 70%);
    padding: 130px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    color: #444;
}

.luxury-gold-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(195, 140, 39, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.transition-inner {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

/* Elegant gold diamonds separator */
.transition-inner::before {
    content: '◆   ◆   ◆';
    display: block;
    font-size: 0.75rem;
    letter-spacing: 8px;
    color: var(--gold);
    margin-bottom: 25px;
    opacity: 0.8;
}

.transition-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 5px;
    color: var(--gold) !important;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1.5px solid rgba(195, 140, 39, 0.20);
    display: inline-block;
    padding-bottom: 8px;
}

.transition-main-title {
    font-family: 'Corda', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #0c0c5c !important;
    line-height: 1.25;
    margin-bottom: 35px;
}

.transition-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    line-height: 1.9;
    color: #444444 !important;
    font-weight: 300;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.transition-desc::before {
    content: '“';
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4.5rem;
    line-height: 0;
    color: rgba(195, 140, 39, 0.25);
    position: absolute;
    top: 25px;
    left: -35px;
}

.transition-desc::after {
    content: '”';
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4.5rem;
    line-height: 0;
    color: rgba(195, 140, 39, 0.25);
    position: absolute;
    bottom: -5px;
    right: -35px;
}

/* ==========================================================================
   9. Final CTA Section (Light Background Wash)
   ========================================================================== */
.final-cta-section {
    background: #0C0C5C;
    padding: 140px 0;
    position: relative;
    background-image: url('../img/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(12, 12, 92, 0.88) 0%, rgba(5, 5, 41, 0.94) 100%);
    z-index: 1;
}

.cta-card-box {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    background: rgba(12, 12, 92, 0.68);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 70px 50px;
    border-radius: 32px;
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.card-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 5px;
    color: var(--gold-light);
    margin-bottom: 20px;
    font-weight: 600;
}

.card-main-title {
    font-family: 'Corda', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 25px;
}

.card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-weight: 400;
}

.btn-gold-glow {
    display: inline-block;
    border-radius: 37px;
    background: var(--gold);
    padding: 15px 50px;
    font-size: 1.15rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #fff;
    border: 1px solid var(--gold);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(195, 140, 39, 0.4);
    outline: none;
}

.btn-gold-glow:hover {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(12, 12, 92, 0.35);
    transform: translateY(-3px);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.btn-gold-glow.w-full {
    width: 100%;
}

/* ==========================================================================
   Luxury Modals & Overlay Screens (Light & Dark Variants)
   ========================================================================== */
.luxury-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.luxury-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 14, 46, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1;
}

.modal-body-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 900px;
    background: #090e2e;
    border-radius: 28px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-body-container::-webkit-scrollbar {
    width: 6px;
}

.modal-body-container::-webkit-scrollbar-track {
    background: transparent;
}

.modal-body-container::-webkit-scrollbar-thumb {
    background: rgba(195, 140, 39, 0.3);
    border-radius: 3px;
}

.modal-body-container::-webkit-scrollbar-thumb:hover {
    background: rgba(195, 140, 39, 0.6);
}

.luxury-modal.active .modal-body-container {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close-btn:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.video-player-aspect-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

.video-player-aspect-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Modal Form Styles - Premium Light Glassmorphism */
.modal-form-body {
    max-width: 550px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    padding: 50px 40px;
    color: #222;
    border: 1px solid rgba(195, 140, 39, 0.3);
    box-shadow: 0 30px 80px rgba(30, 47, 151, 0.2);
}

.modal-form-body .modal-close-btn {
    color: #333;
}

.modal-form-body .modal-close-btn:hover {
    color: var(--gold);
}

.form-title {
    font-family: 'Corda', serif;
    font-size: 2.2rem;
    line-height: 1.3;
    color: var(--primary-blue);
    margin-bottom: 24px;
    text-align: center;
}

.form-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 400;
}

.input-group {
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.input-group label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 600;
}

.input-group input,
.input-group select,
.input-group textarea {
    background: rgba(30, 47, 151, 0.03);
    border: 1px solid rgba(30, 47, 151, 0.15);
    padding: 12px 18px;
    border-radius: 10px !important;
    color: #111;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    width: 100%;
    max-width: 100%;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--gold);
    background: rgba(30, 47, 151, 0.06);
    box-shadow: 0 0 12px rgba(195, 140, 39, 0.25);
}

.input-group select option {
    background: #ffffff;
    color: #222;
}

/* Spinner and Loader */
.processing-loader-wrapper {
    text-align: center;
    padding: 40px 0;
}

.spinner-box {
    width: 60px;
    height: 60px;
    position: relative;
    margin: 0 auto 30px;
}

.double-bounce1,
.double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--gold);
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    animation: bounce 2s infinite ease-in-out;
}

.double-bounce2 {
    animation-delay: -1s;
}

@keyframes bounce {

    0%,
    100% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }
}

.loader-status {
    font-family: 'Corda', serif;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1.35;
}

.loader-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* Result Video Screen */
.video-result-wrapper {
    text-align: center;
}

.result-title {
    font-family: 'Corda', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 8px;
    line-height: 1.3;
}

.result-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 25px;
}

.flex-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.flex-buttons .btn-gold-glow,
.flex-buttons .btn-secondary {
    padding: 12px 30px;
    font-size: 0.95rem;
}

.flex-buttons .btn-secondary {
    color: #333;
    border-color: rgba(0, 0, 0, 0.15);
    background: transparent;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: var(--transition);
}

.flex-buttons .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: #222;
}

/* ==========================================================================
   Minimalist Footer
   ========================================================================== */
.site-footer-minimal {
    background: #a5885d;
    padding: 40px 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    min-width: 200px;
}

.footer-min-logo {
    width: 120px;
    height: auto;
    display: block;
}

.footer-center {
    flex: 2;
    display: flex;
    justify-content: center;
    min-width: 300px;
}

.copyright-text {
    font-family: 'Inter', sans-serif;
    color: #fff;
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    min-width: 200px;
}

.social-links-minimal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links-minimal a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 1.25rem;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.social-links-minimal a:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        justify-content: center;
        flex: 1 1 auto;
        width: 100%;
    }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {

    .about-grid,
    .year-grid,
    .year-grid.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .year-grid.reverse .year-content-col {
        order: 1;
    }

    .year-grid.reverse .year-image-col {
        order: 2;
    }

    .footer-row {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 2.5rem;
    }

    .sub-heading {
        font-size: 1.05rem;
        letter-spacing: 3px;
    }

    .hero-desc {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .btn-primary {
        padding: 12px 35px;
        font-size: 1.05rem;
    }

    .section-title-premium,
    .about-main-title,
    .timeline-main-title {
        font-size: 2.4rem;
    }

    .year-title,
    .card-main-title {
        font-size: 2.0rem;
    }

    .footer-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .col-nav ul {
        grid-template-columns: 1fr;
    }

    /* Responsive Header & Hamburger Dropdown */
    #nav-icon3 {
        display: block;
        margin-left: auto;
    }

    .navbar {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #a5885d;
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 9990;
    }

    .navbar.open {
        display: block;
    }

    .headerWrapper {
        justify-content: space-between;
    }

    .logo {
        width: 40%;
    }

    nav ul li {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        display: block;
        font-size: 1.1rem;
    }

    .nav-cta-btn {
        display: inline-block !important;
        margin-top: 5px;
    }

    /* Timeline Mobile Gutter & Offsets */
    .timeline-progress-line-wrapper {
        left: 20px;
    }

    .year-grid,
    .year-grid.reverse {
        padding-left: 35px;
        padding-right: 15px;
    }

    .milestone-bullet {
        left: -10px;
    }

    .year-section {
        padding: 60px 0;
    }

    .year-header-inline {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 15px;
    }

    .year-number {
        font-size: 2.5rem;
    }

    /* Modal Form Mobile Padding & Fullscreen layout */
    .modal-body-container.modal-form-body {
        width: 100%;
        max-width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        border: none;
        margin: 0;
        top: 0;
        left: 0;
        padding: 75px 20px 30px;
        /* Pushes the step indicator down to clear the top-right close button */
        box-shadow: none;
        display: flex;
        flex-direction: column;
    }

    .modal-body-container.modal-form-body .modal-close-btn {
        top: 20px;
        right: 20px;
        font-size: 1.8rem;
        /* Refined smaller close button on mobile screens */
        color: #333;
    }

    .form-content-box {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .form-title {
        font-size: 1.7rem;
    }

    .form-steps-indicator {
        margin-bottom: 20px;
    }

    .step-dot .dot-num {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .step-dot .dot-label {
        font-size: 0.55rem;
        margin-top: 6px;
    }

    .step-line {
        margin: 0 10px;
        margin-top: -14px;
    }
}

/* ==========================================================================
   Multi-Step Video Generator Modal Styles (Premium Light Theme)
   ========================================================================== */

/* Step panels visibility */
.form-step-panel {
    display: none;
}

.form-step-panel.active {
    display: block !important;
}

/* Step Indicators */
.form-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 0 10px;
}

.step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: default;
    z-index: 2;
}

.step-dot .dot-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #eef1f6;
    border: 2px solid #dcdfe6;
    color: #718096;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.step-dot .dot-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #a0aec0;
    margin-top: 8px;
    text-transform: uppercase;
    transition: var(--transition);
}

.step-dot.active .dot-num {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
    box-shadow: 0 4px 10px rgba(30, 47, 151, 0.3);
}

.step-dot.active .dot-label {
    color: var(--primary-blue);
}

.step-dot.completed .dot-num {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    box-shadow: 0 4px 10px rgba(195, 140, 39, 0.3);
}

.step-dot.completed .dot-label {
    color: var(--gold);
}

.step-line {
    flex: 1;
    height: 2px;
    background: #e2e8f0;
    margin: 0 15px;
    margin-top: -16px;
    /* Align with center of circles */
    position: relative;
    z-index: 1;
}

.step-line.active {
    background: var(--gold);
}

/* Radio Button Group Styles */
.radio-group-row {
    display: flex;
    gap: 12px;
    margin-top: 5px;
    flex-wrap: wrap;
}

.radio-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 47, 151, 0.03);
    border: 1px solid rgba(30, 47, 151, 0.15);
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    user-select: none;
}

.radio-option input[type="radio"] {
    margin: 0;
    width: 18px !important;
    height: 18px !important;
    accent-color: var(--gold);
    cursor: pointer;
}

.radio-option:hover {
    background: rgba(195, 140, 39, 0.05);
    border-color: var(--gold);
}

.radio-option input[type="radio"]:checked+.radio-label {
    color: var(--primary-blue);
    font-weight: 600;
}

.radio-option:has(input[type="radio"]:checked) {
    background: rgba(195, 140, 39, 0.1);
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(195, 140, 39, 0.2);
}

/* OTP Code Digit Box Styles */
.otp-input-wrapper {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 25px 0;
}

.otp-digit {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.5rem !important;
    text-align: center;
    border: 1px solid rgba(30, 47, 151, 0.15) !important;
    background: rgba(30, 47, 151, 0.03) !important;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    outline: none;
    transition: var(--transition);
}

.otp-digit:focus {
    border-color: var(--gold) !important;
    background: rgba(30, 47, 151, 0.06) !important;
    box-shadow: 0 0 12px rgba(195, 140, 39, 0.25) !important;
}

.otp-resend-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

.link-btn {
    background: none;
    border: none;
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.link-btn:hover {
    color: var(--primary-blue);
}

/* Tabs for File Upload / Webcam Live Capture */
.media-tabs-header {
    display: flex;
    border-bottom: 2px solid rgba(30, 47, 151, 0.1);
    margin-bottom: 20px;
    gap: 15px;
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 12px 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #718096;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    outline: none;
}

.tab-btn:hover {
    color: var(--primary-blue);
}

.tab-btn.active {
    color: var(--primary-blue);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.media-tabs-content {
    margin-bottom: 20px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Input Row helper */
.input-row-flex {
    display: flex;
    gap: 15px;
}

.input-row-flex .input-group {
    flex: 1;
}

@media (max-width: 550px) {
    .input-row-flex {
        flex-direction: column;
        gap: 0;
    }
}

/* Drag and Drop Zone */
.drag-drop-zone {
    border: 2px dashed rgba(195, 140, 39, 0.4);
    background: rgba(195, 140, 39, 0.02);
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drag-drop-zone:hover,
.drag-drop-zone.dragover {
    border-color: var(--primary-blue);
    background: rgba(30, 47, 151, 0.04);
}

.zone-prompt .upload-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.zone-prompt p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 6px;
}

.zone-prompt .browse-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: underline;
}

.zone-prompt .file-limits {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #a0aec0;
}

.preview-container {
    width: 100%;
    position: relative;
}

.preview-container img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.btn-remove-media {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e53e3e;
    color: #fff;
    border: none;
    font-size: 1.2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(229, 62, 62, 0.4);
    transition: var(--transition);
}

.btn-remove-media:hover {
    background: #c53030;
    transform: scale(1.1);
}

.file-name-tag {
    display: block;
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #4a5568;
    word-break: break-all;
}

/* Webcam capture Styles */
.webcam-box-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.webcam-camera-view,
.webcam-result-view {
    width: 100%;
    aspect-ratio: 4/3;
    max-width: 320px;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(30, 47, 151, 0.1);
}

.webcam-camera-view video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.webcam-result-view img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.camera-lens-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
    animation: rotate-lens 20s linear infinite;
}

@keyframes rotate-lens {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.webcam-controls-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.webcam-controls-row .btn-secondary,
.webcam-controls-row .btn-gold-glow {
    padding: 10px 20px;
    font-size: 0.85rem;
}


/* Face Oval Overlay styles */
.face-oval-overlay-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
}

.face-oval-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.face-oval-ellipse {
    fill: none;
    stroke: #e53e3e;
    /* Red by default */
    stroke-width: 2.5;
    stroke-dasharray: 4, 4;
    transition: stroke 0.3s ease, stroke-dasharray 0.3s ease, stroke-width 0.3s ease;
}

.face-oval-ellipse.valid {
    stroke: #48bb78;
    /* Green when valid */
    stroke-dasharray: none;
    stroke-width: 3.5;
}

.face-oval-guide-text {
    position: absolute;
    bottom: 12px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Validation Feedback Status Bar */
.validation-status-bar {
    width: 100%;
    max-width: 320px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid transparent;
}

.validation-status-bar.status-invalid {
    background: rgba(229, 62, 62, 0.08);
    border-color: rgba(229, 62, 62, 0.2);
    color: #c53030;
}

.validation-status-bar.status-valid {
    background: rgba(72, 187, 120, 0.08);
    border-color: rgba(72, 187, 120, 0.2);
    color: #276749;
    animation: status-pulse 2s infinite ease-in-out;
}

@keyframes status-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.2);
    }

    50% {
        box-shadow: 0 0 0 4px rgba(72, 187, 120, 0.2);
    }
}

/* Success Step 3 screen styles */
.success-icon-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #48bb78;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 20px;
    box-shadow: 0 8px 20px rgba(72, 187, 120, 0.3);
}

.whatsapp-alert-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(72, 187, 120, 0.08);
    border: 1px solid rgba(72, 187, 120, 0.2);
    border-radius: 12px;
    padding: 12px 18px;
    margin-bottom: 25px;
    text-align: left;
}

.whatsapp-alert-box .wa-badge-icon {
    font-size: 1.5rem;
}

.whatsapp-alert-box p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #2f855a;
    margin: 0;
    line-height: 1.4;
}

.whatsapp-alert-box strong {
    color: #276749;
    font-weight: 700;
}

/* ==========================================================================
   3.5 SRK AI Innovation / Dream Ad Section
   ========================================================================== */
.dream-ad-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.dream-ad-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/dreamAd-Bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
}

.dream-ad-content-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 70px 20px 90px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.dream-ad-title {
    font-family: 'Corda', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-blue);
    margin-bottom: 40px;
    font-style: italic;
}

.dream-ad-title span {
    color: var(--gold);
    font-style: italic;
}

.dream-ad-frame-wrapper {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 45px;
}

.dream-ad-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.85), 0 0 0 8px var(--primary-blue), 0 25px 60px rgba(12, 12, 92, 0.28);
    background: #000;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.dream-ad-frame:hover {
    transform: scale(1.02);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.95), 0 0 0 8px var(--gold), 0 30px 70px rgba(12, 12, 92, 0.35);
}

.dream-ad-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.dream-ad-frame:hover .dream-ad-img {
    transform: scale(1.05);
}

.dream-ad-you-overlay {
    position: absolute;
    bottom: 50%;
    right: 8%;
    transform: translateY(50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(12, 12, 92, 0.72);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px 18px;
    pointer-events: none;
}

.dream-you-small {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 2px;
}

.dream-you-big {
    font-family: 'Corda', serif;
    font-size: 2.2rem;
    font-style: italic;
    color: #fff;
    line-height: 1;
    font-weight: 600;
}

.dream-ad-cta-wrap {
    display: flex;
    justify-content: center;
}

.btn-dream-cta {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 16px 55px;
    border-radius: 40px;
    border: 2px solid var(--gold);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(195, 140, 39, 0.35);
}

.btn-dream-cta:hover {
    background: #fff;
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(195, 140, 39, 0.4);
}

@media (max-width: 768px) {
    .dream-ad-title {
        font-size: 1.7rem;
    }

    .dream-ad-frame-wrapper {
        max-width: 100%;
    }

    .dream-ad-you-overlay {
        right: 5%;
        padding: 8px 12px;
    }

    .dream-you-big {
        font-size: 1.6rem;
    }

    .btn-dream-cta {
        padding: 13px 40px;
        font-size: 0.85rem;
    }

    .dream-ad-content-wrap {
        padding: 50px 20px 70px;
    }
}

/* ==========================================================================
   Hero Section — Clean Premium White Theme
   ========================================================================== */

.hero-section-rya {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    overflow: hidden;
    padding: 140px 0 80px;
}

.hero-bg-abstract {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 1;
}

/* Subtle gradient wash for depth */
.hero-gradient-wash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 25% 50%, rgba(195, 140, 39, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 40%, rgba(5, 17, 159, 0.03) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

/* Particles layer */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

/* Bottom fade */
.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #ffffff 0%, transparent 100%);
    z-index: 6;
    pointer-events: none;
}

/* Hero container override — full-width on desktop */
.hero-section-rya .container {
    max-width: 1600px;
    padding: 0 60px;
}

/* Grid */
.hero-grid-rya {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 60px; */
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-left-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* WBD Logo */
.hero-logo-wrap {
    margin-bottom: 24px;
}

.hero-wbd-logo {
    max-width: 160px;
    height: auto;
    display: block;
}

@keyframes badge-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

/* Heading */
.main-heading-rya {
    font-family: 'Corda', serif;
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.12;
    color: #0c0c5c;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
}

.heading-line {
    display: block;
}

.heading-line--1 {
    font-style: normal;
    letter-spacing: -0.5px;
}

.heading-line--2 {
    font-size: 4.8rem;
    line-height: 1.15;
}

.gold-text-rya {
    font-style: italic;
    background: linear-gradient(135deg, #b8801e 0%, #E0B45C 40%, #f5d78e 50%, #E0B45C 60%, #b8801e 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gold-shimmer 5s ease-in-out infinite;
}

@keyframes gold-shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 300% center;
    }
}

/* Description */
.hero-desc-rya {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #555;
    max-width: 540px;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Actions row */
.hero-actions-row {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 38px;
    width: 100%;
}

/* Counter */
.hero-counter-container {
    background: rgba(250, 246, 236, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(195, 140, 39, 0.18);
    border-radius: 16px;
    padding: 16px 22px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 8px 32px rgba(12, 12, 92, 0.04), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.hero-counter-container:hover {
    box-shadow: 0 12px 40px rgba(12, 12, 92, 0.08), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    border-color: rgba(195, 140, 39, 0.35);
}

.counter-number-wrapper {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.counter-number {
    font-family: 'Inter', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #0c0c5c;
    line-height: 1;
    letter-spacing: -1px;
}

.counter-plus {
    font-family: 'Corda', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold, #C38C27);
    line-height: 1;
}

.counter-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: #888;
    margin: 5px 0 0;
}

.btn-wrap-rya {
    display: flex;
    gap: 20px;
}

/* CTA Button */
.btn-primary-rya {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 37px;
    background: linear-gradient(135deg, var(--gold) 0%, #E0B45C 100%);
    padding: 16px 40px;
    font-size: 1.05rem;
    font-family: 'Corda', serif;
    font-weight: 600;
    color: #fff;
    border: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(195, 140, 39, 0.3), 0 4px 12px rgba(195, 140, 39, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary-rya::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.btn-primary-rya:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a1aad 100%);
    box-shadow: 0 12px 35px rgba(12, 12, 92, 0.4), 0 4px 12px rgba(12, 12, 92, 0.2);
    transform: translateY(-3px);
}

.btn-primary-rya:hover::before {
    left: 100%;
}

.btn-primary-rya svg {
    transition: transform 0.3s ease;
}

.btn-primary-rya:hover svg {
    transform: translateX(4px);
}

/* Premium Steam Flow Overlay when hovered */
.btn-primary-wrapper {
    position: relative;
    display: inline-block;
}

.steam-container {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    pointer-events: none;
    z-index: 10;
    overflow: visible;
}

.steam-gas {
    position: absolute;
    bottom: 0;
    width: 36px;
    height: 36px;
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    background: radial-gradient(circle at center, rgba(160, 145, 125, 0.65) 0%, rgba(160, 145, 125, 0.22) 50%, rgba(160, 145, 125, 0.04) 70%, transparent 85%);
    opacity: 0;
    pointer-events: none;
    filter: blur(6px);
    transform: translateY(0) scale(0.6) rotate(0deg);
}

.steam-gas:nth-child(1) {
    left: 12%;
    --x-offset: -12px;
}

.steam-gas:nth-child(2) {
    left: 32%;
    --x-offset: 8px;
}

.steam-gas:nth-child(3) {
    left: 48%;
    --x-offset: -6px;
}

.steam-gas:nth-child(4) {
    left: 68%;
    --x-offset: 10px;
}

.steam-gas:nth-child(5) {
    left: 84%;
    --x-offset: -8px;
}

.btn-primary-wrapper:hover .steam-gas {
    animation: steam-rise-animation 2.2s infinite ease-out;
}

.btn-primary-wrapper:hover .steam-gas:nth-child(1) {
    animation-delay: 0.1s;
}

.btn-primary-wrapper:hover .steam-gas:nth-child(2) {
    animation-delay: 0.5s;
}

.btn-primary-wrapper:hover .steam-gas:nth-child(3) {
    animation-delay: 0.9s;
}

.btn-primary-wrapper:hover .steam-gas:nth-child(4) {
    animation-delay: 1.3s;
}

.btn-primary-wrapper:hover .steam-gas:nth-child(5) {
    animation-delay: 1.7s;
}

@keyframes steam-rise-animation {
    0% {
        bottom: -5px;
        /* Starts exactly at the top boundary of the button */
        transform: scale(0.6) rotate(0deg) translateX(0);
        border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
        opacity: 0;
        filter: blur(5px);
    }

    20% {
        opacity: 0.85;
        /* Clearly visible warm gaseous steam */
        filter: blur(8px);
    }

    50% {
        transform: scale(1.6) rotate(25deg) translateX(var(--x-offset));
        border-radius: 50% 50% 50% 50%;
        filter: blur(14px);
        opacity: 0.5;
    }

    75% {
        opacity: 0.25;
        border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
        filter: blur(18px);
    }

    100% {
        bottom: 65px;
        /* Rises higher above the button and dissolves */
        transform: scale(2.5) rotate(-35deg) translateX(calc(var(--x-offset) * 2.2));
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        opacity: 0;
        filter: blur(24px);
    }
}

/* ── Right Side: Hero Image (full width in column) ── */
.hero-right-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    width: 100%;
    z-index: 5;
}

.hero-img-fullwidth {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

/* Ambient Back-lit Golden Halo */
.hero-glow-halo {
    position: absolute;
    width: 130%;
    height: 130%;
    top: -15%;
    left: -15%;
    background: radial-gradient(circle, rgba(195, 140, 39, 0.14) 0%, rgba(12, 12, 92, 0.01) 55%, transparent 75%);
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: multiply;
    animation: halo-pulse 10s ease-in-out infinite alternate;
}

@keyframes halo-pulse {
    0% {
        transform: scale(0.96) rotate(0deg);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.04) rotate(10deg);
        opacity: 1;
    }
}

/* Circular Gold Geometric Orbitals */
.hero-img-orbital-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    will-change: transform;
}

.hero-img-orbital-ring--1 {
    width: 620px;
    height: 620px;
    border: 1px dashed rgba(195, 140, 39, 0.12);
    top: -5%;
    left: -15%;
    animation: spin-slow 45s linear infinite;
}

.hero-img-orbital-ring--2 {
    width: 480px;
    height: 480px;
    border: 1px dotted rgba(12, 12, 92, 0.07);
    bottom: -10%;
    right: -10%;
    animation: spin-slow-reverse 55s linear infinite;
}

@keyframes spin-slow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-slow-reverse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

/* Cinematic Collage Wrapper */
.hero-img-collage-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    z-index: 5;
}

/* Offset Glassmorphic Gold-Cream Backing Card */
.hero-img-backing-card {
    position: absolute;
    width: 100%;
    height: 110%;
    top: 15px;
    left: 20px;
    /* Swapped to positive right shift */
    border-radius: 20px;
    border: 1px solid rgba(195, 140, 39, 0.18);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(245, 235, 215, 0.08) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 3;
    pointer-events: none;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.8s ease;
    transform: rotate(3.5deg);
    /* Swapped to clockwise rotation */
    box-shadow: 0 15px 40px rgba(12, 12, 92, 0.05);
}

.hero-right-visual:hover .hero-img-backing-card {
    transform: rotate(5deg) translate(8px, 8px);
    /* Dynamic hover reaction nudging right & down */
    border-color: rgba(195, 140, 39, 0.35);
    box-shadow: 0 25px 55px rgba(12, 12, 92, 0.08);
}

/* Subtle Luxury Starbursts */
.hero-luxury-sparkle {
    position: absolute;
    color: rgba(195, 140, 39, 0.55);
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 7;
    will-change: transform, opacity;
    animation: sparkle-pulse 4s infinite ease-in-out;
}

.hero-luxury-sparkle--1 {
    top: 15px;
    right: 80px;
    animation-delay: 0s;
}

.hero-luxury-sparkle--2 {
    bottom: 40px;
    left: 80px;
    font-size: 0.85rem;
    color: rgba(195, 140, 39, 0.4);
    animation-delay: 2s;
}

@keyframes sparkle-pulse {

    0%,
    100% {
        transform: scale(0.85) rotate(0deg);
        opacity: 0.25;
    }

    50% {
        transform: scale(1.15) rotate(15deg);
        opacity: 0.95;
        filter: drop-shadow(0 0 5px rgba(195, 140, 39, 0.5));
    }
}

/* ==========================================================================
   Cinematic Centerpiece Visual Enhancements
   ========================================================================== */

/* Cinematic Camera Lens Flare Overlay */
.hero-lens-flare {
    position: absolute;
    top: 5%;
    right: 18%;
    /* Perfectly aligned where the warm sky meets the helicopter */
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(255, 248, 225, 0.98) 0%,
            rgba(224, 180, 92, 0.45) 15%,
            rgba(224, 180, 92, 0.12) 35%,
            rgba(195, 140, 39, 0.03) 55%,
            transparent 70%);
    mix-blend-mode: screen;
    z-index: 9;
    pointer-events: none;
    will-change: transform, opacity;
    animation: lens-flare-glow 7s infinite ease-in-out alternate;
}

@keyframes lens-flare-glow {
    0% {
        transform: scale(0.92) translate(0, 0);
        opacity: 0.65;
    }

    50% {
        transform: scale(1.08) translate(3px, -2px);
        opacity: 0.95;
    }

    100% {
        transform: scale(0.98) translate(-2px, 4px);
        opacity: 0.8;
    }
}

/* Warm Editorial Cinema Grade Tone Overlay */
.hero-img-tone-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6;
    pointer-events: none;
    background: linear-gradient(to bottom,
            rgba(195, 140, 39, 0.06) 0%,
            rgba(12, 12, 92, 0.04) 100%);
    mix-blend-mode: soft-light;
}

/* Volumetric Cinematic Back-Lit Gold Dust Particles */
.hero-cinematic-dust {
    position: absolute;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.hero-dust-mote {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 180, 92, 0.8) 0%, rgba(224, 180, 92, 0) 70%);
    pointer-events: none;
    will-change: transform, opacity;
}

.hero-dust-mote--1 {
    width: 6px;
    height: 6px;
    top: 80%;
    left: 20%;
    animation: float-mote-1 14s infinite linear;
}

.hero-dust-mote--2 {
    width: 4px;
    height: 4px;
    top: 60%;
    left: 80%;
    animation: float-mote-2 18s infinite linear;
    animation-delay: 2s;
}

.hero-dust-mote--3 {
    width: 8px;
    height: 8px;
    top: 75%;
    left: 45%;
    opacity: 0.3;
    animation: float-mote-3 22s infinite linear;
    animation-delay: 4s;
}

.hero-dust-mote--4 {
    width: 5px;
    height: 5px;
    top: 40%;
    left: 15%;
    animation: float-mote-4 16s infinite linear;
    animation-delay: 1s;
}

.hero-dust-mote--5 {
    width: 7px;
    height: 7px;
    top: 90%;
    left: 70%;
    animation: float-mote-5 20s infinite linear;
    animation-delay: 3s;
}

@keyframes float-mote-1 {
    0% {
        transform: translate(0, 0) scale(0.8);
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.7;
    }

    100% {
        transform: translate(-30px, -150px) scale(1.2);
        opacity: 0;
    }
}

@keyframes float-mote-2 {
    0% {
        transform: translate(0, 0) scale(0.9);
        opacity: 0;
    }

    15% {
        opacity: 0.8;
    }

    85% {
        opacity: 0.8;
    }

    100% {
        transform: translate(40px, -180px) scale(1.3);
        opacity: 0;
    }
}

@keyframes float-mote-3 {
    0% {
        transform: translate(0, 0) scale(0.7);
        opacity: 0;
    }

    20% {
        opacity: 0.6;
    }

    80% {
        opacity: 0.6;
    }

    100% {
        transform: translate(-15px, -200px) scale(1.4);
        opacity: 0;
    }
}

@keyframes float-mote-4 {
    0% {
        transform: translate(0, 0) scale(0.8);
        opacity: 0;
    }

    10% {
        opacity: 0.75;
    }

    90% {
        opacity: 0.75;
    }

    100% {
        transform: translate(-25px, -130px) scale(1.1);
        opacity: 0;
    }
}

@keyframes float-mote-5 {
    0% {
        transform: translate(0, 0) scale(1.0);
        opacity: 0;
    }

    12% {
        opacity: 0.85;
    }

    88% {
        opacity: 0.85;
    }

    100% {
        transform: translate(35px, -160px) scale(1.2);
        opacity: 0;
    }
}

/* Upgraded Cinematic Image Frame */
.hero-img-frame {
    position: relative;
    width: 100%;
    border-radius: 24px;
    /* Sleeker rounded corners */
    overflow: hidden;
    z-index: 5;
    border: 1px solid rgba(195, 140, 39, 0.22);
    /* More defined gold trim */
    background: radial-gradient(circle at center, #ffffff, #faf6ec);
    box-shadow:
        0 30px 70px rgba(12, 12, 92, 0.15),
        0 0 0 1px rgba(195, 140, 39, 0.2),
        inset 0 0 30px rgba(195, 140, 39, 0.05);
    transition:
        transform 0.8s cubic-bezier(0.2, 1, 0.2, 1),
        box-shadow 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.hero-img-frame:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 40px 90px rgba(12, 12, 92, 0.22),
        0 0 0 1px rgba(195, 140, 39, 0.3),
        inset 0 0 35px rgba(195, 140, 39, 0.08);
}

/* Subtle Shimmer sweep on Frame */
.hero-img-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(255, 255, 255, 0.25) 30%,
            rgba(255, 255, 255, 0.45) 50%,
            rgba(255, 255, 255, 0.25) 70%,
            transparent 100%);
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
    z-index: 10;
}

.hero-img-frame:hover::after {
    left: 150%;
    transition: left 1.8s cubic-bezier(0.3, 1, 0.2, 1);
}

.hero-img-main {
    width: 100%;
    height: auto;
    max-height: 550px;
    display: block;
    object-fit: contain;
}

/* Animations (shared) */
@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes icon-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 10px rgba(224, 180, 92, 0.5);
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

@keyframes rotate-slow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 2. OnlyRiceNovember Gallery Slider Section */
.only-rice-slider-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.section-title-premium-slider {
    font-family: 'Corda', serif;
    font-size: 2.8rem;
    color: var(--primary-blue);
    text-align: center;
    font-weight: 700;
    margin-bottom: 50px;
}



.gold-text-slider {
    color: var(--gold);
}

.only-rice-swiper-container {
    width: 100%;
    position: relative;
    padding: 0;
    margin: 0;
    z-index: 4;
}

.only-rice-swiper {
    padding: 20px 0 !important;
}

.only-rice-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.only-rice-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fdfdfd;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.only-rice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.only-rice-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==========================================================================
   RYA Flip-Clock Counter (Exact Port from RYA Project)
   ========================================================================== */
.flip-clock {
    text-align: center;
    perspective: 400px;
    margin: 0;
    display: inline-flex;
}

.flip-clock *,
.flip-clock *:before,
.flip-clock *:after {
    box-sizing: border-box;
}

.flip-clock__wrapper1 {
    width: fit-content;
    background-color: white;
    padding: 2px;
    height: 100%;
    display: inline-block;
    border-radius: 7px;
    margin: 0 5px;
}

.flip-clock__piece {
    display: inline-block;
    margin: 0 5px;
    border-radius: 0.15em 0.15em 0 0;
}

/* Counter card styles (white bg, gold/brown text — matching RYA counter1) */
.card1 {
    display: block;
    position: relative;
    padding-bottom: 0.72em;
    font-size: 34px;
    line-height: 0.95;
    border-radius: 40px;
}

@media (max-width: 768px) {
    .card1 {
        font-size: 26px !important;
    }

    .card__top,
    .card__bottom,
    .card__back::before,
    .card__back::after {
        width: 32.08px !important;
    }
}

.card__top,
.card__bottom,
.card__back::before,
.card__back::after {
    display: block;
    height: 0.72em;
    color: #8f6a32;
    background: #ffffff;
    padding: 0.25em 0.25em;
    border-radius: 0.15em 0.15em 0 0;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transform: translateZ(0);
}

.card__bottom {
    color: #8f6a32;
    position: absolute;
    top: 50%;
    left: 0;
    background: #fff;
    border-radius: 0 0 0.15em 0.15em;
    pointer-events: none;
    overflow: hidden;
}

.card__bottom::after {
    display: block;
    margin-top: -0.72em;
}

.card__back::before,
.card__bottom::after {
    content: attr(data-value);
}

.card__back {
    position: absolute;
    top: 0;
    height: 100%;
    left: 0%;
    pointer-events: none;
}

.card__back::before {
    position: relative;
    z-index: -1;
    overflow: hidden;
}

.flip .card__back::before {
    animation: flipTop 0.6s cubic-bezier(0.37, 0.01, 0.94, 0.35);
    animation-fill-mode: both;
    transform-origin: center bottom;
}

.flip .card__back .card__bottom {
    transform-origin: center top;
    animation-fill-mode: both;
    animation: flipBottom 1.2s cubic-bezier(0.15, 0.45, 0.28, 1);
}

@keyframes flipTop {
    0% {
        transform: rotateX(0deg);
        z-index: 2;
    }

    0%,
    99% {
        opacity: 0.99;
    }

    100% {
        transform: rotateX(-90deg);
        opacity: 0;
    }
}

@keyframes flipBottom {

    0%,
    50% {
        z-index: -1;
        transform: rotateX(90deg);
        opacity: 0;
    }

    51% {
        opacity: 0.99;
    }

    100% {
        opacity: 0.99;
        transform: rotateX(0deg);
        z-index: 5;
    }
}


/* d-flex utility (Bootstrap-like) for the flip-clock row */
.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-lg-start {}

@media (min-width: 1025px) {
    .justify-content-lg-start {
        justify-content: flex-start;
    }
}

.align-items-center {
    align-items: center;
}

.gap-1 {
    gap: 4px;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-section-rya .container {
        padding: 0 20px;
    }

    .hero-grid-rya {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-left-content {
        align-items: center;
        text-align: center;
    }

    .hero-desc-rya {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions-row {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .hero-counter-container {
        align-items: center;
    }

    .main-heading-rya {
        font-size: 3rem;
        align-items: center;
    }

    .heading-line--2 {
        font-size: 3.4rem;
    }

    .hero-img-collage-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-img-frame {
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-section-rya {
        padding: 110px 0 60px;
    }

    .main-heading-rya {
        font-size: 2.2rem;
    }

    .heading-line--2 {
        font-size: 2.6rem;
    }

    .hero-badge-rya {
        font-size: 0.72rem;
        padding: 6px 16px 6px 12px;
    }

    .counter-number {
        font-size: 2.6rem;
    }

    .counter-plus {
        font-size: 1.8rem;
    }

    .btn-primary-rya {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .hero-img-collage-wrapper {
        max-width: 340px;
    }

    .hero-img-frame {
        width: 100%;
    }

    .hero-bottom-fade {
        height: 60px;
    }

    .only-rice-slider-section {
        padding: 60px 0;
    }

    .section-title-premium-slider {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .only-rice-swiper-container {
        padding: 0;
    }

    /* Collapsing About grid & centering layout on mobile */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .about-col-text {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .about-col-text .btn-wrap {
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .about-col-visual {
        max-width: 480px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    /* Mobile responsive headings */
    .about-main-title {
        font-size: 1.9rem !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
    }

    .timeline-main-title {
        font-size: 1.9rem !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
    }

    .year-title {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 18px !important;
    }

    .transition-main-title {
        font-size: 1.9rem !important;
        line-height: 1.3 !important;
        margin-bottom: 25px !important;
    }

    .card-main-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
    }
}

@media (max-width: 480px) {
    .hero-img-collage-wrapper {
        max-width: 280px;
    }

    .hero-img-frame {
        width: 100%;
    }

    .main-heading-rya {
        font-size: 1.9rem;
    }

    .heading-line--2 {
        font-size: 2.2rem;
    }

    .hero-actions-row {
        gap: 18px;
    }

    /* Ultra-compact mobile responsive headings */
    .about-main-title {
        font-size: 1.65rem !important;
    }

    .timeline-main-title {
        font-size: 1.65rem !important;
    }

    .year-title {
        font-size: 1.5rem !important;
    }

    .transition-main-title {
        font-size: 1.65rem !important;
    }

    .card-main-title {
        font-size: 1.55rem !important;
    }
}


/* Interactions Section styles */
.interactions-section {
    background: radial-gradient(circle at 50% 50%, rgba(195, 140, 39, 0.12) 0%, transparent 60%), linear-gradient(135deg, #060a24 0%, #0d143c 100%);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(195, 140, 39, 0.15);
    border-bottom: 1px solid rgba(195, 140, 39, 0.15);
    color: #fff;
}

/* Atmospheric washes for depth */
.luxury-spotlight-wash {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(12, 12, 92, 0.5) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.luxury-gold-wash {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(195, 140, 39, 0.08) 0%, transparent 65%);
    top: 30%;
    left: 20%;
    z-index: 1;
    pointer-events: none;
}

.interactions-card-wrapper {
    position: relative;
    z-index: 5;
    max-width: 850px;
    margin: 0 auto;
}

/* Category Badge */
.interactions-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(195, 140, 39, 0.1);
    border: 1px solid rgba(195, 140, 39, 0.25);
    border-radius: 30px;
    padding: 6px 18px 6px 12px;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light, #E0B45C);
}

.badge-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e53e3e;
    box-shadow: 0 0 10px #e53e3e;
    animation: live-pulse-animation 1.8s infinite ease-in-out;
}

@keyframes live-pulse-animation {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
}

.interactions-title {
    font-family: 'Corda', serif;
    font-size: 3.2rem;
    color: #fff !important;
    line-height: 1.2;
    margin-bottom: 22px;
    font-weight: 700;
}

.interactions-title span {
    font-style: italic;
    color: var(--gold-light, #E0B45C);
}

.interactions-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 720px;
    margin: 0 auto 40px;
    font-weight: 300;
}

/* Glowing Counter Card Frame */
.counter-display-card {
    background: rgba(13, 20, 60, 0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(195, 140, 39, 0.22);
    border-radius: 24px;
    padding: 40px 30px;
    max-width: 600px;
    margin: 0 auto 45px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 35px rgba(195, 140, 39, 0.05);
}

.interactions-counter-row {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.interactions-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: var(--gold-light, #E0B45C);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Action Buttons */
.interactions-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-interaction {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 37px;
    padding: 14px 38px;
    font-size: 1.05rem;
    font-family: 'Corda', serif;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: 0.5px;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-interaction--primary {
    background: linear-gradient(135deg, var(--gold) 0%, #E0B45C 100%);
    color: #ffffff !important;
    border: none;
    box-shadow: 0 10px 25px rgba(195, 140, 39, 0.35);
}

.btn-interaction--primary:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a1aad 100%);
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(12, 12, 92, 0.45);
    transform: translateY(-3px);
}

.btn-interaction--primary svg {
    transition: transform 0.3s ease;
}

.btn-interaction--primary:hover svg {
    transform: translateX(4px);
}

.btn-interaction--share {
    background: transparent;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.btn-interaction--share:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Clock design lock - Transparent White-Bordered overrides */
#interaction-counter.flip-clock {
    perspective: 400px;
    display: inline-flex;
}

#interaction-counter .flip-clock__wrapper1 {
    background-color: transparent !important;
    border: 1.5px solid rgba(255, 255, 255, 0.85) !important;
    border-radius: 8px !important;
    padding: 2px !important;
    margin: 0 4px !important;
    display: inline-block !important;
}

#interaction-counter .card__top,
#interaction-counter .card__bottom,
#interaction-counter .card__back::before,
#interaction-counter .card__back::after {
    color: #ffffff !important;
    background: #0d143c !important;
    /* Matches the deep blue background exactly for a premium seamless look */
}

#interaction-counter .card__bottom {
    background: #0d143c !important;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .interactions-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .interactions-section {
        padding: 70px 0;
    }

    .interactions-title {
        font-size: 2.2rem;
    }

    .interactions-desc {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .counter-display-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .interactions-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-interaction {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* ==========================================================================
   Responsive Overrides for Cinematic Centerpiece Elements
   ========================================================================== */
@media (max-width: 1200px) {

    /* Scale down abstract geometric orbitals */
    .hero-img-orbital-ring--1 {
        width: 520px;
        height: 520px;
    }

    .hero-img-orbital-ring--2 {
        width: 400px;
        height: 400px;
    }

    /* Adjust backing card offsets */
    .hero-img-backing-card {
        top: 10px;
        left: 15px;
        /* Shifting to right on smaller viewports */
    }

    /* Adjust lens flare size */
    .hero-lens-flare {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 1024px) {

    /* Tighten abstract geometries when grid collapses into a single column */
    .hero-img-orbital-ring--1 {
        width: 420px;
        height: 420px;
        top: -10px;
        left: -10px;
    }

    .hero-img-orbital-ring--2 {
        width: 320px;
        height: 320px;
        bottom: -10px;
        right: -10px;
    }

    .hero-img-backing-card {
        top: 8px;
        left: 12px;
        /* Shifting to right on smaller viewports */
    }

    .hero-lens-flare {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {

    /* Hide all extra cinematic, abstract, and light layers on mobile for performance and readability */
    .hero-glow-halo,
    .hero-img-orbital-ring,
    .hero-img-backing-card,
    .hero-luxury-sparkle,
    .hero-lens-flare,
    .hero-cinematic-dust,
    .hero-img-tone-overlay {
        display: none !important;
    }
}


/* ==========================================================================
   TOP 6 REASONS — ANIMATED STAT COUNTERS
   ========================================================================== */
.reasons-section {
    position: relative;
    background: #fff;
    padding: 110px 0 110px;
    overflow: hidden;
}

.reasons-section-title {
    font-family: 'Corda', serif;
    font-size: 2.8rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 14px;
    font-weight: bold;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.reasons-section-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: #666;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

/* ═══ Stats Grid ═══ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1060px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ═══ Stat Cell ═══ */
.stat-cell {
    padding: 40px 32px;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Stagger entrance animation */
.stat-cell:nth-child(1) { transition-delay: 0s; }
.stat-cell:nth-child(2) { transition-delay: 0.1s; }
.stat-cell:nth-child(3) { transition-delay: 0.2s; }
.stat-cell:nth-child(4) { transition-delay: 0.3s; }
.stat-cell:nth-child(5) { transition-delay: 0.4s; }
.stat-cell:nth-child(6) { transition-delay: 0.5s; }

.stats-grid.in-view .stat-cell {
    opacity: 1;
    transform: translateY(0);
}

/* Vertical dividers between columns */
.stat-cell:not(:nth-child(3n))::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(195, 140, 39, 0.2) 50%, transparent 100%);
}

/* Horizontal divider for second row */
.stat-cell:nth-child(n+4)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(195, 140, 39, 0.2) 50%, transparent 100%);
}

/* ═══ Counter Number ═══ */
.stat-cell__number {
    font-family: 'Corda', serif;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 14px;
    color: var(--primary-blue);
    letter-spacing: -1px;
}

/* ═══ Accent Line ═══ */
.stat-cell__line {
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary-blue));
    margin: 0 auto 16px;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.stat-cell:hover .stat-cell__line {
    width: 60px;
}

/* ═══ Description ═══ */
.stat-cell__desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 14px;
    font-weight: 400;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══ Source Tag ═══ */
.stat-cell__tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.stat-cell__tag i {
    font-size: 0.8rem;
}

.stat-cell:hover .stat-cell__tag {
    opacity: 1;
}

/* ═══ Hover glow ═══ */
.stat-cell:hover {
    background: radial-gradient(ellipse at center, rgba(195, 140, 39, 0.03) 0%, transparent 70%);
}

/* ═══ Responsive ═══ */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Fix dividers for 2 columns */
    .stat-cell:not(:nth-child(3n))::after {
        display: none;
    }

    .stat-cell:nth-child(odd):not(:last-child)::after {
        content: '';
        display: block;
        position: absolute;
        top: 20%;
        right: 0;
        height: 60%;
        width: 1px;
        background: linear-gradient(180deg, transparent, rgba(195, 140, 39, 0.2), transparent);
    }

    .stat-cell:nth-child(n+4)::before {
        display: none;
    }

    .stat-cell:nth-child(n+3)::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 15%;
        width: 70%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(195, 140, 39, 0.2), transparent);
    }

    .stat-cell__number {
        font-size: 3rem;
    }
}

@media (max-width: 640px) {
    .reasons-section {
        padding: 70px 0 80px;
    }

    .reasons-section-title {
        font-size: 1.9rem;
    }

    .reasons-section-desc {
        font-size: 0.85rem;
        margin-bottom: 36px;
        padding: 0 10px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-cell::after,
    .stat-cell::before {
        display: none !important;
    }

    /* Bottom border for single column */
    .stat-cell:not(:last-child) {
        border-bottom: 1px solid rgba(195, 140, 39, 0.1);
    }

    .stat-cell {
        padding: 30px 20px;
    }

    .stat-cell__number {
        font-size: 2.6rem;
    }
}




/* ==========================================================================
   EXPLORE THE BEST BIRYANI RECIPES WITH DAAWAT
   ========================================================================== */
.recipes-section {
    position: relative;
    background: linear-gradient(180deg, #faf7f0 0%, #f5f0e6 100%);
    padding: 100px 0 110px;
    overflow: hidden;
}

.recipes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.recipes-section-title {
    font-family: 'Corda', serif;
    font-size: 2.8rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1.3;
}

.recipes-section-subtitle {
    font-family: 'Corda', serif;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 36px;
    font-style: italic;
}

/* --- Veg / Non-Veg Toggle Switch --- */
.recipe-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 50px;
}

.recipe-toggle-label {
    font-family: 'Corda', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
    user-select: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.recipe-toggle-label i {
    font-size: 1.15rem;
    vertical-align: middle;
}

.recipe-toggle-label--veg {
    color: #2e7d32;
    opacity: 0.45;
}

.recipe-toggle-label--nonveg {
    color: #c62828;
    opacity: 1;
}

/* Toggle pill */
.recipe-toggle-pill {
    position: relative;
    width: 62px;
    height: 32px;
    background: linear-gradient(135deg, #c62828, #e53935);
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.4s ease;
    box-shadow: 0 3px 10px rgba(198, 40, 40, 0.25);
}

.recipe-toggle-pill::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 26px;
    height: 26px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

#recipe-toggle-checkbox {
    display: none;
}

/* Checked = VEG active */
#recipe-toggle-checkbox:checked~.recipe-toggle-wrapper .recipe-toggle-pill {
    background: linear-gradient(135deg, #2e7d32, #43a047);
    box-shadow: 0 3px 10px rgba(46, 125, 50, 0.3);
}

#recipe-toggle-checkbox:checked~.recipe-toggle-wrapper .recipe-toggle-pill::after {
    transform: translateX(30px);
}

#recipe-toggle-checkbox:checked~.recipe-toggle-wrapper .recipe-toggle-label--veg {
    opacity: 1;
}

#recipe-toggle-checkbox:checked~.recipe-toggle-wrapper .recipe-toggle-label--nonveg {
    opacity: 0.45;
}

/* FSSAI-style veg/non-veg indicator mark */
.fssai-mark {
    flex-shrink: 0;
}

/* --- Recipe Swiper Slider --- */
.recipe-swiper-outer {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 70px;
}

.recipe-swiper .swiper-slide {
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.recipe-swiper .swiper-slide.recipe-hidden {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

/* Recipe Card */
.recipe-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(195, 140, 39, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(195, 140, 39, 0.06);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

/* Gold top accent bar */
.recipe-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 2;
}

.recipe-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.09), 0 6px 18px rgba(195, 140, 39, 0.1);
}

/* Responsive 16:9 video embed area */
.recipe-card-video-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    position: relative;
    flex-shrink: 0;
}

.recipe-card-video-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.recipe-card-body {
    padding: 20px 22px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #fff;
}

.recipe-card-name {
    font-family: 'Corda', serif;
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

.recipe-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.65;
    margin-bottom: 0;
    flex: 1;
}

/* Swiper slide equal height */
.recipe-swiper .swiper-slide {
    height: auto;
}

/* Swiper Nav Arrows */
.recipe-swiper-prev,
.recipe-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(195, 140, 39, 0.2);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.recipe-swiper-prev {
    left: 0;
}

.recipe-swiper-next {
    right: 0;
}

.recipe-swiper-prev:hover,
.recipe-swiper-next:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 6px 18px rgba(195, 140, 39, 0.3);
}

/* Responsive: Recipes */
@media (max-width: 768px) {
    .recipes-section {
        padding: 60px 0 70px;
    }

    .recipes-section-title {
        font-size: 1.9rem;
    }

    .recipes-section-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .recipe-swiper-outer {
        padding: 0 15px;
    }

    .recipe-swiper-prev,
    .recipe-swiper-next {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .recipe-swiper-prev {
        left: -2px;
    }

    .recipe-swiper-next {
        right: -2px;
    }

    .recipe-card-name {
        font-size: 1.15rem;
    }

    .recipe-card-desc {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .recipe-toggle-wrapper {
        gap: 10px;
    }

    .recipe-toggle-label {
        font-size: 0.85rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   Rice Grain Particles — ambient decorative layer
   ═══════════════════════════════════════════════════════════════════ */
.rice-particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: visible;
}

.rice-grain {
    position: absolute;
    display: block;
    border-radius: 45% 45% 45% 45% / 70% 70% 30% 30%;
    pointer-events: none;
    will-change: transform;
    animation-name: riceFloat;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.06);
}

@keyframes riceFloat {
    0% {
        transform: translate(0, 0) rotate(var(--base-rotation, 0deg));
    }

    100% {
        transform: translate(var(--drift-x, 6px), var(--drift-y, 10px)) rotate(calc(var(--base-rotation, 0deg) + 15deg));
    }
}

/* Hide on very small screens where margins are too narrow */
@media (max-width: 576px) {
    .rice-particles-container {
        display: none;
    }
}