
@import url('https://fonts.googleapis.com/css2?family=Anek+Devanagari:wght@100..800&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Eczar:wght@400..800&family=Grenze+Gotisch:wght@100..900&family=Kalam:wght@300;400;700&family=Yatra+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Eczar:wght@400..800&family=Kalam:wght@300;400;700&family=Yatra+One&family=Fredoka+One&family=Griffy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anek+Devanagari:wght@100..800&family=Eczar:wght@400..800&family=Grenze+Gotisch:wght@100..900&family=Kalam:wght@300;400;700&family=Yatra+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap'); */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
        background-color: #190505;
        color: #fff;
}

/* Design tokens and global resets for a premium, responsive look */
:root{
    --bg:#000000;
    --panel:#0b0b10;
    --text:#ffffff;
    --muted:#cfcfcf;
    --accent:#961d1e;
    --secondary:#961d1e;
    --glass: rgba(255,255,255,0.04);
    --radius: 16px;
    --elevation: 0 24px 100px rgba(0,0,0,0.65);
    --container: 1200px;
    --base-desc: 22px;
    --base-lead: 20px;
    --base-h1: 56px;
    --base-h2: 42px;
    --base-h3: 28px;
    --muted-contrast: rgba(255,255,255,0.75);
    --line-height: 1.8;
    --section-gap: 80px;
    --element-gap: 40px;
}

html,body{height:100%; scroll-behavior: smooth;}
body{
    background: #000000;
    color:var(--text);
    font-family: 'EB Garamond', serif;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    line-height: var(--line-height);
}

/* ==================== RESPONSIVE TYPOGRAPHY ==================== */
/* Desktop (1024px+): Full premium sizing */
@media (min-width: 1024px) {
    :root {
        --base-desc: 22px;
        --base-h1: 56px;
        --base-h2: 42px;
        --base-h3: 28px;
        --line-height: 1.8;
        --section-gap: 80px;
        --element-gap: 40px;
    }
}

/* Tablet (768px - 1023px): Slightly reduced */
@media (max-width: 1023px) {
    :root {
        --base-desc: 20px;
        --base-h1: 48px;
        --base-h2: 36px;
        --base-h3: 26px;
        --line-height: 1.7;
        --section-gap: 60px;
        --element-gap: 32px;
    }
}

/* Mobile Landscape/Large Phone (481px - 767px): Compact sizing */
@media (max-width: 767px) {
    :root {
        --base-desc: 18px;
        --base-h1: 40px;
        --base-h2: 30px;
        --base-h3: 22px;
        --line-height: 1.6;
        --section-gap: 50px;
        --element-gap: 28px;
    }
}

/* Mobile Portrait (max 480px): Premium compact sizing */
@media (max-width: 480px) {
    :root {
        --base-desc: 16px;
        --base-h1: 32px;
        --base-h2: 24px;
        --base-h3: 18px;
        --line-height: 1.5;
        --section-gap: 40px;
        --element-gap: 20px;
    }
}

/* Responsive container */
.max-width{ max-width: var(--container); padding: clamp(16px, 4vw, 80px); margin: 0 auto; }

/* Paragraph / description sizing: unified across the page */
p, .about-desc, .project-laite__description, .center-paragraph__text, .why-project__content p, .feature-split__desc, .project-journey__desc, .team-panchaikam__description, .support-us__description {
    font-size: var(--base-desc);
    color: var(--muted-contrast);
    letter-spacing: 0.3px;
    line-height: var(--line-height);
    margin-bottom: 1.2rem;
}

/* Headings - Unified sizing and styling */
h1, h2, h3, .about-title, .project-journey__title, .team-panchaikam__title, .support-us__title, .why-project__main-title { 
    color: var(--text);
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-family: 'EB Garamond', serif;
}

h1, .about-title, .project-journey__title { 
    font-size: var(--base-h1);
    line-height: 1.2;
}

h2, .why-project__main-title { 
    font-size: var(--base-h2);
    line-height: 1.3;
}

h3, .team-panchaikam__title, .support-us__title { 
    font-size: var(--base-h3);
}

/* Images: ensure fluid sizing and smooth corners */
img{ max-width:100%; height:auto; display:block; border-radius: var(--radius); }

/* Buttons and interactive elements */
button, .modal-nav, .center-arrow, .navbar .menu li a { transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, opacity 160ms ease; }

/* Soft shadows for cards and posters */
.project-laite__poster, .center-slide, .modal-content img { border-radius: calc(var(--radius) - 6px); box-shadow: var(--elevation); }

/* Utility: smaller caps for meta */
.muted { color: var(--muted); font-size: 0.95rem; }


.max-width{
    max-width: 1300px;
    padding: 0 80px;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
}

/* Responsive padding for max-width containers */
@media (max-width: 1023px) {
    .max-width {
        padding: 0 60px;
    }
}

@media (max-width: 767px) {
    .max-width {
        padding: 0 40px;
    }
}

@media (max-width: 480px) {
    .max-width {
        padding: 0 24px;
    }
}
.navbar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    padding: 8px 14px;
        background: transparent; /* made transparent per request */
    font-family: "Ubuntu", sans-serif;
    backdrop-filter: blur(6px);
    border-radius: 10px;
    z-index: 60;
}

/* Navbar toggle (hamburger) */
.navbar-toggle { display: none; background: transparent; border: 0; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; margin-left: 12px; }
.navbar-toggle .bar { display: block; width: 20px; height: 2px; background: #fff; margin: 3px 0; transition: transform 220ms ease, opacity 220ms ease; }
.navbar-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.navbar-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.navbar-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.image-row img:hover {
    transform: scale(1.06);
    z-index: 10;
    border-radius: 14px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
    filter: brightness(1.04);
}

.navbar .logo a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 0 10px;
}

