/* =========================================
   1. VARIABLES & THEME
   ========================================= */
:root {
    --white-pure: #ffffff;
    --cream-bg: #FFF8E6;
    --saffron-primary: #FF9933;
    --saffron-light: #FFB366;
    --orange-accent: #FF6F00;
    --orange-deep: #ff5722;
    --gold-accent: #FFD700;
    --text-primary: #333333;
    --text-secondary: #555555;
    --text-light: #f1f1f1;
    --container-width: 1200px;
    --header-height: 70px;
    --shadow-medium: 0 4px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 10px 28px rgba(0,0,0,0.45);
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =========================================
   2. RESET & BASE
   ========================================= */
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--cream-bg);
    color: var(--text-primary);
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
img { max-width: 100%; display: block; }

/* =========================================
   3. UTILITIES
   ========================================= */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; width: 100%; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* =========================================
   4. COMPONENTS
   ========================================= */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 10px 24px; border-radius: 999px; border: none;
    font-size: 15px; font-weight: 600; cursor: pointer; transition: all var(--transition-fast);
}
.btn-primary {
    background: linear-gradient(135deg, var(--saffron-primary), var(--orange-accent));
    color: var(--white-pure);
    box-shadow: 0 4px 15px rgba(255,153,51,0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,153,51,0.4); }
.btn-glass {
    background: rgba(255,255,255,0.12); color: var(--white-pure);
    backdrop-filter: blur(6px); box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-glass:hover { transform: translateY(-2px); background: rgba(255,255,255,0.25); box-shadow: var(--shadow-hover); }
.btn-pulse { animation: buttonPulse 2.2s ease-in-out infinite; }

.select-custom {
    background: var(--cream-bg); color: var(--text-primary);
    border: 2px solid var(--saffron-primary); padding: 8px 20px;
    border-radius: 25px; font-size: 14px; font-weight: 600;
    cursor: pointer; outline: none; transition: var(--transition-fast);
}
.select-custom:hover, .select-custom:focus {
    background: var(--saffron-light); color: var(--white-pure); border-color: var(--orange-accent);
}

/* =========================================
   5. PAGE LOADER
   ========================================= */
#page-loader {
    position: fixed; inset: 0; background: var(--white-pure);
    z-index: 99999; flex-direction: column;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader-om { font-size: 48px; margin-bottom: 10px; color: var(--orange-accent); }
.loader-text { font-size: 16px; letter-spacing: 3px; color: var(--text-secondary); }

/* =========================================
   6. WELCOME OVERLAY
   ========================================= */
.welcome-overlay {
    position: fixed; inset: 0; z-index: 99998; text-align: center; color: var(--white-pure);
    background: linear-gradient(-45deg, #ff9933, #ff6f00, #ffcc80, #ff5722);
    background-size: 400% 400%;
    animation: gradientMove 18s ease infinite;
    transition: opacity 0.6s ease;
}
.welcome-overlay::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 50%);
    pointer-events: none;
}
.welcome-content { max-width: 800px; padding: 30px; position: relative; z-index: 2; }
.welcome-text {
    font-size: clamp(26px, 4vw, 40px); margin-bottom: 24px; font-weight: 700;
    text-shadow: 0 4px 15px rgba(0,0,0,0.45);
    animation: welcomeFadeUp 1.7s ease-out forwards;
}

/* =========================================
   7. HEADER & NAV
   ========================================= */
.top-header { background: var(--white-pure); padding: 20px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.brand-logo img { height: 70px; width: auto; }
.header-actions { gap: 20px; display: flex; flex-wrap: wrap; justify-content: flex-end; }

.main-nav {
    background: linear-gradient(90deg, var(--saffron-primary), var(--orange-accent));
    padding: 12px 0; position: sticky; top: 0; z-index: 1000;
    box-shadow: var(--shadow-medium);
}
.nav-scroller { overflow-x: auto; white-space: nowrap; scrollbar-width: none; }
.nav-scroller::-webkit-scrollbar { display: none; }
.nav-list { display: inline-flex; list-style: none; gap: 24px; padding: 0; margin: 0; }
.nav-link { color: var(--white-pure); font-size: 15px; font-weight: 600; padding: 6px 0; position: relative; }
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--white-pure); transition: width 0.2s ease;
}
.nav-link:hover::after { width: 100%; }

/* =========================================
   8. HERO
   ========================================= */
.hero-section { min-height: 80vh; padding: 40px 20px; background: var(--cream-bg); }
.hero-img { width: 100%; max-width: 1200px; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); object-fit: cover; }

/* =========================================
   9. FOOTER
   ========================================= */
