        * {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #fcfbf8;;
            overflow-x: hidden;
        }

        a { text-decoration: none; }

        /* =========================================
           1. PRELOADER CSS
           ========================================= */


        /* =========================================
           2. TOPBAR CSS
           ========================================= */
        .topbar {
            position: absolute;
            top: 0;
            width: 100%;
            height: 40px;
            background: #009b50; /* Secondary Color */
            color: #fff;
            z-index: 1001;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1px;
            padding: 0 40px;
            border-bottom: 2px solid #fcbe15; /* Primary Color Accent Line */
        }

        .topbar-left { display: flex; align-items: center; gap: 25px; }
        .topbar-left span { display: flex; align-items: center; }
        .topbar-left i { color: #fcbe15; margin-right: 8px; font-size: 14px; }

        .topbar-right { display: flex; align-items: center; gap: 12px; }
        .topbar-right a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            background: #fff;
            border-radius: 50%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .topbar-right a:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .topbar-right a i { font-size: 13px; }
        .topbar-right a .bi-facebook { color: #1877F2; }
        .topbar-right a .bi-instagram { color: #E1306C; }
        .topbar-right a .bi-whatsapp { color: #25D366; }
        .topbar-right a .bi-youtube { color: #FF0000; }

        /* =========================================
           3. NAVBAR CSS
           ========================================= */
        .main-navbar {
            position: fixed;
            top: 40px;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.97);
            box-shadow: 0 1px 8px rgba(0,0,0,0.08);
            padding: 10px 0;
            transition: all 0.3s ease;
        }

        .navbar-brand-logo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .navbar-brand-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .navbar-brand-logo::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 50%;
            border: 1.5px solid #fcbe15;
        }

        .nav-left .nav-link,
        .nav-right .nav-link {
            font-size: 11.5px;
            font-weight: 600;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #1a2a4a !important;
            padding: 8px 12px !important;
            transition: color 0.2s;
        }

        .nav-left .nav-link:hover,
        .nav-right .nav-link:hover { color: #009b50 !important; }

        .nav-left .dropdown-menu,
        .nav-right .dropdown-menu {
            border: none;
            border-radius: 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 10px 0;
            min-width: 200px;
            border-top: 3px solid #fcbe15;
        }

        .dropdown-item {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #1a2a4a;
            padding: 8px 20px;
            position: relative;
            transition: all 0.3s ease;
            background: transparent;
        }

        .dropdown-item::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 0px;
            height: 2px;
            background-color: #fcbe15;
            transition: all 0.3s ease;
            opacity: 0;
        }

        .dropdown-item:hover { color: #009b50; padding-left: 35px; background: #f4faf6; }
        .dropdown-item:hover::before { width: 10px; opacity: 1; }

        /* Mobile Hamburger */
        .mobile-toggler { border: none; background: none; padding: 5px; }
        .mobile-toggler .bar {
            display: block; width: 24px; height: 2px;
            background: #009b50; margin: 5px 0; transition: all 0.3s;
        }
        .mobile-toggler:hover .bar { background: #fcbe15; }

        /* Mobile Offcanvas Menu */
        .offcanvas-menu { width: 100% !important; }
        .offcanvas-menu .offcanvas-header {
            padding: 20px; border-bottom: 2px solid #fcbe15; background-color: #fcfdfd;
        }

        .mobile-nav-link {
            font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
            text-transform: uppercase; color: #1a2a4a; padding: 14px 20px;
            border-bottom: 1px solid #f0f0f0; display: flex;
            justify-content: space-between; align-items: center;
            cursor: pointer; transition: all 0.2s ease;
        }
        .mobile-nav-link:hover { color: #009b50; background-color: #f4faf6; }
        .mobile-sub-links { display: none; background: #fdfbf7; }
        .mobile-sub-links.show { display: block; }

        .mobile-sub-link {
            display: block; font-size: 11px; font-weight: 600;
            letter-spacing: 1.2px; text-transform: uppercase;
            color: #009b50; padding: 10px 20px 10px 35px;
            border-bottom: 1px solid #f9f2e2; transition: all 0.2s ease;
        }
        .mobile-sub-link:hover { color: #1a2a4a; background-color: #fdf3d3; }
        .mobile-nav-link .chevron { transition: transform 0.3s; font-size: 12px; color: #888; }
        .mobile-nav-link.open .chevron { transform: rotate(180deg); color: #009b50; }

        /* =========================================
           4. RESPONSIVE QUERIES (NAVBAR)
           ========================================= */
        @media (max-width: 991.98px) {
            .topbar { display: none !important; }
            .main-navbar { top: 0 !important; }
            .desktop-nav { display: none !important; }
            .mobile-menu-btn { display: flex !important; align-items: center; justify-content: space-between; }
        }

        @media (min-width: 992px) {
            .mobile-menu-btn { display: none !important; }
            .desktop-nav { display: flex !important; }
            .desktop-nav .dropdown:hover > .dropdown-menu { display: block; margin-top: 0; }
        }

        /* =========================================
           5. BANNER CSS
           ========================================= */
        .rs-banner-seven {
            overflow-x: clip;
            position: relative;
        }
        .rs-banner-seven .rs-banner-item-wrapper {
            position: relative;
            z-index: 1;
        }
        .rs-banner-seven .rs-banner-bg-thumb {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            background-size: cover;
            background-position: center;
            transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
        }
        /* Black gradient overlay for text readability */
        .rs-banner-seven .rs-banner-bg-thumb::before {
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 35%, rgba(0, 0, 0, 0) 65%);
            z-index: -1;
        }
        .rs-banner-seven .rs-banner-wrapper {
            padding-top: 140px; 
            padding-bottom: 170px; 
            padding-inline: 150px;
            position: relative;
            z-index: 2;
        }
        .rs-banner-seven .rs-banner-subtitle {
            font-size: 18px;
            font-weight: 400;
            color: #ffffff;
            display: inline-block;
            font-style: italic;
        }
        .rs-banner-seven .rs-banner-title {
            color: #ffffff;
            text-transform: capitalize;
            margin-top: 20px;
            margin-bottom: 40px;
        }
        .rs-banner-seven .rs-banner-title .banner-title-primary {
            font-size: 75px;
            line-height: 1;
            margin-bottom: 15px;
            display: inline-block;
            font-weight: 700;
        }
        .rs-banner-seven .rs-banner-title .banner-title-secondary {
            font-size: 40px; 
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 20px;
            line-height: 1.2;
            flex-wrap: wrap;
        }
        .rs-banner-seven .rs-banner-title .banner-title-secondary i {
            color: #fcbe15; 
            font-size: 50px;
        }
        
        /* Swiper Navigation */
        .rs-banner-navigation { 
            position: absolute; 
            top: 50%; 
            width: 100%; 
            z-index: 10; 
            display: flex; 
            justify-content: space-between; 
            transform: translateY(-50%); 
            pointer-events: none;
        }
        .rs-banner-navigation button { 
            pointer-events: auto; 
            width: 60px; 
            height: 60px; 
            border-radius: 50%; 
            border: 2px solid rgba(255, 255, 255, 0.4); 
            background: rgba(255, 255, 255, 0.1); 
            backdrop-filter: blur(8px); 
            -webkit-backdrop-filter: blur(8px);
            color: #ffffff; 
            font-size: 22px; 
            display: flex; 
            justify-content: center; 
            align-items: center; 
            transition: all 0.4s ease; 
            margin: 0 40px; 
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }
        .rs-banner-navigation button:hover { 
            background: #fcbe15; 
            border-color: #fcbe15;
            color: #ffffff;
            transform: scale(1.1); 
            box-shadow: 0 10px 25px rgba(252, 190, 21, 0.6); 
        }
        
        .swiper-slide-active .rs-banner-bg-thumb { transform: scale(1.1); }
        .swiper-slide-active .rs-banner-subtitle, .swiper-slide-active .rs-banner-title, .swiper-slide-active .rs-banner-btn {
            animation: fadeInUp 1s ease both;
        }
        .swiper-slide-active .rs-banner-title { animation-delay: 0.3s; }
        .swiper-slide-active .rs-banner-btn { animation-delay: 0.6s; }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Banner Buttons */
        .rs-btn {
            display: inline-flex;
            align-items: center;
            background: #fcbe15; 
            color: #ffffff;
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 600;
            transition: 0.3s;
        }
        .rs-btn:hover { background: #009b50; color: #ffffff; } 
        .rs-btn .icon-box { margin-left: 12px; font-size: 16px; }

        @media only screen and (max-width: 1199px) {
            .rs-banner-seven .rs-banner-title .banner-title-primary { font-size: 55px; }
            .rs-banner-seven .rs-banner-title .banner-title-secondary { font-size: 30px; }
            .rs-banner-seven .rs-banner-title .banner-title-secondary i { font-size: 40px; }
            .rs-banner-seven .rs-banner-wrapper { padding-top: 100px; padding-bottom: 130px; padding-inline: 50px;}
        }
        @media only screen and (max-width: 991px) {
            .rs-banner-seven .rs-banner-title .banner-title-primary { font-size: 40px; }
            .rs-banner-seven .rs-banner-title .banner-title-secondary { font-size: 24px; gap: 10px; }
            .rs-banner-seven .rs-banner-title .banner-title-secondary i { font-size: 30px; }
        }
        @media only screen and (max-width: 767px) {
            .rs-banner-seven .rs-banner-wrapper { padding-inline: 20px; padding-top: 120px; padding-bottom: 90px; }
            .rs-banner-seven .rs-banner-title .banner-title-primary { font-size: 30px; }
            .rs-banner-seven .rs-banner-title .banner-title-secondary { font-size: 18px; gap: 8px;}
            .rs-banner-seven .rs-banner-title .banner-title-secondary i { font-size: 24px; }
            .rs-banner-navigation { display: none; }
        }

        html { scroll-behavior: smooth; }
        .fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
        .fade-up.visible { opacity: 1; transform: translateY(0); }
    
	
       /* =========================================
   6. COURSES SECTION CSS
========================================= */
.courses-section {
    background-color: #fcfbf8; 
    padding-top: 80px;
    padding-bottom: 80px;
}

.courses-section .subtitle {
    color: #009b50; 
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.courses-section .subtitle i { 
    color: #fcbe15; 
    font-size: 20px; 
}

.courses-section .main-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 50px;
}

.courses-section .main-heading span { 
    color: #fcbe15; 
}

.courses-section .category-card {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    z-index: 1;
    height: 100%;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.03);
}

.courses-section .diagonal-line {
    position: absolute;
    top: 0; left: -30%;
    width: 70%; height: 100%;
    background-color: #fcbe15; 
    opacity: 0.1; 
    transform: skewX(-25deg);
    transform-origin: top left;
    z-index: -1;
    transition: all 0.5s ease;
}

/* Card content ko center karne ke liye classes */
.courses-section .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.courses-section .card-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    background-color: #fcbe15; 
    color: #ffffff;
    display: flex; justify-content: center; align-items: center;
    font-size: 30px; margin-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(252, 190, 21, 0.3);
}

.courses-section .card-content h3 {
    font-size: 22px; font-weight: 700; color: #333; margin-bottom: 10px; transition: color 0.3s ease;
}

.courses-section .card-content p {
    font-size: 15px; color: #666; margin-bottom: 0; font-weight: 500;
}

.courses-section .category-card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0, 155, 80, 0.15); 
    border-color: rgba(0, 155, 80, 0.2);
}

.courses-section .category-card:hover .diagonal-line {
    background-color: #009b50; width: 150%; opacity: 0.05;
}

.courses-section .category-card:hover .card-icon {
    background-color: #009b50; transform: scale(1.1) rotate(5deg); box-shadow: 0 8px 20px rgba(0, 155, 80, 0.4);
}

.courses-section .category-card:hover .card-content h3 { 
    color: #009b50; 
}

@media (max-width: 768px) {
    .courses-section .main-heading { font-size: 2rem; }
    .courses-section .category-card { padding: 30px 20px; }
}

	
	   /* =========================================
   7. ABOUT US SECTION CSS
   ========================================= */
.about-section {
    background-color: #ffffff;
    overflow: hidden;
}

/* Glassmorphism Mission/Vision Cards */
.mv-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 155, 80, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 155, 80, 0.08);
    border-color: rgba(252, 190, 21, 0.4);
}

.mv-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f4faf6;
    color: #009b50;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid rgba(0, 155, 80, 0.2);
    transition: all 0.3s ease;
}

.mv-card:hover .mv-icon {
    background: #009b50;
    color: #ffffff;
    transform: scale(1.1);
}

/* 3D Image Zoom Effect */
.about-image-wrapper {
    perspective: 1200px; /* Required for 3D depth */
    padding: 30px;
}



.image-3d-container {
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    border: 6px solid #ffffff;
    transition: box-shadow 0.8s ease;
}

/* The Hover Trigger 
.about-image-wrapper:hover .image-3d-container {
    transform: scale(1.03) rotateY(-8deg) rotateX(4deg);
}

.about-image-wrapper:hover .about-img {
    box-shadow: -20px 25px 45px rgba(0, 0, 0, 0.15) !important;
}

*/

/* Floating Badge */
.experience-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid #fcbe15;
    animation: float 4s ease-in-out infinite;
}

/* Play Button Overlay */
.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(252, 190, 21, 0.9);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 2;
    box-shadow: 0 0 0 10px rgba(252, 190, 21, 0.2);
    transition: all 0.4s ease;
}

.play-btn-overlay:hover {
    background: #009b50;
    box-shadow: 0 0 0 15px rgba(0, 155, 80, 0.3);
    color: #ffffff;
    transform: translate(-50%, -50%) scale(1.1);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 991.98px) {
    .about-image-wrapper { padding: 15px; margin-top: 20px; }
    .experience-badge { bottom: 0; left: 0; padding: 10px 15px; }
}
	
/* =========================================
   8. OUR IMPACT / STATS COUNTER CSS
   ========================================= */
.impact-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Smooth Parallax Effect */
    padding: 100px 0;
}

