/* =================================== */
/* === CORE VARIABLES & RESET === */
/* =================================== */
:root {
    --primary-orange: #FF6A00;
    --primary-green: #0B8A16;
    --soft-orange: #fff8e1;
    --soft-green: #e8f5e9;
    --gradient-main: linear-gradient(135deg, var(--primary-orange), var(--primary-green));
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.25);
    --font-heading: 'Rozha One', serif;
    --font-body: 'Mukta', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    margin: 0;
    font-family: var(--font-body);
    background-color: #f9f9f9;
    color: #333;
    overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: linear-gradient(to bottom, var(--primary-orange), var(--primary-green)); border-radius: 5px; }

/* =================================== */
/* === PRELOADER === */
/* =================================== */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #fff; z-index: 99999;
    display: flex; justify-content: center; align-items: center; flex-direction: column;
    transition: opacity 0.5s ease;
}
.loader-spinner {
    width: 60px; height: 60px;
    border: 6px solid #f3f3f3; border-top: 6px solid var(--primary-orange); border-bottom: 6px solid var(--primary-green);
    border-radius: 50%; animation: spin 1s linear infinite; margin-bottom: 20px;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* =================================== */
/* === UTILITIES & TYPOGRAPHY === */
/* =================================== */
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; }

/* Zoom Cursor */
.zoom-target { cursor: zoom-in; transition: transform 0.3s ease; }
.zoom-target:hover { transform: scale(1.02); }

.btn-gradient {
    padding: 10px 24px;
    border: none; border-radius: 50px;
    background: var(--gradient-main);
    color: #fff; font-size: 16px; font-weight: 700;
    cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-family: var(--font-body);
}
.btn-gradient:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255, 106, 0, 0.4); }

/* Fixed Heading Position */
.section-heading-gradient {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 40px; 
    background: var(--gradient-main);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    margin: 0 auto 40px auto; /* Centered */
    display: block;
    width: fit-content;
    padding-bottom: 10px;
    position: relative;
}
.section-heading-gradient::after {
    content: ''; display: block; width: 80px; height: 5px;
    background: var(--gradient-main); 
    margin: 5px auto 0 auto; 
    border-radius: 5px;
}

/* =================================== */
/* === HEADER === */
/* =================================== */
.main-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px);
    border-bottom: 4px solid var(--primary-green);
    padding: 8px 0; box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.header-container {
    max-width: 1250px; margin: auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo-container { display: flex; align-items: center; gap: 15px; }
.logo-img { width: 65px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); }

.logo-heading {
    font-family: var(--font-heading);
    font-size: 28px; line-height: 1; margin: 0; color: #333;
}
.logo-heading span { color: var(--primary-orange); }
.logo-subheading {
    font-size: 14px; font-weight: 600; color: var(--primary-green); display: block; margin-top: 4px;
}

.nav-list { display: flex; gap: 15px; }
.nav-link {
    font-weight: 700; color: #444; padding: 8px 16px; border-radius: 25px;
    transition: all 0.3s ease; font-size: 17px;
}
.nav-link:hover { color: var(--primary-orange); background: rgba(255, 106, 0, 0.1); }