.navbar .menu li {
    list-style: none;
    display: inline-block;
}

.navbar .menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    padding: 6px 10px;
    margin-left: 12px;
    transition: color 200ms ease, font-weight 200ms ease;
}

.navbar .menu li a:hover {
    color: #ff4444;
    font-weight: bold;
}



/* Compact layout for very small screens */
@media (max-width: 480px) {
    .navbar { bottom: 12px; left: 20px; transform: none !important; padding: 6px 10px; }
    .navbar .logo a { display: none; }
    .navbar .menu li a { font-size: 12px; margin-left: 8px; padding: 5px 8px; }
    .navbar-toggle { position: fixed; bottom: 20px; left: 20px; margin-left: 0; z-index: 70; transform: none !important; transition: filter 200ms ease; cursor: pointer; }
    .navbar-toggle .bar { background: #ff4444; }
    .navbar-toggle:hover .bar { background: #ff4444; }
}

/* Responsive collapsed menu for small screens */
@media (max-width: 768px) {
        .navbar { bottom: 12px; left: 20px; transform: none; padding: 6px 10px; }

@media (max-width: 480px) {
    .centered-slider { padding-bottom: 100px; }
    .centered-slider__wrap { min-height: 36vh; }
    .center-slide { max-height: 66vh; }
    .center-slide.active { transform: translate(-50%, -50%) scale(1); }
}
    .navbar .max-width { display: flex; align-items: center; justify-content: center; gap: 8px; }
    .navbar-toggle { display: inline-flex; }
    .navbar .menu { position: absolute; left: 50%; transform: translateX(-50%) translateY(8px); bottom: 64px; background: linear-gradient(180deg, rgba(6,6,12,0.96), rgba(18,12,32,0.96)); border-radius: 14px; padding: 10px; display: flex; flex-direction: column; gap: 8px; min-width: 220px; opacity: 0; pointer-events: none; transition: opacity 240ms ease, transform 260ms cubic-bezier(.2,.9,.3,1); box-shadow: 0 18px 60px rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.04); }
    .navbar.open .menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
    .navbar .menu li { display: block; text-align: center; }
    .navbar .menu li a { display: block; padding: 10px 14px; font-size: 15px; }
    body { padding-bottom: 110px; }
}

/* Hero video styles */
.hero-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 1080px;
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-video__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-video::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.35));
    z-index: 1;
}
.hero-video__overlay {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 0 20px;
    text-shadow: 0 6px 22px rgba(0,0,0,0.6);
}
.hero-video__overlay h1 {
    font-size: 48px;
    line-height: 1.05;
    margin: 0;
}
.hero-video__overlay .subheading {
    margin-top: 10px;
    font-size: 20px;
    opacity: 0.95;
}

/* Responsive scaling */
@media (max-width: 1023px) {
    .hero-video__overlay h1 { font-size: var(--base-h1); }
    .hero-video__overlay .subheading { font-size: 18px; line-height: 1.5; }
}

@media (max-width: 767px) {
    .hero-video { height: 50vh; min-height: 300px; }
    .hero-video__overlay h1 { font-size: var(--base-h1); }
    .hero-video__overlay .subheading { font-size: 16px; line-height: 1.4; }
    .hero-video__overlay { padding: 0 16px; }
}

@media (max-width: 480px) {
    .hero-video { height: 45vh; min-height: 240px; aspect-ratio: auto; }
    .hero-video__overlay h1 { font-size: var(--base-h1); line-height: 1.1; }
    .hero-video__overlay .subheading { font-size: 14px; line-height: 1.3; margin-top: 8px; }
    .hero-video__overlay { padding: 0 12px; text-shadow: 0 4px 16px rgba(0,0,0,0.7); }
}

/* Top overlay bar (over the video) */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 120;
    pointer-events: auto;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: auto;
    transition: background 220ms ease, padding 220ms ease;
    padding: 10px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.topbar__logo img {
    display: block;
    max-height: 52px;
    width: auto;
}
.topbar__logo {
    position: relative;
    margin-right: 12px;
}
.topbar__social {
    display: flex;
    align-items: center;
    gap: 14px;
}
.topbar__social a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    opacity: 0.95;
    display: inline-flex;
    align-items: center;
    padding: 6px;
    border-radius: 8px;
    transition: background 180ms ease, transform 120ms ease, opacity 120ms ease;
}
.topbar__social a:hover { background: rgba(255,255,255,0.06); transform: translateY(-2px); opacity: 1; }
.topbar__social svg { width: 20px; height: 20px; fill: currentColor; display: block; }
.topbar.scrolled { background: rgba(0,0,0,0.55); backdrop-filter: blur(6px); }

@media (max-width: 768px) {
    .topbar__inner { padding: 10px 16px; }
    .topbar__logo img { max-height: 42px; }
    .topbar__social a { font-size: 16px; padding: 6px; }
}

@media (max-width: 480px) {
    .topbar__inner { padding: 8px 12px; }
    .topbar__logo img { max-height: 36px; }
    .topbar__social { gap: 8px; }
    .topbar__social a { font-size: 14px; padding: 4px; }
}

/* About section styles */
.about-panchaikam {
    margin: 0 0 0 0;
    text-align: center;
    background: transparent;
    padding: var(--section-gap) 0;
    border-radius: var(--radius);
    line-height: var(--line-height);
}

.about-panchaikam .max-width {
    padding: 0 80px;
}

.about-title {
    margin-bottom: 1.2rem;
}