.impact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark Blue Overlay matching your theme */
    background: rgba(26, 42, 74, 0.85); 
    z-index: 0;
}

/* Glassmorphism Effect for Cards */
.counter-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
    cursor: default;
}

.counter-card:hover {
    transform: translateY(-10px);
    border-color: #fcbe15;
    background: rgba(255, 255, 255, 0.1);
}

.counter-icon {
    font-size: 40px;
    color: #fcbe15;
    transition: transform 0.3s ease;
}

.counter-card:hover .counter-icon {
    transform: scale(1.1);
}

.counter-card h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
}

.counter-title {
    font-size: 15px;
    font-weight: 600;
    color: #e0e0e0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 5px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .impact-section { padding: 60px 0; background-attachment: scroll; /* Disable parallax on mobile for better performance */ }
    .counter-card h3 { font-size: 2.8rem; }
}	
	
/* =========================================
   9. DIRECTOR'S MESSAGE CSS
   ========================================= */
.director-message-section .img-backdrop {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
  /*  background-color: #009b50; */
    border-radius: 12px;
    z-index: 0;
    opacity: 0.15;
    transition: all 0.4s ease;
}

.director-message-section .director-img-wrapper:hover .img-backdrop {
    top: 25px;
    left: -25px;
   /* background-color: #fcbe15; */
    opacity: 0.3;
}