.contact-link {
    background: var(--primary-green); color: white !important;
    box-shadow: 0 4px 10px rgba(11, 138, 22, 0.3);
}
.contact-link:hover { background: #097012; transform: translateY(-2px); }

.mobile-social-container { display: none; gap: 15px; align-items: center; }
.hamburger-btn { background: none; border: none; cursor: pointer; display: flex; flex-direction: column; gap: 6px; }
.hamburger-line { width: 30px; height: 3px; background: #333; border-radius: 2px; }

/* =================================== */
/* === MARQUEE === */
/* =================================== */
.marquee-bar {
    width: 100%;
    box-sizing: border-box;
    margin: 10px auto;
    padding: 8px 10px;
    border: 4px solid;
    border-image: linear-gradient(to right, #FF9933, #FFFFFF, #138808) 1;
    border-radius: 0px; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    background: #fff1e0;
}
.marquee-text {
    flex: 1;
    margin: 0 10px;
    color: #000;
    font-weight: 600;
    font-size: 18px;
    font-family: var(--font-heading);
}

/* =================================== */
/* === HERO SLIDER === */
/* =================================== */
.slider-container {
    position: relative;
    width: 95%;
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 22px;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(#000, #000) padding-box,
                linear-gradient(to right, #FF9933, #FFFFFF, #138808) border-box;
}

.slides {
    position: relative;
    width: 100%;
    padding-top: 65%; 
}

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none; 
    background: #000;
    animation: fadeEffect 1.5s;
}
.slide-img.active { display: block; }

@keyframes fadeEffect { from {opacity: .6} to {opacity: 1} }

.slider-caption {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 16px;
    max-width: 80%;
    font-family: var(--font-body);
    backdrop-filter: blur(5px);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: white;
    cursor: pointer;
    user-select: none;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 12px;
    border-radius: 50%;
    z-index: 10;
    transition: 0.3s;
}
.slider-arrow:hover { background: var(--primary-orange); }
.prev { left: 15px; } .next { right: 15px; }

/* =================================== */
/* === SECTIONS GENERAL === */
/* =================================== */
section { padding: 70px 20px; position: relative; z-index: 7; } /* Explicit z-index */

/* Work Section */
.work-section { background: linear-gradient(to bottom, #ffffff, var(--soft-orange)); }
.work-card-container { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; max-width: 1200px; margin: auto; }

.work-card {
    flex: 1 1 calc(25% - 20px); 
    max-width: calc(25% - 20px);
    min-width: 250px; 
    background: white; border-radius: 20px;
    overflow: hidden; box-shadow: var(--shadow-soft); transition: all 0.4s ease;
    text-align: center; padding-bottom: 25px; border: 1px solid #eee;
}
.work-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: var(--primary-orange); }
.work-card-img { width: 100%; height: 200px; object-fit: cover; border-bottom: 4px solid var(--primary-green); }
.work-card-content { padding: 15px; }
.work-card h3 { color: var(--primary-green); margin: 8px 0; font-size: 22px; font-weight: 700; font-family: var(--font-heading); }
.work-card p { font-size: 15px; color: #555; margin-bottom: 12px; line-height: 1.5; }

/* About Section */
.about-section {
    background: linear-gradient(to bottom, var(--soft-green), #ffffff);
    border-top: 5px solid var(--primary-green); border-bottom: 5px solid var(--primary-orange);
}
.about-container { max-width: 1100px; margin: auto; display: flex; flex-wrap: wrap; gap: 50px; align-items: center; justify-content: center; }
.about-profile-img {
    width: 320px; height: 320px; object-fit: cover; border-radius: 20px;
    border: 8px solid white; box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.about-text-card {
    flex: 1; min-width: 300px; max-width: 600px; background: rgba(255,255,255,0.85);
    padding: 40px; border-radius: 25px; box-shadow: var(--shadow-soft); border-right: 6px solid var(--primary-orange);
}
.about-text-card h2 { color: var(--primary-orange); font-family: var(--font-heading); font-size: 32px; margin-top: 0; }
.about-text-card p { font-size: 18px; line-height: 1.8; color: #444; }

/* Counter Section */
.counter-section {
    background: var(--gradient-main); display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
    padding: 80px 20px; color: white; position: relative; overflow: hidden;
}
.counter-card {
    background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
    padding: 30px; width: 180px; border-radius: 20px; text-align: center;
    border: 1px solid rgba(255,255,255,0.3); transition: 0.3s;
}
.counter-card:hover { transform: scale(1.05); background: rgba(255,255,255,0.25); }
.counter-card i { font-size: 40px; margin-bottom: 15px; color: #fff; }
.count { font-size: 48px; font-weight: 800; display: block; margin-bottom: 5px; font-family: var(--font-heading); }
.counter-card p { font-size: 18px; font-weight: 600; opacity: 0.9; margin: 0; }

/* Gallery Grid */
.gallery-section-grid { background: #fff; }
.gallery-grid {
    max-width: 1200px; margin: auto; display: grid; gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.gallery-card {
    position: relative; border-radius: 20px; overflow: hidden;
    box-shadow: var(--shadow-soft); aspect-ratio: 4/5; border: 4px solid white;
    transition: 0.3s;
}
.gallery-card:hover { transform: scale(1.02); border-color: var(--primary-orange); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; }
.card-text {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white; padding: 20px 10px; font-size: 18px; font-weight: 700; text-align: center;
}

/* =================================== */
/* === CUSTOM SCROLLING GALLERY CSS === */
/* =================================== */
.gallery-section {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #ffe4c2, #ffffff);
    border-top: 5px solid #f5821f;
    border-bottom: 5px solid #0b6623;
    border-radius: 20px;
    margin: 40px auto;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 60px;
}

.gallery-heading {
    text-align: center;
    color: #0b6623;
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 800;
    font-family: var(--font-heading);
}

.gallery-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-scroll-container {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollGallery 12s linear infinite;
    will-change: transform;
}
.gallery-scroll-container:hover {
    animation-play-state: paused;
}

.gallery-scroll-container img {
    width: 230px;
    height: 320px;
    border-radius: 16px;
    object-fit: cover;
}
.gallery-img-green {
    border: 5px solid #0b6623;
}
.gallery-img-orange {
    border: 5px solid #f5821f;
}

.gallery-btn-container {
    text-align: center;
    margin-top: 25px;
}

.gallery-btn {
    padding: 12px 28px;
    background: #f5821f;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: white;
    transition: 0.3s;
    font-family: var(--font-body);
}
.gallery-btn:hover {
    background: #0b6623;
    transform: scale(1.05);
}

@keyframes scrollGallery { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(-50%); } 
}

/* Video Section */
.video-section { background: linear-gradient(to bottom, #fff, var(--soft-green)); }
.video-card-container { display: flex; flex-wrap: wrap; gap: 25px; justify-content: center; max-width: 1200px; margin: auto; }

.video-card {
    flex: 1 1 220px; 
    max-width: 250px; 
    background: white; border-radius: 20px;
    overflow: hidden; box-shadow: var(--shadow-soft); padding: 10px; border: 2px solid var(--primary-green);
}
.video-wrapper { 
    position: relative; 
    padding-top: 155%; 
    border-radius: 15px; overflow: hidden; background: #000; 
}
.video-wrapper video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.video-card p { text-align: center; font-weight: 700; margin-top: 12px; font-size: 16px; color: #333; }

/* News Section */
.news-section { background: #fff; }
.news-grid { max-width: 1200px; margin: auto; display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; }
.news-card {
    flex: 1 1 300px; max-width: 350px; background: white; border-radius: 20px;
    overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); border-top: 6px solid var(--primary-orange);
    transition: 0.4s;
}
.news-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
.news-img { width: 100%; height: 220px; object-fit: cover; }
.news-content { padding: 25px; }
.news-content h3 { color: #d35400; font-size: 22px; font-weight: 700; margin-top: 0; font-family: var(--font-heading); }
.news-content p { color: #666; font-size: 16px; margin-bottom: 20px; }

/* Feedback */
.feedback-section { background: #fffcf5; text-align: center; overflow: hidden; padding-bottom: 80px; }
.feedback-slider-wrapper { position: relative; max-width: 900px; margin: auto; }
.feedback-slider-container { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 25px; padding: 20px 0; }
.feedback-slider-container::-webkit-scrollbar { display: none; }
.feedback-card {
    min-width: 100%; scroll-snap-align: center; background: white; padding: 40px; border-radius: 25px;
    box-shadow: var(--shadow-soft); border: 2px solid #eee; box-sizing: border-box;
}
.feedback-card p { font-size: 20px; font-style: italic; color: #444; position: relative; z-index: 2; font-family: var(--font-heading); }
.feedback-card strong { color: var(--primary-green); display: block; margin-top: 20px; font-size: 16px; text-transform: uppercase; }

.feedback-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-orange);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feedback-arrow:hover {
    background: var(--primary-green);
    transform: translateY(-50%) scale(1.1);
}
.feedback-prev { left: 10px; }
.feedback-next { right: 10px; }

/* Contact & Footer */
.contact-section { background: white; border-top: 5px solid #eee; }
.contact-container { display: flex; flex-wrap: wrap; gap: 40px; max-width: 1150px; margin: auto; }
.contact-details-box {
    flex: 1; min-width: 300px; background: linear-gradient(135deg, #fff, #f9f9f9);
    padding: 40px; border-radius: 25px; box-shadow: var(--shadow-soft); border: 2px solid var(--primary-orange);
}
.contact-details-box p { font-size: 17px; margin: 15px 0; display: flex; align-items: center; gap: 15px; }
.contact-details-box i { color: var(--primary-orange); width: 25px; font-size: 20px; }
.contact-map-wrapper { flex: 1; min-width: 300px; height: 450px; }
.contact-map-iframe { width: 100%; height: 100%; border-radius: 25px; border: 4px solid white; box-shadow: var(--shadow-soft); }

.main-footer {
    background: #222; color: white; text-align: center; padding: 50px 20px; border-top: 6px solid var(--primary-orange);
    position: relative; z-index: 17; /* Ensure footer is on top */
}
.footer-container h3 { margin: 0; color: var(--primary-orange); font-size: 28px; font-family: var(--font-heading); }
.footer-divider { width: 60px; height: 2px; background: #555; margin: 25px auto; }

/* Floating Buttons */
.floating-container { position: fixed; bottom: 130px; right: 30px; z-index: 1000; display: flex; flex-direction: column; gap: 15px; }
.floating-btn {
    width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: white; font-size: 28px; box-shadow: 0 6px 20px rgba(0,0,0,0.3); transition: 0.3s;
}
.wa-float { background: #25D366; animation: pulse 2s infinite; }
.fb-float { background: #1877F2; }
.floating-btn:hover { transform: scale(1.1); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* Popup */
.popup {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
}
.popup-img { max-width: 90%; max-height: 90%; border-radius: 8px; box-shadow: 0 0 50px rgba(255,255,255,0.1); animation: zoomIn 0.3s; }
.popup-close { position: absolute; top: 30px; right: 40px; color: white; font-size: 50px; cursor: pointer; transition: 0.3s; }
.popup-close:hover { color: var(--primary-orange); transform: rotate(90deg); }
@keyframes zoomIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* Responsive Fixes */
@media (max-width: 900px) {
    .nav-list { display: none; flex-direction: column; position: absolute; top: 70px; right: 20px; background: white; padding: 25px; border-radius: 15px; box-shadow: var(--shadow-hover); border: 2px solid var(--primary-orange); }
    .nav-list.active { display: flex; }
    .mobile-social-container { display: flex; }
    .about-profile-img { width: 100%; max-width: 300px; height: auto; aspect-ratio: 1/1; }
    .section-heading-gradient { font-size: 32px; }
    
    /* Responsive Cards */
    .work-card { max-width: 100%; flex: 1 1 100%; }
    .gallery-scroll-container img { width: 180px; height: 260px; }
}


/* .......................gallery ............................. */

/* =================================== */
/* === CORE VARIABLES & RESET === */
/* =================================== */
:root {
    --primary-orange: #FF6A00;
    --primary-green: #0B8A16;
    --soft-orange: #fff8e1;
    --soft-green: #e8f5e9;
    --gradient-main: linear-gradient(135deg, var(--primary-orange), var(--primary-green));
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.25);
    --font-heading: 'Rozha One', serif;
    --font-body: 'Mukta', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    margin: 0;
    font-family: var(--font-body);
    background-color: #f9f9f9;
    color: #333;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: linear-gradient(to bottom, var(--primary-orange), var(--primary-green)); border-radius: 5px; }

/* =================================== */
/* === PRELOADER === */
/* =================================== */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #fff; z-index: 99999;
    display: flex; justify-content: center; align-items: center; flex-direction: column;
    transition: opacity 0.5s ease;
}
.loader-spinner {
    width: 60px; height: 60px;
    border: 6px solid #f3f3f3; border-top: 6px solid var(--primary-orange); border-bottom: 6px solid var(--primary-green);
    border-radius: 50%; animation: spin 1s linear infinite; margin-bottom: 20px;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* =================================== */
/* === HEADER === */
/* =================================== */
.main-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px);
    border-bottom: 4px solid var(--primary-green);
    padding: 8px 0; box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.header-container {
    max-width: 1250px; margin: auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo-container { display: flex; align-items: center; gap: 15px; }
.logo-img { width: 65px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); }

.logo-heading {
    font-family: var(--font-heading);
    font-size: 28px; line-height: 1; margin: 0; color: #333;
}
.logo-heading span { color: var(--primary-orange); }
.logo-subheading {
    font-size: 14px; font-weight: 600; color: var(--primary-green); display: block; margin-top: 4px;
}

.nav-list { display: flex; gap: 15px; list-style: none; margin: 0; padding: 0; }
.nav-link {
    font-weight: 700; color: #444; padding: 8px 16px; border-radius: 25px;
    transition: all 0.3s ease; font-size: 17px; text-decoration: none;
}
.nav-link:hover { color: var(--primary-orange); background: rgba(255, 106, 0, 0.1); }

.contact-link {
    background: var(--primary-green); color: white !important;
    box-shadow: 0 4px 10px rgba(11, 138, 22, 0.3);
}
.contact-link:hover { background: #097012; transform: translateY(-2px); }

/* Mobile Menu */
.mobile-social-container { display: none; gap: 15px; align-items: center; }
.hamburger-btn { background: none; border: none; cursor: pointer; display: flex; flex-direction: column; gap: 6px; }
.hamburger-line { width: 30px; height: 3px; background: #333; border-radius: 2px; }

/* =================================== */
/* === MARQUEE === */
/* =================================== */
.marquee-bar {
    width: 100%; box-sizing: border-box; margin: 10px auto; padding: 8px 10px;
    border: 4px solid; border-image: linear-gradient(to right, #FF9933, #FFFFFF, #138808) 1;
    display: flex; align-items: center; justify-content: space-between; overflow: hidden;
    background: #fff1e0;
}
.marquee-text {
    flex: 1; margin: 0 10px; color: #000; font-weight: 600; font-size: 18px; font-family: var(--font-heading);
}

/* =================================== */
/* === GALLERY STYLES === */
/* =================================== */
.gallery-container {
    max-width: 1300px; margin: 60px auto; padding: 0 20px;
}

/* Section Headings */
.gallery-heading-new, .gallery-heading-old {
    text-align: center;
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 50px;
    background: linear-gradient(to right, #FF6A00, #0B8A16);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    font-family: var(--font-heading);
    position: relative;
    padding-bottom: 10px;
}
.gallery-heading-new::after, .gallery-heading-old::after {
    content: ''; display: block; width: 80px; height: 5px;
    background: var(--gradient-main); 
    margin: 5px auto 0 auto; border-radius: 5px;
}

/* Grid Layouts */
.gallery-grid-new, .gallery-grid-old {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* Cards */
.gallery-card-new, .gallery-card-old {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    background: white;
    transition: all 0.4s ease;
    cursor: zoom-in;
}

/* New Gallery Aspect Ratio */
.gallery-card-new { aspect-ratio: 4/3; }
/* Old Gallery Aspect Ratio */
.gallery-card-old { aspect-ratio: 3/4.2; }

/* Borders */
.border-orange { border: 5px solid #f5821f; }
.border-green { border: 5px solid #0b6623; }

/* Hover Effects */
.gallery-card-new:hover, .gallery-card-old:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Images */
.gallery-img-new, .gallery-img-old {
    width: 100%; height: 100%; object-fit: cover; transition: 0.5s;
}
.gallery-card-new:hover .gallery-img-new,
.gallery-card-old:hover .gallery-img-old {
    transform: scale(1.1);
}

/* =================================== */
/* === FOOTER === */
/* =================================== */
.main-footer {
    background: #222; color: white; text-align: center; padding: 50px 20px; border-top: 6px solid var(--primary-orange); margin-top: 60px;
}
.footer-container h3 { margin: 0; color: var(--primary-orange); font-size: 28px; font-family: var(--font-heading); }
.footer-subheading { font-size: 16px; margin: 10px 0; opacity: 0.9; }
.footer-divider { width: 60px; height: 2px; background: #555; margin: 25px auto; border:none; }
.footer-copyright { font-size: 14px; opacity: 0.7; }

/* =================================== */
/* === FLOATING & POPUP === */
/* =================================== */
.floating-container { position: fixed; bottom: 130px; right: 30px; z-index: 100; display: flex; flex-direction: column; gap: 15px; }
.floating-btn {
    width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: white; font-size: 28px; box-shadow: 0 6px 20px rgba(0,0,0,0.3); transition: 0.3s;
}
.wa-float { background: #25D366; animation: pulse 2s infinite; }
.fb-float { background: #1877F2; }
.floating-btn:hover { transform: scale(1.1); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

.popup {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
}
.popup-img { max-width: 90%; max-height: 90%; border-radius: 8px; box-shadow: 0 0 50px rgba(255,255,255,0.1); animation: zoomIn 0.3s; }
.popup-close { position: absolute; top: 30px; right: 40px; color: white; font-size: 50px; cursor: pointer; transition: 0.3s; }
.popup-close:hover { color: var(--primary-orange); transform: rotate(90deg); }
@keyframes zoomIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* Responsive */
@media (max-width: 900px) {
    .nav-list { display: none; flex-direction: column; position: absolute; top: 70px; right: 20px; background: white; padding: 25px; border-radius: 15px; box-shadow: var(--shadow-hover); border: 2px solid var(--primary-orange); }
    .nav-list.active { display: flex; }
    .mobile-social-container { display: flex; }
    .gallery-heading-new, .gallery-heading-old { font-size: 28px; }
}

/* ..........janseva  */


/* =================================== */
/* === JAN SEVA SPECIFIC STYLES === */
/* =================================== */
.seva-section-container {
    width: 100%; padding: 60px 20px;
    background: linear-gradient(to bottom, #fff3e0, #ffffff);
    border-top: 6px solid; border-bottom: 6px solid;
    border-image: linear-gradient(to right, #FF6A00, #0B8A16) 1;
    box-sizing: border-box;
}
.seva-main-heading {
    text-align: center; font-size: 34px; font-weight: 900; margin-bottom: 40px;
    background: linear-gradient(to right, #FF6A00, #0B8A16);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    font-family: var(--font-heading);
}
.seva-content-wrapper {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start;
    gap: 40px; max-width: 1100px; margin: auto;
}
.seva-image-wrapper {
    flex: 1; min-width: 320px; border-radius: 18px; overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 3px solid transparent; border-image: linear-gradient(to right, #FF6A00, #0B8A16) 1;
    max-width: 450px; height: 440px;
}
.seva-image { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; }

.seva-text-content {
    flex: 1; min-width: 320px; background: #fff; border-radius: 18px;
    padding: 25px 30px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent; border-image: linear-gradient(to right, #FF6A00, #0B8A16) 1;
    box-sizing: border-box;
}
.seva-subheading { color: #FF6A00; font-size: 28px; font-weight: 800; margin-bottom: 10px; font-family: var(--font-heading); }
.seva-paragraph { font-size: 17px; color: #333; line-height: 1.7; text-align: justify; }
.seva-list { margin-top: 18px; line-height: 1.8; font-size: 16px; color: #333; padding-left: 18px; text-align: left; }

.seva-button-wrapper { margin-top: 25px; text-align: left; }
.seva-back-button {
    background: linear-gradient(to right, #FF6A00, #0B8A16);
    color: #fff; text-decoration: none; padding: 10px 25px;
    border-radius: 25px; font-weight: 600; font-size: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); transition: all 0.3s; display: inline-block;
}
.seva-back-button:hover { opacity: 0.85; transform: translateY(-2px); }

/* Gallery Section */
.seva-gallery-section {
    padding: 60px 20px; background: linear-gradient(to bottom, #fffaf2, #fff); display: flex; justify-content: center;
}
.seva-gallery-container {
    width: 95%; max-width: 1300px; background: #fff;
    border: 3px solid transparent; border-image: linear-gradient(to right, #FF6A00, #0B8A16) 1;
    border-radius: 14px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-align: center; padding: 40px;
}
.seva-gallery-heading {
    font-size: 32px; font-weight: 900;
    background: linear-gradient(to right, #0B8A16, #FF6A00);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    margin-bottom: 20px; font-family: var(--font-heading);
}
.seva-gallery-subheading { font-size: 17px; color: #222; max-width: 900px; margin: 0 auto 50px auto; }

.seva-gallery-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; }
.seva-gallery-card {
    width: 280px; height: 200px; border: 1px solid #eee;
    border-radius: 10px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden; background: #fff; transition: transform 0.3s;
    cursor: zoom-in;
}
.seva-gallery-card:hover { transform: scale(1.05); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.seva-gallery-image { width: 100%; height: 100%; object-fit: cover; }

/* Floating Whatsapp specific */
.floating-whatsapp-btn {
    position: fixed; bottom: 130px; right: 30px;
    background: #25D366; color: white; width: 60px; height: 60px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 28px; box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer; transition: all 0.3s ease; z-index: 1000; text-decoration: none;
}
.floating-whatsapp-btn:hover { transform: scale(1.15); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6); }

/* Responsive Adjustments */
@media (max-width: 900px) {
    .seva-content-wrapper { padding: 0 !important; }
}

/*....................... kisan  */

/* =================================== */
/* === KISAN (FARMER) PAGE STYLES === */
/* =================================== */

.kisan-section { 
    padding: 60px 20px; 
    background: linear-gradient(to bottom, #fff3e0, #ffffff); 
}

.kisan-main-heading { 
    text-align: center; 
    font-size: 36px; 
    font-weight: 900; 
    margin-bottom: 40px; 
    background: linear-gradient(to right, #FF6A00, #0B8A16); 
    -webkit-background-clip: text; background-clip: text; 
    -webkit-text-fill-color: transparent; 
    font-family: var(--font-heading); 
}

.kisan-description-box { 
    max-width: 1000px; 
    margin: auto; 
    text-align: center; 
    background: #fff; 
    padding: 30px; 
    border-radius: 18px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
    border: 2px solid transparent; 
    border-image: linear-gradient(to right, #FF6A00, #0B8A16) 1; 
}

.kisan-description-p { 
    font-size: 18px; 
    color: #333; 
    line-height: 1.8; 
    text-align: justify; 
    margin-bottom: 20px; 
}

.kisan-list { 
    text-align: left; 
    margin: 20px auto; 
    display: inline-block; 
    font-size: 17px; 
    line-height: 1.8; 
    color: #333; 
    padding-left: 20px; 
}
.kisan-list li { margin-bottom: 8px; }

.kisan-gallery-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 25px; 
    margin-top: 50px; 
}

.kisan-gallery-card { 
    width: 300px; 
    height: 220px; 
    border-radius: 14px; 
    overflow: hidden; 
    border: 3px solid #0B8A16; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); 
    transition: 0.3s; 
    cursor: zoom-in; 
}
.kisan-gallery-card:hover { 
    transform: scale(1.05); 
    border-color: #FF6A00; 
}

.kisan-gallery-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.back-button { 
    background: linear-gradient(to right, #FF6A00, #0B8A16); 
    color: #fff; 
    text-decoration: none; 
    padding: 12px 28px; 
    border-radius: 25px; 
    font-weight: 600; 
    font-size: 16px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
    transition: all 0.3s; 
    display: inline-block; 
    margin-top: 40px; 
}
.back-button:hover { 
    opacity: 0.9; 
    transform: translateY(-2px); 
}

/* ....................news */

/* =================================== */
/* === NEWS PAGE STYLES === */
/* =================================== */

.news-section { 
    width: 100%; 
    background: linear-gradient(to bottom, #fffaf2, #fff); 
    padding: 50px 0; 
    box-sizing: border-box; 
}

.news-main-heading { 
    text-align: center; 
    font-size: 34px; 
    font-weight: 900; 
    margin-bottom: 40px; 
    background: linear-gradient(to right, #FF6A00, #0B8A16); 
    -webkit-background-clip: text; background-clip: text; 
    -webkit-text-fill-color: transparent; 
    letter-spacing: 1px; 
    font-family: var(--font-heading); 
}

.news-grid-square,
.news-grid-rect { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 25px; 
    width: 90%; 
    max-width: 1300px; 
    margin: auto; 
}

.news-card { 
    flex: 1 1 300px; 
    max-width: 350px; 
    background: white; 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    transition: 0.4s; 
    cursor: pointer; 
}

/* Square card specific styling */
.news-card-square {
    aspect-ratio: 1 / 1; 
}

.news-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.2); 
}

.news-card img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.card-border-orange { 
    border: 4px solid #FF6A00; 
    box-shadow: 0 3px 8px rgba(255, 106, 0, 0.4); 
}
.card-border-green { 
    border: 4px solid #0B8A16; 
    box-shadow: 0 3px 8px rgba(0, 128, 0, 0.4); 
}
.no-base-shadow { 
    box-shadow: none; 
    border-radius: 10px;
}

/* .................resume .................. */


/* =================================== */
/* === RESUME (BIOGRAPHY) PAGE STYLES === */
/* =================================== */

.resume-section-container { 
    padding: 60px 20px; 
    background: linear-gradient(to bottom, #fff8ec, #ffffff); 
    border-top: 6px solid; 
    border-image: linear-gradient(to right, #FF6A00, #0B8A16) 1; 
}

.resume-header { 
    text-align: center; 
    margin-bottom: 50px; 
}

.resume-profile-pic { 
    width: 200px; 
    height: 200px; 
    border-radius: 50%; 
    border: 6px solid white; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.2); 
    object-fit: cover; 
    transition: 0.3s; 
}
.resume-profile-pic:hover { 
    transform: scale(1.05) rotate(2deg); 
    border-color: var(--primary-orange); 
}

.resume-main-name { 
    font-size: 36px; 
    font-weight: 900; 
    margin: 20px 0 10px; 
    background: linear-gradient(to right, #FF6A00, #0B8A16); 
    -webkit-background-clip: text; background-clip: text; 
    color: transparent; 
    font-family: var(--font-heading); 
}

.resume-title { 
    font-size: 18px; 
    color: #555; 
    font-weight: 700; 
    margin: 0; 
    letter-spacing: 1px; 
}

.resume-location { 
    font-size: 16px; 
    color: #777; 
    margin-top: 5px; 
}

.resume-card { 
    max-width: 900px; 
    margin: 0 auto 30px auto; 
    background: #fff; 
    border-radius: 20px; 
    padding: 35px; 
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); 
    border-left: 5px solid; 
    transition: 0.3s; 
}
.resume-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.15); 
}

/* Card Borders */
.card-orange { border-left-color: var(--primary-orange); }
.card-green { border-left-color: var(--primary-green); }

.resume-card-heading { 
    font-size: 24px; 
    font-weight: 800; 
    margin-top: 0; 
    margin-bottom: 15px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-family: var(--font-heading); 
}
.heading-orange { color: var(--primary-orange); }
.heading-green { color: var(--primary-green); }

.resume-card-body { 
    font-size: 17px; 
    color: #444; 
    line-height: 1.8; 
    text-align: justify; 
    margin: 0; 
}

.resume-card-list { 
    font-size: 17px; 
    color: #444; 
    line-height: 1.9; 
    margin: 0; 
    padding-left: 20px; 
    list-style-type: disc; 
}
.resume-card-list li { margin-bottom: 8px; }

.resume-contact-card { 
    text-align: center; 
    background: #fffaf0; 
    border: 2px solid var(--primary-orange); 
    border-left: 2px solid var(--primary-orange); 
}

/* ...........shiksha....... */

/* =================================== */
/* === SHIKSHA (EDUCATION) PAGE STYLES === */
/* =================================== */

.shiksha-section-container { 
    padding: 60px 20px; 
    background: linear-gradient(to bottom, #fff5e6, #fff); 
    border-top: 6px solid; 
    border-bottom: 6px solid; 
    border-image: linear-gradient(to right, #FF6A00, #0B8A16) 1; 
}

.shiksha-main-heading { 
    text-align: center; 
    font-size: 36px; 
    font-weight: 900; 
    background: linear-gradient(to right, #FF6A00, #0B8A16); 
    -webkit-background-clip: text; background-clip: text; 
    -webkit-text-fill-color: transparent; 
    margin-bottom: 50px; 
    margin-top: 0; 
    font-family: var(--font-heading); 
}

.shiksha-description { 
    text-align: center; 
    max-width: 850px; 
    margin: auto; 
    font-size: 18px; 
    color: #333; 
    line-height: 1.8; 
    margin-bottom: 60px; 
}

.shiksha-card-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.shiksha-card { 
    border-radius: 18px; 
    overflow: hidden; 
    background: #fff; 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); 
    border: 3px solid transparent; 
    border-image: linear-gradient(to right, #FF6A00, #0B8A16) 1; 
    transition: transform 0.3s; 
    cursor: zoom-in; 
}
.shiksha-card:hover { 
    transform: translateY(-10px); 
}

.shiksha-card-img { 
    width: 100%; 
    height: 220px; 
    object-fit: cover; 
    display: block; 
    border-bottom: 3px solid #eee; 
}

.shiksha-card-content { 
    padding: 25px; 
    text-align: center; 
}
.shiksha-card-content h3 { 
    font-size: 22px; 
    color: #0B8A16; 
    margin-top: 0; 
    margin-bottom: 12px; 
    font-family: var(--font-heading); 
}
.shiksha-card-content p { 
    color: #555; 
    margin: 0; 
    font-size: 16px; 
    line-height: 1.6; 
}

.shiksha-gallery-box { 
    max-width: 1200px; 
    margin: 80px auto 40px; 
    border: 4px solid transparent; 
    border-image: linear-gradient(to right, #FF6A00, #0B8A16) 1; 
    border-radius: 18px; 
    padding: 30px; 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); 
    background: #fff; 
}

.shiksha-gallery-heading { 
    text-align: center; 
    font-size: 28px; 
    font-weight: 800; 
    background: linear-gradient(to right, #FF6A00, #0B8A16); 
    background-clip: text; 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    margin-top: 0; 
    margin-bottom: 30px; 
    font-family: var(--font-heading); 
}

.shiksha-gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 20px; 
}

.shiksha-gallery-item { 
    overflow: hidden; 
    border-radius: 14px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
    cursor: zoom-in; 
    height: 200px; 
}

.shiksha-gallery-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: 0.4s; 
    display: block; 
}
.shiksha-gallery-item:hover .shiksha-gallery-img { 
    transform: scale(1.1); 
}

/* ..............swasthya......... */

/* =================================== */
/* === SWASTHYA (HEALTH) PAGE STYLES === */
/* =================================== */

.swasthya-section-container { 
    padding: 60px 20px; 
    background: linear-gradient(to bottom, #fff3e0, #ffffff); 
    border-top: 6px solid; 
    border-bottom: 6px solid; 
    border-image: linear-gradient(to right, #FF6A00, #0B8A16) 1; 
}

.swasthya-main-heading { 
    text-align: center; 
    font-size: 34px; 
    font-weight: 900; 
    margin-top: 0; 
    margin-bottom: 40px; 
    background: linear-gradient(to right, #FF6A00, #0B8A16); 
    -webkit-background-clip: text; background-clip: text; 
    -webkit-text-fill-color: transparent; 
    font-family: var(--font-heading); 
}

.swasthya-content-wrapper { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    align-items: center; 
    gap: 40px; 
    max-width: 1100px; 
    margin: auto; 
}

.swasthya-image-wrapper { 
    flex: 1; 
    min-width: 320px; 
    border-radius: 18px; 
    overflow: hidden; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); 
    border: 3px solid transparent; 
    border-image: linear-gradient(to right, #FF6A00, #0B8A16) 1; 
    max-width: 400px; 
    height: 400px; 
}

.swasthya-image { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
    cursor: zoom-in; 
}

.swasthya-text-content { 
    flex: 1; 
    min-width: 320px; 
    background: #fff; 
    border-radius: 18px; 
    padding: 25px 30px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
    border: 3px solid transparent; 
    border-image: linear-gradient(to right, #FF6A00, #0B8A16) 1; 
}

.swasthya-subheading { 
    color: #FF6A00; 
    font-size: 28px; 
    font-weight: 800; 
    margin-top: 0; 
    margin-bottom: 10px; 
    font-family: var(--font-heading); 
}

.swasthya-paragraph { 
    font-size: 17px; 
    color: #333; 
    line-height: 1.7; 
    text-align: justify; 
    margin: 0; 
}

.swasthya-list { 
    margin-top: 18px; 
    line-height: 1.8; 
    font-size: 16px; 
    color: #333; 
    padding-left: 20px; 
}

.swasthya-gallery-heading { 
    text-align: center; 
    font-size: 28px; 
    margin-top: 60px; 
    margin-bottom: 30px; 
    background: linear-gradient(to right, #FF6A00, #0B8A16); 
    background-clip: text; 
    -webkit-background-clip: text; 
    color: transparent; 
    font-family: var(--font-heading); 
    font-weight: 800; 
}

.swasthya-gallery-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    align-items: center; 
    gap: 25px; 
    max-width: 1100px; 
    margin: auto; 
}

.swasthya-gallery-card { 
    width: 300px; 
    height: 220px; 
    border-radius: 14px; 
    overflow: hidden; 
    border: 3px solid transparent; 
    border-image: linear-gradient(to right, #FF6A00, #0B8A16) 1; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); 
    transition: 0.3s; 
    cursor: zoom-in; 
}
.swasthya-gallery-card:hover { 
    transform: scale(1.05); 
}

.swasthya-gallery-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
}

/* Responsive Swasthya */
@media (max-width: 900px) {
    .swasthya-content-wrapper { 
        flex-direction: column; 
    }
}

/* ..................video.html............... */

/* =================================== */
/* === VIDEO GALLERY PAGE STYLES === */
/* =================================== */

.video-section-container { 
    width: 100%; 
    padding: 55px 10px; 
    background: linear-gradient(to bottom, #ffe4c2, #ffffff); 
    box-sizing: border-box; 
    border: 6px solid; 
    border-image: linear-gradient(to right, #FF6A00, #0B8A16) 1; 
    border-radius: 20px; 
    max-width: 1200px; 
    margin: 60px auto; 
}

.video-main-heading { 
    text-align: center; 
    font-size: 32px; 
    font-weight: 900; 
    background: linear-gradient(to right, #FF6A00, #0B8A16); 
    -webkit-background-clip: text; background-clip: text; 
    -webkit-text-fill-color: transparent; 
    margin-top: 0; 
    margin-bottom: 35px; 
    font-family: var(--font-heading); 
}

.video-grid-container { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 25px; 
    justify-content: center; 
}

.video-card-small { 
    flex: 1 1 180px; 
    max-width: 220px; 
    padding: 8px; 
    border-radius: 14px; 
    border: 3px solid #FF6A00; 
    box-shadow: 0 0 8px rgba(255, 106, 0, 0.25); 
    background: rgba(255, 255, 255, 0.18); 
    backdrop-filter: blur(6px); 
    text-align: center; 
}

.video-wrapper-small { 
    position: relative; 
    width: 100%; 
    padding-top: 177%; /* Aspect Ratio for mobile vertical videos */
    overflow: hidden; 
    border-radius: 10px; 
}

.video-element-small { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 10px; 
}

/* Section 2 (Horizontal/Large Videos) */
.video-section-2 { 
    padding: 60px 20px; 
    background: linear-gradient(to bottom, #fff3e0, #ffffff); 
}

.video-section-2-heading { 
    text-align: center; 
    font-size: 34px; 
    font-weight: 900; 
    margin-bottom: 50px; 
    background: linear-gradient(to right, #FF6A00, #0B8A16); 
    -webkit-background-clip: text; background-clip: text; 
    -webkit-text-fill-color: transparent; 
    letter-spacing: 1px; 
    font-family: var(--font-heading); 
}

.video-grid-container-large { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 25px; 
    width: 100%; 
    max-width: 1250px; 
    margin: auto; 
}

.video-card-large { 
    width: 300px; 
    height: 190px; 
    border: 3px solid transparent; 
    border-image: linear-gradient(to right, #FF6A00, #0B8A16) 1; 
    border-radius: 14px; 
    overflow: hidden; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); 
}

.video-element-large { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 14px; 
    display: block; 
}