/* HERO SLIDER */
.hero-slider {
    width: 100%;
    height: 100vh;
    position: relative;
}

/* SLIDE */
.swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* DARK + GRADIENT OVERLAY */
.swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(139,0,0,0.85),
        rgba(194,24,91,0.7),
        rgba(0,0,0,0.6)
    );
    z-index: 1;
}

/* CONTENT */
.slider-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff8e7;
    max-width: 800px;
    padding: 20px;
    animation: fadeUp 1s ease forwards;
}

/* BADGE */
.badge {
    display: inline-block;
    background: linear-gradient(45deg,#D4AF37,#FFD700);
    color: #000;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
    font-weight: 500;
}

/* HEADING */
.slider-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* TEXT */
.slider-content p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #f5e6d3;
}

/* BUTTON GROUP */
.btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* MAIN BUTTON */
.btn-main {
    background: linear-gradient(45deg,#D4AF37,#FFD700);
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212,175,55,0.5);
}

/* OUTLINE BUTTON */
.btn-outline {
    border: 2px solid #fff8e7;
    color: #fff8e7;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff8e7;
    color: #8B0000;
}

/* NAVIGATION BUTTONS */
.swiper-button-next,
.swiper-button-prev {
    color: #D4AF37;
    transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.2);
}

/* PAGINATION */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: #FFD700;
    opacity: 1;
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 992px) {
    .slider-content h1 {
        font-size: 36px;
    }
}

/* MOBILE */
@media (max-width: 600px) {

    .hero-slider {
        height: 85vh;
    }

    .slider-content h1 {
        font-size: 26px;
    }

    .slider-content p {
        font-size: 14px;
    }

    .btn-main,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .btn-group {
        flex-direction: column;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}


/* LAKSHMI THEME COLORS */
:

/* SECTION */
.about-section {
    background: linear-gradient(135deg, #1a0f0f, #2a1414);
    padding: 80px 0;
    color: var(--body-gray);
    overflow: hidden;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* IMAGE */
.about-image {
    flex: 1;
    min-width: 320px;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--gold-matte); /* FIXED */
    filter: contrast(110%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* EXPERIENCE BADGE */
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #000;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(212,175,55,0.4);
    z-index: 2;
}

.experience-badge h2 {
    font-size: 32px;
    margin: 0;
    font-weight: 800;
}

.experience-badge p {
    font-size: 12px;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
}

/* CONTENT */
.about-content {
    flex: 1.2;
    min-width: 320px;
}

.highlight-gold {
    color: var(--gold-matte);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

/* HEADING */
.about-content h1 {
    font-family: 'Marcellus', serif;
    color: var(--gold-bright);
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 1.3;
}

/* TEXT */
.about-content p {
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

/* FEATURES */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    background: var(--card-dark);
    padding: 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(212,175,55,0.2);
    transition: 0.3s ease;
}

/* HOVER EFFECT */
.feature-item:hover {
    border-color: var(--gold-matte);
    transform: translateY(-6px);
    background: linear-gradient(135deg,#8B0000,#C2185B);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.feature-item i {
    color: var(--gold-matte);
    font-size: 20px;
}

.feature-item span {
    font-weight: 500;
    color: var(--pure-white);
}

/* BUTTON */
.btn-about {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: var(--gold-matte);
    border: 2px solid var(--gold-matte);
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.4s;
}

/* BUTTON HOVER */
.btn-about:hover {
    background: linear-gradient(45deg,#D4AF37,#FFD700);
    color: #000;
    box-shadow: 0 0 25px rgba(212,175,55,0.5);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-flex {
        flex-direction: column;
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-content p {
        text-align: center;
    }

    .feature-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-content h1 {
        font-size: 28px;
    }

    .experience-badge {
        right: 0;
        bottom: -10px;
        padding: 15px;
    }
}



/* SECTION BASE */
.impact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--soft-cream), #ffe4e1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* DECORATIVE ELEMENTS (Optional) */
.impact-section::before {
    content: " धनसंपदा ";
    position: absolute;
    top: 10%;
    left: -5%;
    font-size: 15rem;
    color: rgba(139, 0, 0, 0.03);
    font-weight: 900;
    z-index: 0;
    pointer-events: none;
}

/* HEADER */
.section-header {
    max-width: 750px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.section-header .tag {
    display: inline-block;
    color: var(--gold-shiny);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--primary-red);
    margin-bottom: 20px;
    font-family: 'Marcellus', serif;
}

.section-header p {
    color: #5a2a2a;
    font-size: 16px;
    line-height: 1.6;
}

/* GRID LAYOUT */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 16px auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ENHANCED IMPACT CARD */
.impact-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2); /* Light gold border */
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* THE "GOLDEN SHINE" SWIPE EFFECT */
.impact-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 215, 0, 0.2),
        transparent
    );
    transition: 0.8s;
}

.impact-card:hover::after {
    left: 150%;
}

/* HOVER BACKGROUND - Transitions to Royal Green (From Image) */
.impact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--royal-green), var(--primary-red));
    opacity: 0;
    transition: 0.5s ease;
    z-index: 0;
}