.about-desc {
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 1023px) {
    .about-panchaikam {
        padding: 60px 0;
    }
    .about-panchaikam .max-width {
        padding: 0 60px;
    }
}

@media (max-width: 767px) {
    .about-panchaikam {
        padding: 50px 0;
        margin: 0 0 50px 0;
    }
    
    .about-panchaikam .max-width {
        padding: 0 40px;
    }
}

@media (max-width: 480px) {
    .about-panchaikam {
        padding: 40px 0;
        margin: 0 0 40px 0;
    }
    
    .about-panchaikam .max-width {
        padding: 0 24px;
    }
    
    .about-desc p {
        margin-bottom: 1rem;
    }
}

/* Project Journey section styles */
.project-journey {
    margin: 0 0 var(--section-gap) 0;
    text-align: center;
    background: transparent;
    padding: var(--section-gap) 0;
    border-radius: var(--radius);
    line-height: var(--line-height);
}

.project-journey .max-width {
    padding: 0 80px;
}

.project-journey__title {
    margin-bottom: 1.2rem;
}

.project-journey__desc {
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .project-journey {
        padding: 60px 0;
        margin: 0 0 60px 0;
    }
    
    .project-journey .max-width {
        padding: 0 40px;
    }
}

/* Project Laite section styles */
.project-laite {
    margin: 0 0 var(--section-gap) 0;
    padding: var(--section-gap) 0;
    background: transparent;
    border-radius: var(--radius);
    text-align: center;
}

.project-laite .max-width {
    padding: 0 80px;
}

.project-laite__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--element-gap);
    align-items: center;
}

.project-laite__left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    0%, 49% {
        border-right: 3px solid #111;
    }
    50%, 100% {
        border-right: 3px solid transparent;
    }
}

.project-laite__title {
    font-size: var(--base-h1);
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #fff;
    letter-spacing: 0.5px;
    font-family: 'EB Garamond', serif;
    animation: typing 5s steps(15, end) infinite, blink 0.75s step-end infinite;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #fff;
    text-align: center;
}

.project-laite__title-nepali {
    font-family: 'EB Garamond', serif;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.project-laite__left {
    align-items: center;
    text-align: center;
}

.project-laite__description {
    color: var(--muted-contrast);
    max-width: 500px;
    font-size: 24px;
}

.project-laite__right {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.project-laite__poster {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-laite__poster:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.25);
}

.project-laite__poster-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-laite__synopsis {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    padding: 40px 30px 50px;
    border-radius: 0 0 var(--radius) var(--radius);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    max-height: 60%;
    overflow: hidden;
}

.project-laite__poster-container:hover .project-laite__synopsis {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.project-laite__synopsis-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #fff;
    font-family: 'EB Garamond', serif;
}

.project-laite__synopsis p {
    font-size: 22px;
    line-height: 1.6;
    margin: 0;
    color: #fff;
}

/* Responsive design for Project Laite */
@media (max-width: 1024px) {
    .project-laite__container {
        gap: var(--element-gap);
    }
    .project-laite__title {
        font-size: 40px;
    }
}

@media (max-width: 1023px) {
    .project-laite {
        margin: 0 0 60px 0;
        padding: 60px 0;
    }
    .project-laite .max-width {
        padding: 0 60px;
    }
    .project-laite__container {
        gap: var(--element-gap);
    }
    .project-laite__title {
        font-size: var(--base-h2);
    }
}

@media (max-width: 767px) {
    .project-laite {
        margin: 0 0 50px 0;
        padding: 50px 0;
    }
    
    .project-laite .max-width {
        padding: 0 40px;
    }
    
    .project-laite__container {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .project-laite__title {
        font-size: var(--base-h2);
    }
    .project-laite__description {
        font-size: var(--base-desc);
    }
    .project-laite__poster {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .project-laite {
        margin: 40px 0;
        padding: 40px 0;
    }
    
    .project-laite .max-width {
        padding: 0 24px;
    }
    
    .project-laite__container {
        gap: 20px;
    }
    
    .project-laite__title {
        font-size: var(--base-h2);
    }
    
    .project-laite__description {
        font-size: var(--base-desc);
    }
    
    .project-laite__description p {
        margin-bottom: 0.8rem;
    }
    
    .project-laite__poster {
        max-width: 100%;
    }

    .project-laite__synopsis {
        padding: 24px 16px 32px;
        max-height: none;
        overflow: visible;
    }

    .project-laite__synopsis-title {
        font-size: 18px;
        margin: 0 0 10px 0;
    }

    .project-laite__synopsis p {
        font-size: 14px;
        line-height: 1.5;
    }
}
 

/* Image Gallery Section */
.scrolling-images {
    width: 100%;
    padding: var(--section-gap) 0;
    margin: 0;
    overflow: visible;
}

.scrolling-images-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 80px;
    box-sizing: border-box;
}

.scrolling-images-wrapper img {
    width: 120%;
    height: auto;
    object-fit: contain;
    display: block;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: var(--radius);
    overflow: hidden;
}

.scrolling-images-wrapper img:hover {
    transform: scale(1.08) translateY(-8px);
    z-index: 100;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(0, 0, 0, 0.5);
    filter: brightness(1.15);
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-content {
    position: relative;
    max-width: 80%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    color: #ddd;
}

.modal-nav {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: #fff;
    font-size: 40px;
    padding: 20px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 1001;
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.6);
}

.modal-nav.prev-btn {
    margin-right: 20px;
}

.modal-nav.next-btn {
    margin-left: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .scrolling-images { padding: 24px 0; }
    .scrolling-images-wrapper { 
        display: block !important;
        width: 100%;
        padding: 0 80px;
        position: relative;
        overflow: hidden;
        height: 300px;
        box-sizing: border-box;
    }
    .scrolling-images-wrapper img { 
        display: none;
        height: 280px; 
        width: 100%;
        border-radius: 10px;
        position: absolute;
        top: 10px;
        left: 0;
        right: 0;
        margin: 0;
        object-fit: contain;
        opacity: 0;
        transition: opacity 0.6s ease;
        cursor: pointer;
    }
    .scrolling-images-wrapper img.active { 
        display: block;
        opacity: 1;
        z-index: 10;
    }
    /* reduce hover transform on touch devices */
    .scrolling-images-wrapper img:hover { 
        transform: scale(1.02);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    }
    .scrolling-images-wrapper .mobile-controls {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 50;
        display: flex;
        gap: 12px;
    }
    .scrolling-images-wrapper .mobile-controls button {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.15);
        border: none;
        color: #fff;
        font-size: 20px;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .scrolling-images-wrapper .mobile-controls button:active {
        transform: scale(0.95);
        background: rgba(255, 255, 255, 0.3);
    }
}

/* Mobile one-row slider (built by JS) */
.mobile-slider { display: none; }
@media (max-width: 480px) {
    .scrolling-images-wrapper { display: none; }
    .mobile-slider { display: block; position: relative; width: 100%; overflow: hidden; margin: 0; }
    .mobile-slider .track { display: flex; width: 100%; transition: transform 360ms cubic-bezier(.22,.9,.35,1); }
    .mobile-slider .slide { flex: 0 0 100%; display:flex; align-items:center; justify-content:center; padding: 8px; }
    .mobile-slider .slide img { width: 100%; height: calc(60vh); object-fit: contain; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.45); }
    .mobile-slider .nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(0,0,0,0.45); color: #fff; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 40; }
    .mobile-slider .nav.prev { left: 8px; }
    .mobile-slider .nav.next { right: 8px; }
}

/* Why This Project Section */
.why-project {
    width: 100%;
    background: transparent;
    padding: var(--section-gap) 0;
    margin: 0 0 var(--section-gap) 0;
    border-radius: var(--radius);
}

.why-project .max-width {
    padding: 0 80px;
}

.why-project__main-title {
    text-align: center;
    font-family: 'EB Garamond', serif;
    font-size: var(--base-h2);
    margin: 0 0 var(--element-gap) 0;
    letter-spacing: 0.5px;
    color: #fff;
}

.why-project__container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--element-gap);
    align-items: center;
}