.director-message-section img {
    border: 6px solid #ffffff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.director-message-section .director-img-wrapper:hover img {
   
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.quote-icon-bg {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 140px;
    color: rgba(252, 190, 21, 0.1);
    z-index: -1;
}

.director-quote {
    font-size: 17px;
    font-weight: 600;
    color: #1a2a4a;
    font-style: italic;
    line-height: 1.7;
    border-left: 5px solid #fcbe15;
    background: linear-gradient(to right, rgba(252, 190, 21, 0.08), transparent);
    padding: 20px 25px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 25px;
    position: relative;
}

.director-quote::before {
    content: '\f10d'; /* FontAwesome quote-left icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 15px;
    left: -15px;
    width: 30px;
    height: 30px;
    background: #fcbe15;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    box-shadow: 0 4px 10px rgba(252, 190, 21, 0.3);
}

@media (max-width: 991.98px) {
    .quote-icon-bg { font-size: 90px; right: 0; top: 0; }
    .director-message-section .img-backdrop { top: 15px; left: -10px; }
}

	/* =========================================
   10. LATEST NEWS & EVENTS CSS
   ========================================= */
.events-section {
    background-color: #fcfbf8;
}

.news-event-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.card-img-box {
    cursor: pointer;
    background: #000; /* For black padding background when zoom effect occurs */
}

/* Zoom In / Zoom Out Image Animations */
.event-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}

.news-event-card:hover .event-thumb {
    transform: scale(1.12);
    opacity: 0.85;
}

/* Date Badge on Right Side Top Corner */
.event-date-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #fcbe15;
    color: #1a2a4a;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Content Text Styling inside Cards */
.event-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a2a4a;
    transition: color 0.3s ease;
    /* Limit title to 1 line for unified symmetry */
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-event-card:hover .event-card-title {
    color: #009b50;
}

.event-card-subtitle {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.event-card-text {
    font-size: 13px;
    line-height: 1.6;
    /* Clean grid display logic: trims description text safely to 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read More Custom Dynamic Button Layer */
.read-more-btn {
    font-size: 12px;
    font-weight: 700;
    color: #009b50;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.read-more-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* Dynamic Hover Action Scaling */
.news-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 155, 80, 0.1) !important;
    border-color: rgba(0, 155, 80, 0.15);
}

.news-event-card:hover .read-more-btn {
    color: #fcbe15;
}

.news-event-card:hover .read-more-btn i {
    transform: translateX(5px);
}

/* Customizing Modal Backdrop for Premium feel */
#imageFullscreenModal {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background-color: rgba(0,0,0,0.7);
}

/* =========================================
   RESPONSIVE DESIGN BREAKPOINTS (2x2 FOR MOBILE)
   ========================================= */
@media (max-width: 575.98px) {
    /* Tightens paddings for standard mobile view to scale the elements cleanly */
    .event-thumb {
        height: 120px;
    }
    .card-body-content {
        padding: 10px !important;
    }
    .event-card-title {
        font-size: 14px;
    }
    .event-card-text {
        font-size: 12px;
        -webkit-line-clamp: 2; /* 2 lines for ultra compact layout symmetry on small devices */
    }
    .event-date-badge {
        font-size: 9px;
        padding: 3px 8px;
        top: 8px;
        right: 8px;
    }
}
	
/* =========================================
   11. SUCCESS GALLERY CSS (FULL WIDTH & FLUSH)
   ========================================= */
/* Custom JS Slider System */
.custom-slider-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.custom-slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    touch-action: pan-y;
}