.impact-card:hover::before {
    opacity: 1;
}

/* ICON STYLES */
.impact-card .icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: inline-block;
    color: var(--primary-red); /* Initial color */
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

/* TITLE & TEXT */
.impact-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: var(--primary-red);
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.impact-card p {
    font-size: 15px;
    color: #666;
    position: relative;
    z-index: 1;
    line-height: 1.6;
    transition: 0.3s;
}

/* HOVER INTERACTIONS */
.impact-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(20, 69, 43, 0.3); /* Greenish shadow */
}

.impact-card:hover h3,
.impact-card:hover p,
.impact-card:hover .icon {
    color: var(--white); /* White text on dark hover */
}

.impact-card:hover .icon {
    transform: scale(1.3) rotate(10deg);
    color: var(--gold-light); /* Golden icon on hover */
}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px){
    .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media(max-width:768px){
    .impact-section { padding: 60px 0; }
    .section-header h2 { font-size: 32px; }
    .impact-card { padding: 30px 20px; }
}

@media(max-width:500px){
    .impact-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 26px; }
    .impact-card:hover { transform: translateY(-8px); }
}


.course-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h1 {
    font-family: 'Marcellus', serif;
    color: var(--primary-green);
    font-size: 38px;
    margin-top: 10px;
}

.highlight-gold {
    color: var(--gold-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* COURSE GRID: 3 Column for Desktop (2 Rows) */
.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD STYLING */
.course-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.course-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(20, 69, 43, 0.2);
}

/* IMAGE & OVERLAY */
.course-img-wrapper {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.course-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.course-card:hover .course-img-wrapper img {
    transform: scale(1.1);
}

.course-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 69, 43, 0.85); /* Greenish Overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.course-card:hover .course-overlay {
    opacity: 1;
}

.apply-btn-inner {
    background: var(--gold-accent);
    color: var(--primary-green);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.course-card:hover .apply-btn-inner {
    transform: translateY(0);
}

/* CONTENT DETAILS */
.course-details {
    padding: 25px;
}

.course-details h3 {
    color: var(--primary-green);
    font-size: 22px;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.course-details p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 60px;
}

/* BOTTOM APPLY BUTTON */
.main-apply-btn {
    display: block;
    text-align: center;
    background: var(--primary-green);
    color: var(--white);
    padding: 12px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid var(--primary-green);
}

.main-apply-btn:hover {
    background: transparent;
    color: var(--primary-green);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .course-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet: 2 Columns */
    }
}

@media (max-width: 650px) {
    .course-grid {
        grid-template-columns: 1fr; /* Mobile: 1 Column */
    }
    .section-header h1 {
        font-size: 28px;
    }
    .course-img-wrapper {
        height: 200px;
    }
}


.gallery-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Marcellus', serif;
    color: var(--primary-green);
    font-size: 36px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

/* हेडर के नीचे गोल्डन लाइन */
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