.why-project__left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 40px;
    align-items: center;
    text-align: center;
}

.why-project__content h3 {
    font-size: var(--base-h3);
    color: #fff;
    margin-bottom: 1.2rem;
    font-weight: 600;
    align-items: center;
}

.why-project__content p {
    font-size: var(--base-desc);
    line-height: var(--line-height);
    color: var(--muted-contrast);
    margin-bottom: 1.2rem;
    text-align: center;
    align-items: center;
}

.why-project__right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.why-project__video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Maintain 16:9 aspect ratio */
    padding-top: 56.25%;
}

.video-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 12px 20px;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    z-index: 6;
}

.why-project__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    border-radius: 6px;
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.06);
    pointer-events: auto;
}

.why-project__video:focus { outline: none; }

.why-project__video:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.1);
}

.why-project__video:focus { outline: none; }



/* Responsive Design */
@media (max-width: 1024px) {
    .why-project {
        padding: 60px 0;
    }
    
    .why-project .max-width {
        padding: 0 60px;
    }
    
    .why-project__main-title {
        font-size: var(--base-h2);
    }
    .why-project__content h3 {
        font-size: var(--base-h3);
    }
}

@media (max-width: 767px) {
    .why-project {
        padding: 50px 0;
    }
    
    .why-project .max-width {
        padding: 0 40px;
    }
    
    .why-project__main-title {
        font-size: var(--base-h2);
        margin-bottom: 40px;
    }
    .why-project__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-project__left {
        padding: 0;
    }
    
    .why-project__content h3 {
        font-size: var(--base-h3);
    }
    
    .why-project__content p {
        font-size: var(--base-desc);
    }
}

@media (max-width: 480px) {
    .why-project {
        padding: 40px 0;
    }
    
    .why-project .max-width {
        padding: 0 24px;
    }
    
    .why-project__main-title {
        font-size: var(--base-h2);
        margin-bottom: 30px;
    }
    
    .why-project__container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-project__left {
        padding: 0;
    }
    
    .why-project__content h3 {
        font-size: var(--base-h3);
        margin-bottom: 12px;
    }
    
    .why-project__content p {
        font-size: var(--base-desc);
        margin-bottom: 0.8rem;
        line-height: var(--line-height);
    }
}

/* Full-bleed Poster Section */
.full-bleed-poster {
    width: 100%;
    height: auto;
    margin: 0 0 var(--section-gap) 0;
    padding: 0;
    overflow: visible;
    position: relative;
    margin-top: 40px;
}

.full-bleed-poster__img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    object-fit: cover;
}

/* Slideshow container for full-bleed images */
.full-bleed-poster__slideshow {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 40px 0;
}

.poster-slide {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
}

.poster-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Arrow navigation buttons */
.poster-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.3s ease;
}

.poster-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.4);
}

.poster-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.poster-arrow--prev {
    left: 24px;
}

.poster-arrow--next {
    right: 24px;
}