/* Desktop: 4 items ek sath */
.custom-slider-item {
    flex: 0 0 25%;
    padding: 0; /* Padding 0 karne se cards ek dusre me sat jayenge */
}

.testi-card {
    height: 250px;
    border: 1px solid #fcbe15; /* Thinner border for seamless look */
    cursor: pointer;
    background-color: #ffffff;
    border-radius: 0; /* Square edges so they fit together perfectly */
}

.testi-full-img {
    object-position: center;
}

/* Mobile: 2 items ek sath */
@media (max-width: 768px) {
    .custom-slider-item {
        flex: 0 0 50%;
        padding: 0;
    }
    .testi-card {
        height: 180px;
    }
}	



/* =========================================
   12. FOOTER SECTION CSS
   ========================================= */
.main-footer {
    background-color: #0c0d19; /* Brand Dark Blue */
    position: relative;
    overflow: hidden;
}

/* Optional: Subtle top border for visual separation */
.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #009b50, #fcbe15);
}

.footer-widget-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

/* Small underline below widget titles */
.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #fcbe15;
    border-radius: 2px;
}

/* Institution Links Styling */
.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #a0aec0;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links-list a i {
    font-size: 11px;
    color: #009b50;
    transition: transform 0.3s ease;
}

.footer-links-list a:hover {
    color: #fcbe15;
    padding-left: 5px; /* Slight right shift on hover */
}