/* GALLERY GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* GALLERY ITEM */
.gallery-item {
    position: relative;
    display: block;
    height: 250px; /* फिक्स्ड हाइट सिमेट्री के लिए */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    background: #000; /* इमेज लोड होने से पहले बैकग्राउंड काला रहेगा */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

/* OVERLAY EFFECT */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 69, 43, 0.7); /* बोर्ड वाला हरा रंग (Transparent) */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    transform: scale(0.9);
}

.gallery-overlay i {
    color: var(--accent-gold);
    font-size: 40px;
    transform: rotate(-90deg);
    transition: var(--transition);
}

/* HOVER INTERACTIONS */
.gallery-item:hover img {
    transform: scale(1.15);
    filter: blur(2px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: scale(1);
}

.gallery-item:hover .gallery-overlay i {
    transform: rotate(0deg);
}

/* GLIGHTBOX CUSTOMIZATION (Optional) */
.goverlay {
    background: rgba(10, 14, 12, 0.95) !important; /* डार्क बैकग्राउंड */
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .section-header h2 { font-size: 30px; }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* मोबाइल पर सिंगल कॉलम */
    }
    .gallery-item {
        height: 220px;
    }
    .section-header h2 { font-size: 26px; }
}



.gallery-item {
    position: relative;
    display: block; /* सुनिश्चित करें कि एंकर टैग पूरा ब्लॉक ले */
    overflow: hidden;
    cursor: pointer;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 69, 43, 0.7); /* Deep Green Overlay */
    opacity: 0;
    transition: 0.4s ease;
    
    /* सबसे जरूरी: यह लाइन सुनिश्चित करती है कि क्लिक सीधे <a> टैग पर जाए */
    pointer-events: none; 
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #FFD700; /* Gold Color */
    font-size: 40px;
}

/* अगर आप चाहते हैं कि आइकन पर क्लिक करने से भी खुले, 
तो एंकर टैग को z-index देना जरूरी है */
.glightbox {
    z-index: 10;
}



.events-section {
    padding: 80px 0;
    background-color: var(--soft-cream);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* SECTION TITLE */
.events-title {
    text-align: center;
    font-family: 'Marcellus', serif;
    font-size: 38px;
    color: var(--primary-green);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.events-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-accent);
}

/* EVENTS GRID */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* डेस्कटॉप पर 3 कॉलम */
    gap: 30px;
}

/* EVENT CARD */
.event-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: var(--transition);
    border: 1px solid rgba(226, 176, 74, 0.1);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(20, 69, 43, 0.15);
}

/* IMAGE CONTAINER */
.event-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card:hover .event-img img {
    transform: scale(1.1);
}

/* CONTENT BOX */
.event-content {
    padding: 25px;
}

.event-content h3 {
    font-size: 22px;
    color: var(--primary-green);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.event-content p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 20px;
    height: 70px; /* डिस्क्रिप्शन की ऊंचाई एक जैसी रखने के लिए */
    overflow: hidden;
}

/* ADDRESS FIELD */
.event-address {
    font-size: 13px;
    font-weight: 600;
    color: var(--deep-red);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* READ MORE BUTTON */
.read-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: 1px solid var(--primary-green);
}

.read-btn:hover {
    background-color: transparent;
    color: var(--primary-green);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr); /* टैबलेट पर 2 कॉलम */
    }
}

@media (max-width: 650px) {
    .events-grid {
        grid-template-columns: 1fr; /* मोबाइल पर 1 कॉलम */
    }

    .events-title {
        font-size: 28px;
    }

    .event-img {
        height: 200px;
    }

    .event-card {
        margin-bottom: 10px;
    }
}



/* HERO SECTION */
.hero-lakshmi {
    position: relative;
    height: 100vh;
    background: url('Admin/images/lakshmi-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* OVERLAY */
.divine-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(139,0,0,0.85),
        rgba(194,24,91,0.7),
        rgba(0,0,0,0.6)
    );
    z-index: 1;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    color: #fff8e7;
}