@media (max-width: 768px) {
    .poster-arrow {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    .poster-arrow--prev {
        left: 12px;
    }
    .poster-arrow--next {
        right: 12px;
    }
}


/* Overlay rows sliding on scroll */
.full-bleed-poster { position: relative; }
.poster-overlay-rows {
    position: absolute;
    left: 0;
    right: 0;
    top: 10%;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    align-items: center;
    pointer-events: auto;
    z-index: 15;
}
.overlay-row {
    width: 100%;
    display: flex;
    gap: 3vw;
    justify-content: center;
    transform: translateX(0);
    transition: transform 0.2s linear;
}
.overlay-row img {
    width: calc((100% - 6vw) / 3);
    max-width: 360px;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.04);
    pointer-events: auto;
    opacity: 0.02;
    transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.overlay-row img:hover {
    opacity: 100%;
    transform: translateY(-6px) scale(1.43);
    box-shadow: 0 40px 120px rgba(0,0,0,0.6);
}

@media (max-width: 1024px) {
    .overlay-row img { height: 180px; }
}

/* Poster responsive sizing on smaller screens */
@media (max-width: 768px) {
    .full-bleed-poster {
        height: auto;
        margin-top: 30px;
    }
    
    .full-bleed-poster__slideshow {
        min-height: 300px;
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .full-bleed-poster {
        height: auto;
        margin-top: 20px;
    }
    
    .full-bleed-poster__slideshow {
        min-height: 250px;
        padding: 20px 0;
    }
    
    .poster-arrow {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}
.poster-mobile-slider { display: none; }
@media (max-width: 480px) {
    /* hide the two-row overlay and replace with the single-row slider */
    .poster-overlay-rows { display: none !important; }
    .poster-mobile-slider {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 8%;
        z-index: 30;
        padding: 8px 12px;
        pointer-events: auto;
    }
    .poster-mobile-track {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
    }
    .poster-mobile-slide {
        flex: 0 0 82%;
        scroll-snap-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .poster-mobile-slide img {
        width: 100%;
        height: auto;
        max-height: 44vh;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        border: 1px solid rgba(255,255,255,0.04);
    }
    .poster-mobile-prev, .poster-mobile-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 999px;
        background: rgba(0,0,0,0.5);
        color: #fff;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 40;
    }
    .poster-mobile-prev { left: 10px; }
    .poster-mobile-next { right: 10px; }
}


/* When an overlay image is hovered/focused, blur the poster background */
.full-bleed-poster.blurred .full-bleed-poster__img {
    filter: blur(6px) brightness(0.78);
    transition: filter 240ms ease;
}
.poster-overlay-rows img:focus {
    outline: 3px solid rgba(255,255,255,0.08);
    outline-offset: 6px;
}
@media (max-width: 768px) {
    .poster-overlay-rows { top: 4%; gap: 1.5rem; }
    .overlay-row img { height: 140px; border-radius: 10px; }
}

@media (max-width: 768px) {
    .full-bleed-poster__img {
        width: 100vw;
        margin-left: calc(50% - 50vw);
    }
}

/* Centered single-paragraph section */
.center-paragraph {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36vh;
    padding: var(--section-gap) 0;
    margin: var(--section-gap) 0 var(--section-gap) 0;
    background: transparent;
    border-radius: var(--radius);
    text-align: center;
}

.center-paragraph .max-width {
    max-width: 900px;
    padding: 0 20px;
}

.center-paragraph__text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .center-paragraph {
        padding: 60px 0;
        margin: 0 0 60px 0;
    }
    
    .center-paragraph .max-width {
        padding: 0 40px;
    }
}

/* Split images: two equal halves (left/right) */
.split-images {
    display: flex;
    width: 100%;
    gap: 0;
    margin: 0;
}
.split-images__half {
    flex: 1 1 50%;
    min-height: 60vh;
    overflow: hidden;
    display: block;
}
.split-images__half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .split-images { flex-direction: column; }
    .split-images__half { min-height: 40vh; }
}

/* Feature split: two equal background halves with animated titles/descriptions */
.feature-split {
    display: flex;
    width: 100%;
    min-height: 70vh;
    overflow: hidden;
}
.feature-split__half {
    flex: 1 1 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.feature-split__half::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    z-index: 0;
    filter: blur(var(--blur, 0px)) brightness(0.9);
    transition: filter 180ms linear, transform 400ms ease;
}
.feature-split__content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    padding: 40px;
    color: #fff;
    text-align: left;
}
.feature-split__title {
    font-size: 2rem;
    margin: 0 0 12px 0;
    transform: translateY(-22px);
    opacity: 0;
    transition: transform 420ms cubic-bezier(.2,.9,.3,1), opacity 420ms ease;
}
.feature-split__desc {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.8;
    transform: translateY(22px);
    opacity: 0;
    transition: transform 420ms cubic-bezier(.2,.9,.3,1) 120ms, opacity 420ms ease 120ms;
}
.feature-split.in-view .feature-split__title {
    transform: translateY(0);
    opacity: 1;
}
.feature-split.in-view .feature-split__desc {
    transform: translateY(0);
    opacity: 1;
}

/* On small screens stack and center text */
@media (max-width: 768px) {
    .feature-split { flex-direction: column; }
    .feature-split__content { text-align: center; padding: 28px; }
    .feature-split__title { font-size: 1.6rem; }
}

/* Footer styles */
.site-footer {
    color: var(--muted-contrast);
    padding: 40px 0 60px;
    margin-bottom: 20px;
}

.site-footer .footer-inner { 
    display: flex; 
    flex-direction: column; 
    gap: 40px; 
    align-items: center; 
    justify-content: center; 
}

.footer-content {
    text-align: center;
}

.footer-heading {
    font-size: clamp(24px, 5vw, 48px);
    margin-bottom: 40px;
    letter-spacing: 1px;
    color: var(--text);
}