.footer-links-list a:hover i {
    transform: translateX(3px);
    color: #fcbe15;
}

/* Social Media Icons */
.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-links a:hover {
    background-color: #fcbe15;
    color: #1a2a4a;
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(252, 190, 21, 0.3);
    border-color: #fcbe15;
}

/* Bottom Bar Links */
.footer-bottom-links a {
    color: #a0aec0;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Map hover effect */
.footer-map-container {
    transition: border-color 0.4s ease;
}

.footer-map-container:hover {
    border-color: #009b50 !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .pr-lg-4 { padding-right: calc(var(--bs-gutter-x) * .5) !important; }
}


#progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 3px rgba(0, 155, 80, 0.15); /* Light Green inner ring */
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    background-color: #ffffff; /* White background */
}

/* Jab page scroll hoga tab ye class add hogi */
#progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Icon Styling inside the circle */
#progress-wrap .scroll-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #009b50; /* Green Icon */
    transition: all 0.3s ease;
}

#progress-wrap:hover .scroll-icon {
    color: #fcbe15; /* Hover pe Yellow Icon */
    transform: translate(-50%, -60%); /* Halka sa upar move hoga hover par */
}

/* SVG Circle animation */
#progress-wrap svg.progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg); /* Start point ko top par set karta hai */
}

#progress-wrap svg path {
    fill: none;
    stroke: #fcbe15; /* Yellow Progress Line */
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    #progress-wrap {
        right: 15px;
        bottom: 15px;
        height: 45px;
        width: 45px;
    }
}