/* SUB TITLE */
.sub-title {
    font-size: 16px;
    letter-spacing: 3px;
    color: #D4AF37;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* MAIN TITLE */
.main-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

/* GLOW EFFECT */
.glow-text {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255,215,0,0.7),
                 0 0 20px rgba(255,215,0,0.5),
                 0 0 30px rgba(255,215,0,0.3);
}

/* DESCRIPTION BOX */
.description-box {
    background: rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    backdrop-filter: blur(8px);
}

.description-box p {
    font-size: 15px;
    line-height: 1.7;
}

/* BUTTON GROUP */
.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* OUTLINE BUTTON */
.btn-outline-gold {
    padding: 12px 25px;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.4s;
}

.btn-outline-gold:hover {
    background: #D4AF37;
    color: #000;
    box-shadow: 0 0 20px rgba(212,175,55,0.6);
}

/* SOLID BUTTON */
.btn-solid-gold {
    padding: 12px 25px;
    background: linear-gradient(45deg,#D4AF37,#FFD700);
    color: #000;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.4s;
}

.btn-solid-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.6);
}

/* HEART ICON ANIMATION */
.beat-icon {
    margin-left: 5px;
    animation: beat 1s infinite;
}

@keyframes beat {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media(max-width:992px){
    .main-title {
        font-size: 36px;
    }
}

/* MOBILE */
@media(max-width:600px){

    .hero-lakshmi {
        height: 85vh;
        padding: 20px;
    }

    .main-title {
        font-size: 26px;
    }

    .sub-title {
        font-size: 13px;
    }

    .description-box p {
        font-size: 14px;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn-outline-gold,
    .btn-solid-gold {
        width: 100%;
        text-align: center;
    }
}

.president-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.president-flex {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* LEFT SIDE: PROFILE */
.profile-card {
    flex: 1;
    min-width: 320px;
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(20, 69, 43, 0.1);
    border-top: 6px solid var(--accent-gold);
    text-align: center;
}

.image-wrapper {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.profile-card:hover img {
    transform: scale(1.05);
}

.profile-info h2 {
    color: var(--primary-green);
    font-size: 24px;
    margin-bottom: 5px;
    font-family: 'Marcellus', serif;
}

.designation {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* RIGHT SIDE: MESSAGE */
.content-side {
    flex: 2;
}

.message-header {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.president-message {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border-left: 5px solid var(--primary-green);
    margin-bottom: 40px;
}

.scroll-desc {
    max-height: 400px; /* बड़ी डिस्क्रिप्शन के लिए स्क्रॉल */
    overflow-y: auto;
    padding-right: 15px;
}

/* Custom Scrollbar */
.scroll-desc::-webkit-scrollbar { width: 5px; }
.scroll-desc::-webkit-scrollbar-thumb { background: var(--accent-gold); border-radius: 10px; }

.scroll-desc p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 15px;
    text-align: justify;
}

.signature {
    margin-top: 20px;
    font-weight: 700;
    color: var(--primary-green);
    text-align: right;
    font-style: italic;
}

/* ROLES GRID */
.res-title {
    color: var(--primary-green);
    margin-bottom: 25px;
    font-size: 22px;
    border-bottom: 2px solid var(--accent-gold);
    display: inline-block;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.role-card {
    display: flex;
    gap: 15px;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
    border: 1px solid rgba(226, 176, 74, 0.2);
}

.role-card:hover {
    transform: translateY(-5px);
    background: var(--primary-green);
    color: var(--white);
}

.role-num {
    font-size: 24px;
    font-weight: 900;
    color: var(--accent-gold);
    opacity: 0.5;
}

.role-card:hover .role-num { color: var(--white); opacity: 1; }

.role-info strong {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
}

.role-info p {
    font-size: 13px;
    opacity: 0.8;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .president-flex { flex-direction: column; align-items: center; }
    .content-side { width: 100%; }
    .roles-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .main-title { font-size: 28px; }
    .president-message { padding: 20px; }
}