.footer-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted-contrast);
    text-decoration: none;
    font-size: clamp(14px, 2vw, 18px);
    transition: all 0.3s ease;
    padding: 12px 20px;
    border-radius: 8px;
}

.footer-contact-link:hover {
    color: var(--accent);
    background: rgba(246, 194, 74, 0.1);
    transform: translateY(-2px);
}

.footer-contact-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.site-footer .footer-bottom { 
    display: flex; 
    gap: 18px; 
    align-items: center; 
    justify-content: flex-end; 
    flex-direction: row; 
    width: 100%;
    padding-right: 40px;
}

.site-footer .footer-nav a { 
    color: var(--muted-contrast); 
    text-decoration: none; 
    margin: 0 10px; 
    font-size: 14px; 
}

.site-footer .copyright { 
    font-size: 14px; 
    color: rgba(255,255,255,0.6); 
    margin-top: 0; 
}

@media (min-width: 768px) {
    .site-footer .footer-inner { 
        flex-direction: column; 
        justify-content: center; 
        align-items: center; 
    }
    .site-footer .footer-bottom { 
        flex-direction: row; 
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 50px 0;
    }
    
    .site-footer .footer-inner {
        padding: 0 40px;
    }
    
    .site-footer .footer-heading {
        font-size: var(--base-h3);
        margin-bottom: 20px;
    }
    
    .site-footer .footer-contact-link {
        font-size: 14px;
    }
    
    .site-footer .copyright {
        font-size: 12px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 40px 0;
    }
    
    .site-footer .footer-inner {
        padding: 0 24px;
    }
    
    .site-footer .footer-heading {
        font-size: var(--base-h3);
        margin-bottom: 16px;
    }
    
    .site-footer .footer-contact-links {
        gap: 12px;
    }
    
    .site-footer .footer-contact-link {
        font-size: 13px;
        padding: 8px;
        gap: 6px;
    }
    
    .site-footer .footer-contact-link svg {
        width: 16px;
        height: 16px;
    }
    
    .site-footer .copyright {
        font-size: 11px;
        margin-top: 16px;
    }
}

/* Laite-when section styles */
.laite-when {
    margin: 0;
    text-align: center;
    background: transparent;
    padding: var(--section-gap) 0;
    border-radius: var(--radius);
    line-height: var(--line-height);
}

.laite-when .max-width {
    padding: 0 80px;
}

.laite-when h2 {
    font-family: 'EB Garamond', serif;
    font-size: var(--base-h2);
    margin-bottom: 1.2rem;
}

.laite-when .project-journey__desc,
.laite-when p {
    max-width: 900px;
    margin: 0 auto 1.2rem auto;
}

@media (max-width: 1023px) {
    .laite-when {
        padding: 60px 0;
    }
    
    .laite-when .max-width {
        padding: 0 60px;
    }
}

@media (max-width: 767px) {
    .laite-when {
        padding: 50px 0;
        margin: 0 0 50px 0;
    }
    
    .laite-when .max-width {
        padding: 0 40px;
    }
    
    .laite-when h2 {
        font-size: var(--base-h2);
    }
    
    .laite-when p {
        font-size: var(--base-desc);
    }
}

@media (max-width: 480px) {
    .laite-when {
        padding: 40px 0;
        margin: 0 0 40px 0;
    }
    
    .laite-when .max-width {
        padding: 0 24px;
    }
    
    .laite-when h2 {
        font-size: var(--base-h2);
        margin-bottom: 1rem;
    }
    
    .laite-when p {
        font-size: var(--base-desc);
        margin-bottom: 0.8rem;
        line-height: var(--line-height);
    }
}

/* Centered slider styles (appended) */
.centered-slider {
    width: 100%;
    padding: 48px 0 120px; /* extra bottom space so slider won't overlap footer */
    margin-top: 36px; /* breathing room from previous section */
    display: flex;
    justify-content: center;
    margin-bottom: 80px; /* extra space below slider */
    position: relative;
}
.centered-slider__wrap {
    position: relative;
    width: min(1100px, 92vw);
    min-height: 52vh;
    height: auto; /* let content size naturally, avoid hard clipping when slides scale */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}
.center-slide-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}
.center-slide {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.80);
    width: auto;
    max-width: 86%;
    max-height: 86%;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transition: transform 520ms cubic-bezier(.22,.9,.35,1), opacity 380ms ease, filter 380ms ease, box-shadow 380ms ease;
    will-change: transform, opacity, filter, box-shadow;
    border-radius: 14px;
    box-shadow: 0 18px 80px rgba(0,0,0,0.55);
    -webkit-transform-style: preserve-3d;
    backface-visibility: hidden;
}
.center-slide.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.98);
    z-index: 30;
}
.center-slide.zoom { transform: translate(-50%, -50%) scale(1.12); }
.center-slide.prev,
.center-slide.next {
    opacity: 0.6;
    transform: translateY(-50%) scale(0.5);
    transition: transform 420ms cubic-bezier(.22,.9,.35,1), opacity 340ms ease, filter 340ms ease, box-shadow 340ms ease;
    pointer-events: none;
    filter: saturate(.95);
    z-index: 20;
}
.center-slide.prev { left: 18%; transform: translate(-50%, -50%) scale(0.5) translateX(-12%); }
.center-slide.next { left: 82%; transform: translate(-50%, -50%) scale(0.5) translateX(12%); }