.site-footer { background: #1c1c1c; color: var(--text-light); padding: 60px 20px 20px; margin-top: 20px; }
.footer-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px; max-width: var(--container-width); margin: 0 auto 40px;
}
.footer-col h3 { color: #ffd27f; margin-top: 0; margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--saffron-primary); text-decoration: underline; }
.footer-bottom { text-align: center; border-top: 1px solid #333; padding-top: 20px; font-size: 13px; opacity: 0.7; }

/* =========================================
   10. ANIMATIONS
   ========================================= */
@keyframes gradientMove {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes welcomeFadeUp {
    0%   { opacity: 0; transform: translateY(30px) scale(0.97); }
    60%  { opacity: 1; transform: translateY(0) scale(1.02); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes buttonPulse {
    0%, 100% { transform: translateY(0);   box-shadow: 0 6px 20px rgba(0,0,0,0.35); }
    50%       { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.55); }
}

/* =========================================
   11. BREADCRUMB HERO
   ========================================= */
.breadcrumb-hero {
    background: linear-gradient(135deg, var(--saffron-primary) 0%, var(--orange-accent) 60%, var(--orange-deep) 100%);
    padding: 60px 20px; position: relative; overflow: hidden; text-align: center;
}
.breadcrumb-hero::before {
    content: "ॐ"; position: absolute; font-size: 300px; color: rgba(255,255,255,0.04);
    right: -40px; top: -60px; line-height: 1; pointer-events: none; user-select: none;
}
.breadcrumb-hero::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.12), transparent 55%);
    pointer-events: none;
}
.breadcrumb-trail {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-bottom: 16px; flex-wrap: wrap; position: relative; z-index: 1;
}
.breadcrumb-trail a { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; transition: color var(--transition-fast); }
.breadcrumb-trail a:hover { color: var(--white-pure); }
.breadcrumb-sep { color: rgba(255,255,255,0.5); font-size: 12px; }
.breadcrumb-current { color: var(--white-pure); font-size: 14px; font-weight: 600; }
.breadcrumb-page-title {
    font-size: clamp(28px, 5vw, 48px); font-weight: 800; color: var(--white-pure);
    margin: 0; letter-spacing: 1px; text-shadow: 0 4px 20px rgba(0,0,0,0.3); position: relative; z-index: 1;
}
.breadcrumb-subtitle { font-size: 16px; color: rgba(255,255,255,0.85); margin-top: 10px; position: relative; z-index: 1; }

/* =========================================
   12. PAGE CONTENT
   ========================================= */
.page-content { max-width: 1100px; margin: 60px auto; padding: 0 20px; }
.section-title {
    font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--orange-accent);
    margin-bottom: 12px; position: relative; display: inline-block;
}
.section-title::after {
    content: ''; display: block; width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--saffron-primary), var(--orange-accent));
    border-radius: 4px; margin-top: 8px;
}
.section-body { font-size: 16px; line-height: 1.9; color: var(--text-secondary); }

/* Intro Card */
.intro-card {
    background: var(--white-pure); border-radius: 20px; padding: 40px;
    box-shadow: var(--shadow-medium); border-left: 6px solid var(--saffron-primary);
    margin-bottom: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.intro-card .intro-text p { margin: 0 0 16px; }
.intro-card .intro-text p:last-child { margin-bottom: 0; }
.highlight-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, var(--saffron-primary), var(--orange-accent));
    color: var(--white-pure); font-size: 13px; font-weight: 700;
    padding: 6px 16px; border-radius: 999px; margin-bottom: 20px; letter-spacing: 0.5px;
}
.story-img {
    width: 100%; height: 100%; min-height: 260px; object-fit: cover;
    border-radius: 16px; box-shadow: 0 8px 28px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.story-img:hover { transform: scale(1.02); box-shadow: 0 14px 40px rgba(0,0,0,0.22); }

/* Image Placeholder */
.img-placeholder {
    background: linear-gradient(135deg, #ffe0b2, #ffcc80); border-radius: 16px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--orange-accent); font-weight: 600; font-size: 14px;
    gap: 10px; min-height: 220px; border: 2px dashed var(--saffron-primary);
    position: relative; overflow: hidden; cursor: pointer; transition: all var(--transition-fast);
}
.img-placeholder:hover { border-color: var(--orange-accent); background: linear-gradient(135deg, #ffd180, #ffab40); }
.img-placeholder-icon { font-size: 36px; opacity: 0.6; }
.img-placeholder-label { opacity: 0.8; text-align: center; padding: 0 12px; }

/* =========================================
   13. TIMELINE
   ========================================= */
.timeline { position: relative; padding: 20px 0; margin-bottom: 60px; }
.timeline::before {
    content: ''; position: absolute; left: 32px; top: 0; bottom: 0; width: 3px;
    background: linear-gradient(180deg, var(--saffron-primary), var(--orange-accent)); border-radius: 4px;
}
.timeline-item { display: flex; gap: 30px; margin-bottom: 48px; position: relative; align-items: flex-start; }
.timeline-dot {
    width: 66px; min-width: 66px; height: 66px; border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron-primary), var(--orange-accent));
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--white-pure); font-weight: 800;
    box-shadow: 0 4px 18px rgba(255,153,51,0.4); z-index: 1; flex-shrink: 0; position: relative;
}
.timeline-card {
    background: var(--white-pure); border-radius: 16px; padding: 28px 32px;
    box-shadow: var(--shadow-medium); flex: 1; border-top: 4px solid var(--saffron-primary);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.timeline-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.timeline-date { font-size: 13px; font-weight: 700; color: var(--saffron-primary); margin-bottom: 6px; letter-spacing: 0.5px; }
.timeline-card h3 { font-size: 18px; font-weight: 800; color: var(--text-primary); margin: 0 0 14px; }
.timeline-card p { font-size: 15px; line-height: 1.85; color: var(--text-secondary); margin: 0; }

.quote-block {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2); border-left: 5px solid var(--orange-accent);
    border-radius: 12px; padding: 20px 24px; margin: 20px 0; font-style: italic;
    font-size: 15px; color: var(--text-primary); line-height: 1.9; position: relative;
}
.quote-block::before {
    content: '"'; font-size: 72px; color: var(--saffron-primary); opacity: 0.2;
    position: absolute; top: -10px; left: 10px; line-height: 1; font-family: Georgia, serif;
}

/* =========================================
   14. VIDEO EMBED
   ========================================= */
.video-section { margin-bottom: 60px; }
.video-wrapper {
    position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
    border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.18);
}
.video-wrapper iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; border-radius: 20px;
}
.video-caption { text-align: center; font-size: 14px; color: var(--text-secondary); margin-top: 14px; font-style: italic; }