/* hide non-adjacent slides without breaking transitions */
.center-slide:not(.active):not(.prev):not(.next) {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.86);
    pointer-events: none;
    z-index: 5;
}
.center-arrow {
    --arrow-size: 120px;
    --tx: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    transform: var(--tx) translateZ(0);
    width: var(--arrow-size);
    height: var(--arrow-size);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    color: #fff;
    border: 1px solid rgba(255,255,255,0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    cursor: pointer;
    opacity: 0.98;
    transition: transform 320ms cubic-bezier(.2,.9,.25,1), box-shadow 320ms ease, background 320ms ease, opacity 220ms ease;
    z-index: 140;
    box-shadow: 0 22px 60px rgba(0,0,0,0.55), 0 4px 12px rgba(255,255,255,0.02) inset;
    backdrop-filter: blur(6px) saturate(1.1);
}
.center-arrow::after{
    content: '';
    position: absolute; inset: -6px; border-radius: 999px; z-index: 10;
    background: radial-gradient(circle at center, rgba(255,255,255,0.06), transparent 40%);
    opacity: 0; transition: opacity 320ms ease, transform 320ms ease;
}
.center-arrow:hover::after{ opacity: 1; transform: scale(1.02); }
.center-arrow:hover{ transform: var(--tx) scale(1.06); box-shadow: 0 30px 90px rgba(0,0,0,0.6); }
.center-arrow.prev { left: 12%; }
.center-arrow.next { left: 88%; }


@media (max-width: 1366px) {
    .centered-slider__wrap { width: 96vw; height: 82vh; }
    .center-arrow { --arrow-size: 96px; font-size: 36px; }
    .center-arrow.prev { left: 10%; }
    .center-arrow.next { left: 90%; }
}

@media (max-width: 1024px) {
    .centered-slider__wrap { width: 94vw; height: 64vh; }
    .center-arrow { --arrow-size: 84px; font-size: 30px; }
    .center-arrow.prev { left: 6%; }
    .center-arrow.next { left: 94%; }
}

@media (max-width: 768px) {
    .centered-slider__wrap { width: 94vw; height: 44vh; }
    .center-arrow { --arrow-size: 56px; font-size: 20px; }
    .center-arrow.prev { left: 8px; transform: translate(0, -50%); }
    .center-arrow.next { right: 8px; left: auto; transform: translate(0, -50%); }
}

/* Team Panchaikam Section */
.team-panchaikam {
    width: 100%;
    padding: var(--section-gap) 0;
    margin: 0;
    text-align: center;
}

.team-panchaikam__title {
    font-size: var(--base-h2);
    text-align: center;
    margin-bottom: var(--element-gap);
    letter-spacing: 0.5px;
}

.team-panchaikam__description {
    font-size: var(--base-desc);
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--element-gap);
    color: var(--muted-contrast);
}

.team-panchaikam__image-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 600px;
    overflow: hidden;
    border-radius: var(--radius);
}

.team-panchaikam__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s ease;
}

.team-panchaikam__image.in-view {
    transform: translateY(0);
    opacity: 1;
}

/* Instagram Hotspots */
.team-hotspots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.team-panchaikam__image-container {
    position: relative;
}

.team-hotspot {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(150, 29, 30, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
    z-index: 11;
}

.team-hotspot:hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    background: #961d1e;
    box-shadow: 0 0 20px rgba(150, 29, 30, 0.8);
}

.hotspot-icon {
    width: 24px;
    height: 24px;
    fill: #ffffff;
    transition: transform 0.3s ease;
}

.team-hotspot:hover .hotspot-icon {
    transform: scale(1.15);
}

@media (max-width: 1024px) {
    .team-panchaikam {
        padding: 60px 0;
        margin: 0;
    }
    
    .team-panchaikam__image-container {
        height: 450px;
        padding: 0 60px;
    }
}

@media (max-width: 767px) {
    .team-panchaikam {
        padding: 50px 0 30px 0;
        margin: 0;
    }
    
    .team-panchaikam .max-width {
        padding: 0 40px;
    }
    
    .team-panchaikam__title {
        margin-bottom: 30px;
        font-size: var(--base-h2);
    }
    
    .team-panchaikam__description {
        font-size: var(--base-desc);
        margin-bottom: 60px;
        line-height: var(--line-height);
    }
    
    .team-panchaikam__description p {
        margin-bottom: 0.8rem;
    }
    
    .team-panchaikam__image-container {
        height: 350px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .team-panchaikam {
        padding: 40px 0 20px 0;
        margin: 0;
    }
    
    .team-panchaikam .max-width {
        padding: 0 24px;
    }
    
    .team-panchaikam__title {
        font-size: var(--base-h2);
        margin-bottom: 20px;
    }
    
    .team-panchaikam__description {
        font-size: var(--base-desc);
        margin-bottom: 40px;
        line-height: var(--line-height);
    }
    
    .team-panchaikam__description p {
        margin-bottom: 0.8rem;
    }
    
    .team-panchaikam__image-container {
        height: 250px;
        padding: 0 16px;
    }
}
/* Why Support Us Section */
.support-us {
    width: 100%;
    padding: var(--section-gap) 0;
    margin: 0;
    text-align: center;
}

.support-us__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--section-gap);
    align-items: center;
    justify-items: center;
}

.support-us__title {
    font-size: var(--base-h2);
    margin-bottom: var(--element-gap);
    letter-spacing: 0.5px;
}

.support-us__description {
    font-size: var(--base-desc);
    color: var(--muted-contrast);
    margin-bottom: 1.2rem;
    line-height: var(--line-height);
}

.support-us__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support-us__list li {
    font-size: var(--base-desc);
    color: var(--muted-contrast);
    margin-bottom: 1.2rem;
    padding-left: 30px;
    position: relative;
    line-height: var(--line-height);
    max-width: 500px;
}