/* =========================================
   15. SCROLL REVEAL
   ========================================= */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.reveal-group > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-group > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-group > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-group > *:nth-child(4) { transition-delay: 0.35s; }

/* =========================================
   16. PHOTO GRID + LIGHTBOX
   ========================================= */
.photo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 24px; }

/* ── grid-item is a <button> — reset button defaults ── */
.grid-item {
    position: relative; border-radius: 16px; overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,0.12); cursor: pointer;
    aspect-ratio: 4/3; background: #ffe0b2;
    border: 0; padding: 0; text-align: inherit; /* button reset */
}
.grid-item::after {
    content: '🔍'; position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; background: rgba(255,100,0,0.45);
    pointer-events: none; /* ← fixes click blocking */
    opacity: 0; transition: opacity 0.3s ease;
}
.grid-item:hover::after { opacity: 1; }
.grid-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s ease; }
.grid-item:hover .grid-img { transform: scale(1.07); }
.grid-caption {
    display: block; position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    color: #fff; font-size: 13px; font-weight: 600;
    padding: 24px 12px 10px; text-align: center;
    transform: translateY(100%); transition: transform 0.35s ease;
}
.grid-item:hover .grid-caption { transform: translateY(0); }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 100000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.88);
    backdrop-filter: blur(6px); cursor: pointer;
}
.lightbox-container {
    position: relative; z-index: 1; display: flex; align-items: center;
    gap: 16px; max-width: 92vw; max-height: 90vh; padding: 20px;
}
.lightbox-img-wrap { display: flex; align-items: center; justify-content: center; }
.lightbox-img {
    max-width: 80vw; max-height: 78vh; border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6); object-fit: contain;
    transform: scale(0.85); opacity: 0;
    transition: transform 0.4s cubic-bezier(0.25,0.8,0.25,1), opacity 0.4s ease;
    display: block;
}
.lightbox.active .lightbox-img { transform: scale(1); opacity: 1; }
.lightbox-caption {
    position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 600;
    white-space: nowrap; text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.lightbox-close {
    position: absolute; top: -12px; right: -12px;
    width: 42px; height: 42px; border-radius: 50%; border: none;
    background: var(--saffron-primary); color: #fff; font-size: 24px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4); transition: background 0.2s ease, transform 0.2s ease; z-index: 2;
}
.lightbox-close:hover { background: var(--orange-accent); transform: rotate(90deg) scale(1.1); }
.lightbox-nav {
    background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.25);
    color: #fff; font-size: 36px; width: 52px; height: 52px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease; flex-shrink: 0; backdrop-filter: blur(4px);
}
.lightbox-nav:hover { background: var(--saffron-primary); border-color: var(--saffron-primary); transform: scale(1.1); }

/* =========================================
   17. RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
    .intro-card { grid-template-columns: 1fr; gap: 24px; }
    .photo-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .hero-section { min-height: 0vh; padding: 20px 20px; background: var(--cream-bg); }
    .header-content { flex-direction: column; gap: 15px; }
    .header-actions { justify-content: center; }
    .brand-logo img { height: 50px; }
}
@media (max-width: 600px) {
    .timeline::before { left: 22px; }
    .timeline-dot { width: 46px; min-width: 46px; height: 46px; font-size: 16px; }
    .timeline-card { padding: 20px; }
    .timeline-item { gap: 5px; }
    .intro-card { padding: 24px; }
    .breadcrumb-hero { padding: 40px 16px; }
}
@media (max-width: 500px) {
    .photo-grid { grid-template-columns: 1fr; }
    .lightbox-nav { width: 40px; height: 40px; font-size: 26px; }
    .lightbox-img { max-width: 92vw; }
}


.meeting-highlight{
    background:#fff7e6;
    border-left:4px solid #ff9800;
    padding:14px 16px;
    margin-top:16px;
    font-size:15px;
    line-height:1.7;
    border-radius:6px;
}