.support-us__list li:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 16px;
}

.support-us__right {
    display: flex;
    justify-content: center;
}

.support-us__qr-container {
    display: flex;
    gap: var(--element-gap);
    justify-content: center;
    align-items: center;
    width: 100%;
}

.support-us__qr {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-us__qr:hover {
    transform: translateY(-8px);
}

.support-us__qr img {
    width: 280px;
    height: 280px;
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    display: block;
    margin-bottom: 16px;
    object-fit: contain;
}

.support-us__qr-label {
    font-size: clamp(16px, 2vw, 20px);
    /* color: var(--accent); */
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}

@media (max-width: 1024px) {
    .support-us {
        padding: 80px 0 60px;
    }
    
    .support-us__container {
        gap: 60px;
    }
    
    .support-us__qr img {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 767px) {
    .support-us {
        padding: 50px 0 40px;
        margin: 0;
    }
    
    .support-us__container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 40px;
    }
    
    .support-us__title {
        margin-bottom: 30px;
        font-size: var(--base-h2);
    }
    
    .support-us__description {
        font-size: var(--base-desc);
    }
    
    .support-us__list li {
        margin-bottom: 16px;
        font-size: var(--base-desc);
    }
    
    .support-us__qr-container {
        gap: 30px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .support-us {
        padding: 40px 0 40px;
        margin: 0;
    }
    
    .support-us__container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 24px;
    }
    
    .support-us__title {
        margin-bottom: 20px;
        font-size: var(--base-h2);
    }
    
    .support-us__description {
        font-size: var(--base-desc);
        line-height: var(--line-height);
    }
    
    .support-us__description p {
        margin-bottom: 0.8rem;
    }
    
    .support-us__list li {
        margin-bottom: 12px;
        font-size: var(--base-desc);
    }
    
    .support-us__qr-container {
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .support-us__qr img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .support-us {
        padding: 40px 0 30px;
        margin: 30px 0 0 0;
    }
    
    .support-us__description {
        font-size: var(--base-desc);
    }
    
    .support-us__qr-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .support-us__qr img {
        width: 180px;
        height: 180px;
    }
}



/* Poster Section - Responsive Layout */
.poster {
    width: 100%;
    position: relative;
    padding: 80px 0;
    background: url("assets/images/where.jpg") no-repeat center center/cover;
    background-attachment: fixed;
}

.poster::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.poster__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.poster__content {
    display: flex;
    align-items: center;
    position: relative;
}

.poster__overlay {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 40px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.poster__text {
    text-align: left;
    color: #fff;
}

.poster__text h1 {
    font-size: 46px;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.2;
}

.poster__text h2 {
    font-size: 22px;
    margin: 35px 0 20px;
    font-weight: 500;
    color: var(--accent);
}

.poster__text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
    opacity: 0.9;
    color: var(--muted-contrast);
}

/* Locations layout */
.locations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.locations div {
    text-align: center;
}

.locations p {
    font-size: 18px;
    margin-bottom: 12px;
    color: #fff;
}

.poster__mapwrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 400px;
    margin: 0 auto;
}

#map {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 2px 8px rgba(255, 255, 255, 0.1),
        inset 0 -2px 8px rgba(0, 0, 0, 0.3);
    border: 6px solid #961d1e;
    z-index: 5;
    transform: perspective(800px) rotateX(2deg) rotateY(-2deg);
    transition: transform 0.3s ease;
}

#map .leaflet-container {
    width: 100% !important;
    height: 100% !important;
}

/* Disable leaflet interactions - prevent zoom and pan */
.leaflet-pane,
.leaflet-control,
.leaflet-container {
    cursor: default !important;
}

.leaflet-popup-content-wrapper {
    font-family: Arial, sans-serif;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--accent);
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .poster {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .poster__container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 60px;
    }

    .poster__overlay {
        min-height: auto;
        padding: 30px;
    }

    .poster__text h1 {
        font-size: var(--base-h2);
    }

    .poster__mapwrapper {
        min-height: auto;
        max-width: 350px;
        aspect-ratio: 1 / 1;
    }

    #map {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .poster {
        padding: 50px 0;
        background-attachment: scroll;
    }

    .poster__container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 40px;
    }

    .poster__overlay {
        min-height: auto;
        padding: 25px;
    }

    .poster__text h1 {
        font-size: var(--base-h2);
        margin-bottom: 20px;
    }

    .poster__text h2 {
        font-size: 18px;
        margin: 25px 0 15px;
    }

    .poster__text p {
        font-size: var(--base-desc);
        margin-bottom: 15px;
    }

    .poster__mapwrapper {
        min-height: auto;
        max-width: 300px;
        aspect-ratio: 1 / 1;
    }

    #map {
        min-height: auto;
    }

    .locations {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .locations p {
        font-size: var(--base-desc);
    }
}

@media (max-width: 480px) {
    .poster {
        padding: 40px 0;
    }

    .poster__container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 24px;
    }

    .poster__overlay {
        min-height: auto;
        padding: 20px;
    }

    .poster__text h1 {
        font-size: var(--base-h2);
        margin-bottom: 15px;
    }

    .poster__text h2 {
        font-size: var(--base-h3);
        margin: 20px 0 12px;
    }

    .poster__text p {
        font-size: var(--base-desc);
        margin-bottom: 12px;
        line-height: var(--line-height);
    }

    .poster__mapwrapper {
        min-height: auto;
        max-width: 250px;
        aspect-ratio: 1 / 1;
    }

    #map {
        min-height: auto;
    }

    .locations {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .locations p {
        font-size: var(--base-desc);
    }
}