html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #016103;
    --light-green: #0e9200;
    --mild-green: #f0faf0;
    --off-white: #f9f9f9;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-text: #000000;
    --border-color: #ddd;
}

/* Global Font Styles */
body {
    font-family: 'Montserrat', sans-serif;
    text-align: justify;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

p, span, a, li, button, input, textarea, select {
    font-family: 'Montserrat', sans-serif;
}

p {
    text-align: justify;
}

* {
    font-family: 'Montserrat', sans-serif;
}

/* IIT Madras Partnership Banner */
.partnership-banner {
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.partnership-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.partnership-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(1, 97, 3, 0.25);
    transition: transform 0.3s ease;
}

.partnership-icon:hover {
    transform: scale(1.05);
}

.partnership-icon i {
    font-size: 2rem;
    color: #fff;
}

.partnership-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
}

.partnership-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.15rem;
}

.partnership-divider {
    display: none;
}

.partnership-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 0.3px;
    line-height: 1.2;
    margin: 0;
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .partnership-banner {
        padding: 2rem 1.5rem;
    }
    
    .partnership-content {
        gap: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .partnership-icon {
        width: 65px;
        height: 65px;
    }
    
    .partnership-icon i {
        font-size: 1.85rem;
    }
    
    .partnership-title {
        font-size: 1.5rem;
    }
    
    .partnership-label {
        font-size: 0.825rem;
    }
}

/* Tablet Portrait & Mobile Landscape */
@media (max-width: 768px) {
    .partnership-banner {
        padding: 1.5rem 1rem;
    }
    
    .partnership-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 0;
    }
    
    .partnership-icon {
        width: 60px;
        height: 60px;
    }
    
    .partnership-icon i {
        font-size: 1.7rem;
    }
    
    .partnership-text {
        align-items: center;
        gap: 0.4rem;
    }
    
    .partnership-title {
        font-size: 1.4rem;
        text-align: center;
        max-width: 100%;
    }
    
    .partnership-label {
        font-size: 0.8rem;
        text-align: center;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .partnership-banner {
        padding: 1.25rem 1rem;
    }
    
    .partnership-content {
        gap: 0.85rem;
    }
    
    .partnership-icon {
        width: 55px;
        height: 55px;
    }
    
    .partnership-icon i {
        font-size: 1.5rem;
    }
    
    .partnership-title {
        font-size: 1.15rem;
        line-height: 1.3;
    }
    
    .partnership-label {
        font-size: 0.75rem;
        letter-spacing: 1.2px;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .partnership-banner {
        padding: 1rem 0.75rem;
    }
    
    .partnership-content {
        gap: 0.75rem;
    }
    
    .partnership-icon {
        width: 50px;
        height: 50px;
    }
    
    .partnership-icon i {
        font-size: 1.35rem;
    }
    
    .partnership-title {
        font-size: 1rem;
    }
    
    .partnership-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
}

/* 50th Anniversary Modal Styles */
.anniversary-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.4s ease-in-out;
    backdrop-filter: blur(5px);
}

.anniversary-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.anniversary-modal-content {
    background: linear-gradient(135deg, #016103 0%, #0e9200 100%);
    position: relative;
    padding: 0;
    border-radius: 24px;
    max-width: 450px;
    width: 85%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    animation: slideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    border: 3px solid rgba(255, 193, 7, 0.3);
}

.anniversary-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: #016103;
    border: none;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    line-height: 1;
    padding: 0;
}

.anniversary-modal-close:hover {
    background: #d32f2f;
    color: white;
    transform: rotate(90deg) scale(1.15);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.5);
}

.anniversary-modal-body {
    padding: 30px 25px 25px;
    position: relative;
    text-align: center;
}

/* Logo Container */
.anniversary-logo-container {
    margin-bottom: 20px;
}

.anniversary-logo {
    width: 180px;
    height: auto;
}

/* Content */
.anniversary-content {
    color: white;
}

.anniversary-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffc107;
    margin: 0 0 -5px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 0.6s ease-out 0.5s backwards;
}

.anniversary-title {
    font-size: 40px;
    font-weight: 900;
    color: white;
    margin: 0 0 15px 0;
    letter-spacing: 4px;
    line-height: 1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.6s ease-out 0.6s backwards;
}

.anniversary-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffc107, transparent);
    margin: 0 auto 15px;
    border-radius: 2px;
    animation: fadeInUp 0.6s ease-out 0.7s backwards;
}

.anniversary-description {
    font-size: 14px;
    line-height: 1.7;
    color: #ffc107;
    margin: 0 0 15px 0;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    animation: fadeInUp 0.6s ease-out 0.8s backwards;
}

.anniversary-tagline {
    font-size: 15px;
    font-style: italic;
    color: #ffc107;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    animation: fadeInUp 0.6s ease-out 0.9s backwards;
}

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

@keyframes slideIn {
    from {
        transform: scale(0.8) translateY(-30px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .anniversary-modal-content {
        max-width: 380px;
        width: 90%;
        border-radius: 20px;
    }
    
    .anniversary-modal-close {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
        top: 10px;
        right: 10px;
    }
    
    .anniversary-modal-body {
        padding: 30px 20px 25px;
    }
    
    .anniversary-logo {
        width: 100px;
        height: auto;
    }
    
    .anniversary-subtitle {
        font-size: 20px;
    }
    
    .anniversary-title {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .anniversary-divider {
        width: 60px;
        margin-bottom: 15px;
    }
    
    .anniversary-description {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .anniversary-tagline {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .anniversary-modal-content {
        max-width: 320px;
    }

    .anniversary-modal-body {
        padding: 25px 15px 20px;
    }
    
    .anniversary-logo {
        width: 80px;
        height: auto;
    }
    
    .anniversary-subtitle {
        font-size: 18px;
    }
    
    .anniversary-title {
        font-size: 26px;
        letter-spacing: 1px;
    }
    
    .anniversary-description {
        font-size: 12px;
    }
    
    .anniversary-tagline {
        font-size: 13px;
    }
}

body {
font-family: 'Montserrat', sans-serif;    
line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Montserrat', sans-serif;
}

/* Top Header Section */
.top-header {
    display: none;
    background-color: var(--white);
    padding: 0.6rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    height: 88px;
}

@media (min-width: 1025px) {
    .top-header {
        display: block;
    }
}

.top-header.hidden {
    transform: translateY(-100%);
}

.top-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 2vw, 2rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    height: 100%;
}

.header-logo-section {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
    position: relative;
}

.header-logo-img {
    height: clamp(50px, 5vw, 70px);
    width: auto;
}

.header-school-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.header-school-name {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: var(--primary-green);
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(1, 97, 3, 0.1);
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.header-school-subtitle {
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    font-weight: 600;
    color: #666;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-contact-section {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 2rem);
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: clamp(0.75rem, 1.5vw, 1.5rem);
    position: relative;
}

.header-contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 35px;
    background-color: #e0e0e0;
}

.header-contact-item:first-child::before {
    display: none;
}

.header-contact-icon-wrapper {
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-contact-details {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.header-contact-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
}

.header-contact-value {
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    font-weight: 600;
    color: var(--dark-text);
    white-space: nowrap;
}

/* Navbar Styles */
.navbar {
    background-color: var(--primary-green);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: none;
    border: none;
    border-radius: 0;
}

@media (min-width: 1025px) {
    .navbar {
        top: 88px; /* Adjusted from 98px to match new padding */
    }
}

.navbar.scrolled {
    top: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar.scrolled .nav-link:hover {
    background-color: #014d02;
    border-radius: 4px;
}

.navbar.scrolled .nav-link.active {
    background-color: #ffc107;
    color: #000000;
    border-radius: 4px;
}

.navbar.scrolled .alumni-dropdown-toggle:hover,
.navbar.scrolled .alumni-dropdown-toggle.active {
    background-color: rgba(255, 193, 7, 0.2);
    color: #000;
    border-radius: 4px;
}

.navbar.scrolled .nav-logo-scroll {
    display: flex;
}

.navbar.scrolled .nav-container {
    padding: 0.6rem clamp(1rem, 3vw, 2.5rem);
    gap: clamp(1rem, 2vw, 3rem);
    justify-content: space-between;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 clamp(1rem, 3vw, 2.5rem);
    width: 100%;
}

.nav-logo-scroll {
    display: none;
    align-items: center;
    gap: clamp(0.5rem, 1vw, 0.75rem);
}

.nav-logo-scroll .logo-img {
    max-height: clamp(50px, 6vw, 75px);
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(1, 97, 3, 0.3));
    transition: transform 0.3s ease;
}

.nav-logo-scroll .logo-img:hover {
    transform: scale(1.1);
}

.nav-logo-scroll .logo-text {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}

.nav-logo {
    display: none;
}

.mobile-only {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(0.25rem, 1vw, 1.25rem);
    flex-wrap: nowrap;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 0.75rem clamp(0.4rem, 0.8vw, 1rem);
    font-size: clamp(0.8rem, 0.9vw, 0.95rem);
    display: block;
    white-space: nowrap;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    background-color: #ffc107;
    color: #000000;
}

/* Parent Login Dropdown Styling */
.alumni-dropdown-container {
    position: relative;
}

.alumni-dropdown-toggle {
    background: transparent;
    border: none;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 0.75rem clamp(0.4rem, 0.8vw, 1rem);
    font-size: clamp(0.8rem, 0.9vw, 0.95rem);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    cursor: pointer;
    border-radius: 4px;
}

.alumni-dropdown-toggle:hover,
.alumni-dropdown-toggle.active {
    background-color: rgba(255, 193, 7, 0.15);
    color: #000000;
}

.alumni-dropdown-toggle i {
    font-size: 0.75em;
    transition: transform 0.3s ease;
}

.alumni-dropdown-toggle.active i {
    transform: rotate(180deg);
}

.alumni-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
    overflow: hidden;
}

.alumni-dropdown-container:hover .alumni-dropdown-menu,
.alumni-dropdown-toggle.active + .alumni-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.alumni-dropdown-menu li {
    list-style: none;
}

.alumni-dropdown-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--dark-text);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.alumni-dropdown-menu li a:hover {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--primary-green);
    padding-left: 1.25rem;
}

.alumni-btn {
    background-color: #ffc107;
    color: var(--primary-green) !important;
}

.alumni-btn:hover {
    background-color: #ffb300;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    gap: 0.4rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Main Content */
/* main {
    margin: 2rem auto;
    padding: 0 2rem;
} */

/* Modern Hero Carousel Section */
.hero-carousel-section {
    position: relative;
    width: 100%;
    height: 700px;
    margin-top: 75px;
    overflow: hidden;
    background: #000;
}

@media (min-width: 1025px) {
    .hero-carousel-section {
        margin-top: 163px;
    }
}

.hero-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Hero Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 1;
}

.hero-slide-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 10s ease-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 97, 3, 0.7) 0%, rgba(14, 146, 0, 0.6) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-slide-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 193, 7, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
}

/* Slide Badge */
.hero-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ffc107, #ffb300);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.5);
    animation: slideInLeft 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.hero-slide-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.hero-slide-active .hero-slide-badge {
    animation: slideInLeft 0.8s ease-out 0.2s backwards;
}

.hero-slide-badge i {
    font-size: 1.1rem;
}

/* Slide Title */
.hero-slide-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    max-width: 900px;
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.6);
    animation: slideInLeft 0.8s ease-out;
    letter-spacing: -1px;
}

.hero-slide-active .hero-slide-title {
    animation: slideInLeft 0.8s ease-out 0.4s backwards;
}

.hero-highlight {
    color: #ffc107;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.5),
                 4px 4px 15px rgba(0, 0, 0, 0.6);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 193, 7, 0.4),
                     4px 4px 15px rgba(0, 0, 0, 0.6);
    }
    to {
        text-shadow: 0 0 40px rgba(255, 193, 7, 0.7),
                     0 0 60px rgba(255, 193, 7, 0.5),
                     4px 4px 15px rgba(0, 0, 0, 0.6);
    }
}

/* Slide Description */
.hero-slide-description {
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 0 0 2.5rem 0;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    animation: slideInLeft 0.8s ease-out;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.hero-slide-active .hero-slide-description {
    animation: slideInLeft 0.8s ease-out 0.6s backwards;
}

/* Slide Buttons */
.hero-slide-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    animation: slideInLeft 0.8s ease-out;
}

.hero-slide-active .hero-slide-buttons {
    animation: slideInLeft 0.8s ease-out 0.8s backwards;
}

.hero-carousel-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.hero-carousel-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-carousel-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-carousel-btn-primary {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #1a1a1a;
    border: 2px solid transparent;
}

.hero-carousel-btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.6);
}

.hero-carousel-btn-primary span,
.hero-carousel-btn-primary i {
    position: relative;
    z-index: 1;
}

.hero-carousel-btn-primary i {
    transition: transform 0.4s ease;
}

.hero-carousel-btn-primary:hover i {
    transform: translateX(6px);
}

.hero-carousel-btn-outline {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 3px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
}

.hero-carousel-btn-outline span,
.hero-carousel-btn-outline i {
    position: relative;
    z-index: 1;
}

.hero-carousel-btn-outline:hover {
    background: rgba(255, 255, 255, 0.98);
    color: var(--primary-green);
    border-color: #fff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

/* Navigation Arrows */
.hero-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-carousel-nav:hover {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border-color: #ffc107;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 10px 35px rgba(255, 193, 7, 0.6);
    color: #1a1a1a;
}

.hero-carousel-nav:active {
    transform: translateY(-50%) scale(1.05);
}

.hero-carousel-prev {
    left: 2rem;
}

.hero-carousel-next {
    right: 2rem;
}

/* Dots Navigation */
.hero-carousel-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 1.2rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.hero-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 193, 7, 0.4);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

.hero-dot:hover::after {
    width: 24px;
    height: 24px;
}

.hero-dot-active {
    width: 48px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Progress Bar */
.hero-carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10;
    overflow: hidden;
}

.hero-carousel-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ffc107, #ff9800, #ffc107);
    background-size: 200% 100%;
    animation: progressShine 2s linear infinite;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

@keyframes progressShine {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-carousel-section {
        height: 650px;
        margin-top: 75px;
    }
    
    .hero-slide-title {
        font-size: 3.5rem;
    }
    
    .hero-slide-description {
        font-size: 1.15rem;
    }
    
    .modern-hero-wrapper {
        margin-top: 75px;
    }
}

@media (max-width: 768px) {
    .hero-carousel-section {
        height: 600px;
        margin-top: 75px;
    }
    
    .hero-slide-content {
        padding: 0 1.5rem;
    }
    
    .hero-slide-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-slide-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-slide-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-slide-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-carousel-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    .hero-carousel-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .hero-carousel-prev {
        left: 1rem;
    }
    
    .hero-carousel-next {
        right: 1rem;
    }
    
    .hero-carousel-dots {
        bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-carousel-section {
        height: 550px;
    }
    
    .hero-slide-title {
        font-size: 2rem;
    }
    
    .hero-slide-description {
        font-size: 0.95rem;
    }
    
    .hero-carousel-btn {
        font-size: 0.9rem;
        padding: 0.9rem 1.75rem;
    }
    
    .hero-carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .hero-carousel-prev {
        left: 0.75rem;
    }
    
    .hero-carousel-next {
        right: 0.75rem;
    }
}

/* Modern Hero Wrapper */
.modern-hero-wrapper {
    position: relative;
    background: linear-gradient(135deg, #f8fcf9 0%, #e8f5ea 50%, #f0f9f1 100%);
    padding: clamp(4rem, 10vw, 10rem) 2rem 6rem;
    margin-top: 75px;
    overflow: hidden;
    min-height: 600px;
}

@media (min-width: 1025px) {
    .modern-hero-wrapper {
        margin-top: 163px;
    }
}

/* Animated Background Shapes */
.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(80px);
    animation: floatShape 20s ease-in-out infinite;
}

.hero-bg-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.hero-bg-shape-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #ffc107, #ffb300);
    top: 40%;
    right: -150px;
    animation-delay: 5s;
}

.hero-bg-shape-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--light-green), #4ade80);
    bottom: -100px;
    left: 30%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(40px, -40px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-30px, 50px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(50px, 30px) rotate(270deg) scale(1.05);
    }
}

.modern-hero-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Content */
.modern-hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge i {
    font-size: 1.1rem;
}

.modern-hero-heading {
    font-size: 4rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.15;
    margin: 0;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.modern-hero-description {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
    max-width: 540px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.modern-hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.modern-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.25rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modern-hero-btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: #fff;
}

.modern-hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(1, 97, 3, 0.3);
}

.modern-hero-btn-primary i {
    transition: transform 0.3s ease;
}

.modern-hero-btn-primary:hover i {
    transform: translateX(5px);
}

.modern-hero-btn-secondary {
    background: #fff;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.modern-hero-btn-secondary:hover {
    background: var(--primary-green);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(1, 97, 3, 0.2);
}

/* Achievement Badges */
.hero-achievements {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.achievement-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.achievement-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
}

.achievement-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.achievement-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.achievement-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

/* Right Visual */
.modern-hero-right {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.4s backwards;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
}

.hero-image-main {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.hero-image-main img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 97, 3, 0.1), rgba(14, 146, 0, 0.1));
    pointer-events: none;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card-1 {
    top: 10%;
    left: -50px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 15%;
    right: -40px;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.floating-card-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #ffc107, #ffb300);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.floating-card-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.floating-card-text strong {
    font-size: 1.05rem;
    color: #1a1a1a;
    font-weight: 700;
}

.floating-card-text span {
    font-size: 0.85rem;
    color: #666;
}

/* Decorative Circles */
.hero-decorative-circle {
    position: absolute;
    border-radius: 50%;
    border: 3px dashed rgba(1, 97, 3, 0.2);
    z-index: 1;
}

.hero-decorative-circle-1 {
    width: 150px;
    height: 150px;
    top: -30px;
    right: -30px;
    animation: rotateCircle 15s linear infinite;
}

.hero-decorative-circle-2 {
    width: 120px;
    height: 120px;
    bottom: -20px;
    left: -20px;
    animation: rotateCircle 20s linear infinite reverse;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .modern-hero-wrapper {
        padding: 8rem 2rem 5rem;
    }
    
    .modern-hero-content-wrapper {
        gap: 4rem;
    }
    
    .modern-hero-heading {
        font-size: 3.5rem;
    }
    
    .hero-image-main img {
        height: 480px;
    }
}

@media (max-width: 768px) {
    .modern-hero-wrapper {
        padding: 6rem 1.5rem 4rem;
        margin-top: 75px;
    }
    
    .modern-hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .modern-hero-heading {
        font-size: 2.8rem;
    }
    
    .modern-hero-description {
        font-size: 1.05rem;
    }
    
    .modern-hero-buttons {
        flex-direction: column;
    }
    
    .modern-hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-achievements {
        flex-direction: column;
    }
    
    .achievement-badge {
        width: 100%;
    }
    
    .hero-image-main img {
        height: 400px;
    }
    
    .floating-card-1 {
        left: 10px;
        top: 5%;
    }
    
    .floating-card-2 {
        right: 10px;
        bottom: 10%;
    }
    
    .floating-card {
        padding: 1rem 1.25rem;
    }
    
    .floating-card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .floating-card-text strong {
        font-size: 0.95rem;
    }
    
    .floating-card-text span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .modern-hero-wrapper {
        padding: 5rem 1rem 3rem;
    }
    
    .modern-hero-heading {
        font-size: 2.2rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.4rem;
    }
    
    .modern-hero-description {
        font-size: 0.95rem;
    }
    
    .hero-image-main img {
        height: 350px;
    }
    
    .achievement-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .achievement-value {
        font-size: 1.3rem;
    }
    
    .achievement-label {
        font-size: 0.75rem;
    }
}

/* Old Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: var(--white);
    padding: 5rem 2rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    margin-top: 75px;
    gap: 3rem;
    border-radius: 0;
    position: relative;
}

@media (min-width: 1025px) {
    .hero {
        margin-top: 163px;
    }
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-btn {
    background-color: #ffc107;
    color: var(--primary-green);
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: #ffb300;
    transform: translateY(-2px);
}

/* Modern Hero Section */
.modern-hero-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 50%, #ffffff 100%);
    padding: clamp(4rem, 10vw, 10rem) 2rem 6rem;
    position: relative;
    overflow: hidden;
    margin-top: 75px;
}

@media (min-width: 1025px) {
    .modern-hero-section {
        margin-top: 163px;
    }
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(60px);
    animation: floatShape 20s ease-in-out infinite;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c61 100%);
    top: -100px;
    left: -50px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #4ade80 0%, #86efac 100%);
    top: 50%;
    right: -100px;
    animation-delay: 5s;
}

.hero-shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #fbbf24 0%, #fcd34d 100%);
    bottom: -50px;
    left: 20%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, 40px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(40px, 20px) rotate(270deg) scale(1.05);
    }
}

.modern-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.modern-hero-content {
    opacity: 0;
    transform: translateY(30px);
}

.hero-tag {
    display: inline-block;
    background-color: #ff6b35;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
}

.hero-btn-primary {
    background-color: #ff6b35;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.hero-btn-primary:hover {
    background-color: #ff5722;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.hero-btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.hero-btn-secondary:hover {
    background-color: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}

.play-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover .play-icon {
    background-color: white;
    color: var(--primary-green);
}

.modern-hero-image {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin-left: auto;
}

.hero-image-border {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3) 0%, rgba(74, 222, 128, 0.3) 100%);
    z-index: -1;
    animation: borderPulse 3s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 8px solid white;
}

/* Facilities Hero Section */
.facilities-page .hero {
    background: linear-gradient(rgba(45, 106, 79, 0.7), rgba(45, 106, 79, 0.7)), 
                url('../assets/img/18.webp') center/cover no-repeat;
    color: var(--white);
    padding: 8rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    border-radius: 0;
    position: relative;
    min-height: 500px;
}

.facilities-page .hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    z-index: 1;
}

.facilities-page .hero p {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.95;
    z-index: 1;
}

/* Contact Hero Section */
.hero-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0;
    padding: 8rem 2rem 4rem 2rem;
    position: relative;
    background-color: #959393;
}

.school-title-section {
    padding: 6rem 2rem 4rem; /* Increased top padding from 0 to 6rem */
    text-align: center;
    background-color: #e8f5e9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.curved-canvas {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 1.5rem;
}

.school-name-sub {
    font-size: clamp(1.2rem, 4vw, 3rem);
    color: #008000;
    font-weight: 800;
    margin: 10px 0;
    line-height: 1.1;
    font-family: 'Arial Black', 'Impact', sans-serif;
}

.school-motto {
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    color: #ff0000;
    margin-top: 2rem;
    font-weight: 600;
    font-family: 'Georgia', serif;
    font-style: italic;
}

/* New Hero Section */
.hero-new {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: var(--white);
    padding: 5rem 2rem;
    margin-bottom: 3rem;
    border-radius: 0;
    position: relative;
}

.hero-new-container {
    max-width: 1200px;
    margin: 40px auto auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-new-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-new-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.hero-new-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    opacity: 0.95;
}

.hero-new-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    opacity: 0.9;
}

.hero-new-cta {
    display: inline-block;
    background-color: #ffc107;
    color: var(--primary-green);
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

.hero-new-cta:hover {
    background-color: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-new-right {
    position: relative;
    height: 450px;
}

.hero-new-image {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-new-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-stat-box {
    position: absolute;
    background: var(--white);
    color: var(--primary-green);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.hero-stat-1 {
    bottom: 40px;
    left: -30px;
    width: 140px;
    animation-delay: 0s;
}

.hero-stat-2 {
    top: 30px;
    right: -40px;
    width: 140px;
    animation-delay: 0.6s;
}

.hero-stat-3 {
    bottom: 120px;
    right: 20px;
    width: 140px;
    animation-delay: 1.2s;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--light-green);
}

.btn-secondary {
    background-color: var(--light-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

/* About Section */
.about-section {
    padding: 4rem 2rem;
    border-radius: 8px;
}


.about-text {
    flex: 1;
}

.about-text h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    color: #000000;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12rem;
    color: var(--primary-green);
}

/* Academic Section */
.academic-section {
    text-align: center;
}

.academic-section h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.highlight-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(45, 106, 79, 0.2);
}

.highlight-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.highlight-card h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.highlight-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-centered {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Achievements Section */
.achievements-section {
    position: relative;
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    overflow: hidden;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}


.achievements-section > * {
    position: relative;
    z-index: 3;
}

.achievements-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.achievements-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.achievement-item {
    background: rgba(255, 255, 255, 0.12);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.achievement-item:hover {
    transform: translateY(-10px) scale(1.02);
    background: var(--light-green);
}

.achievement-icon {
    font-size: 2.5rem;
    color: #ffc107;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.achievement-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Events Section */
.events-section {
    text-align: center;
}

.events-section h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.events-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.event-card {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    border-left: 5px solid var(--primary-green);
    transition: all 0.3s ease;
    text-align: center;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(45, 106, 79, 0.2);
}

.event-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.event-card h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.event-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Alumni CTA slider controls */
.alumni-cta-slider-column {
    position: relative;
}

.alumni-slider-controls {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 12;
}

.alumni-slider-toggle {
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #0b3925;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.alumni-slider-toggle:hover {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.alumni-slider-toggle:focus-visible {
    outline: 2px solid var(--primary-green);
    outline-offset: 4px;
}

/* PDF Documents Section */
.announcements-section {
    background: var(--mild-green);
    margin-bottom: 0rem;
    padding: 3rem 0;
}

.announcements-section > .center-section {
    margin-bottom: 3rem;
}

.announcements-section h2 {
    color: var(--primary-green);
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
}

/* Announcements Container */
.announcements-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Announcement Cards Column */
.announcement-cards-column {
    height: 600px;
    overflow: hidden;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Announcements Swiper */
.announcements-swiper {
    height: 100%;
    width: 100%;
}

.announcements-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
    display: flex;
    flex-direction: column;
}

.announcements-swiper .swiper-slide {
    height: auto !important;
    flex-shrink: 0;
}

/* Announcement Card */
.announcement-card {
    background: white;
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 120px;
}

.announcement-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.announcement-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.announcement-img {
    flex-shrink: 0;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(1, 97, 3, 0.2);
}

.icon-circle i {
    font-size: 1.3rem;
    color: white;
}

.announcement-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.announcement-details .name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    line-height: 1.3;
}

.announcement-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.announcement-meta {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

.follow-btn {
    align-self: flex-start;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(1, 97, 3, 0.2);
}

@media (min-width: 768px) {
    .announcement-card {
        align-items: center;
    }
    .follow-btn {
        align-self: center;
        margin-left: auto;
    }
}

.follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 97, 3, 0.3);
}

@media (min-width: 1024px) {
    .announcement-cards-column {
        padding: 2rem;
    }

    .announcement-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        padding: 1.5rem 1.75rem;
        min-height: 140px;
    }

    .announcement-content {
        flex: 1;
        gap: 1.5rem;
    }

    .announcement-details {
        gap: 0.35rem;
    }

    .announcement-description {
        margin-bottom: 0.2rem;
    }

    .follow-btn {
        align-self: center;
        margin-left: auto;
        border-radius: 999px;
        font-size: 0.95rem;
        padding: 0.7rem 1.6rem;
    }
}

@media (max-width: 480px) {
    .announcement-card {
        padding-left: 110px;
    }

    .announcement-img {
        left: 12px;
        width: 70px;
        height: 70px;
    }
}


.announcement-preview-container {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.preview-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.preview-icon i {
    font-size: 1.3rem;
    color: white;
}

.preview-header-text {
    flex: 1;
}

.preview-header-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.preview-meta {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

.preview-pdf-container {
    flex: 1;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    min-height: 400px;
}

.preview-pdf-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.preview-view-full-btn {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(1, 97, 3, 0.2);
}

.preview-view-full-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 97, 3, 0.3);
}

.preview-view-full-btn i {
    font-size: 1rem;
}

.announcement-heading-image {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 480px;
}

.announcement-heading-image img {
    width: 100%;
    height: 480px;
    display: block;
    object-fit: cover;
}

.documents-section {
    margin: 3rem 0;
}

.documents-section h2 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}



.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.document-card {
    background-color: var(--white);
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
}

.document-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(45, 106, 79, 0.15);
}

.document-card h3,
.document-card h4 {
    color: var(--light-green);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    padding: 1.5rem 1.5rem 0 1.5rem;
    font-weight: 600;
}

.document-card p {
    color: #000000;
    font-size: 1.03rem;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.document-card .btn {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem 1.5rem;
    text-align: center;
}

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

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: slideDown 0.3s ease;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--primary-green);
}

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

@keyframes slideDown {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

/* Gallery Styles */

.gallery-container {
    margin: 2rem 0 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.gallery-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:hover {
    color: var(--light-green);
}

.tab-btn.active {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
}

.tab-content {
    animation: fadeIn 0.3s ease-in;
}

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

.gallery-category-filters-wrapper {
    position: relative;
    margin-bottom: 2.5rem;
}

.gallery-category-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    max-height: 50px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.gallery-category-filters .filter-btn.tab-hidden {
    display: none !important;
}

.gallery-category-filters.expanded {
    max-height: 1000px;
}

.show-more-btn {
    display: none;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem auto 0;
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.show-more-btn.visible {
    display: flex;
}

.show-more-btn:hover {
    background: var(--primary-green);
    color: white;
}

.show-more-btn i {
    transition: transform 0.3s ease;
    display: inline-block;
}

.show-more-btn.expanded i {
    transform: rotate(180deg);
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    background: #f0f0f0;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-text);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #e0e0e0;
    color: var(--primary-green);
}

.filter-btn.active {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: var(--white);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(45, 106, 79, 0.2);
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
    width: 100%;
}

.gallery-image-wrapper img, 
.gallery-image-wrapper .video-thumbnail {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 106, 79, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 1.5rem;
    text-align: center;
    z-index: 10;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img,
.gallery-item:hover .video-thumbnail {
    transform: scale(1.1);
}

.gallery-item-title {
    color: var(--white) !important;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.gallery-item:hover .gallery-item-title {
    transform: translateY(0);
}

.gallery-item img,
.gallery-item iframe {
    object-fit: cover;
    display: block;
}

.gallery-item iframe {
    border: none;
}

/* Gallery Carousel Styles */

/* Stacked Carousel Styles */
.stacked-carousel {
    width: 100%;
    padding: 3rem 0;
    position: relative;
}

.stacked-carousel-container {
    width: 100%;
    height: 450px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

.stacked-slide {
    position: absolute;
    width: 420px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.stacked-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Active (center) slide */
.stacked-slide.active {
    width: 520px;
    height: 350px;
    z-index: 10;
    transform: translateX(0) scale(1);
    border: 5px solid #2d7d2e;
    box-shadow: 0 20px 60px rgba(45, 125, 46, 0.4);
}

/* Left side slides */
.stacked-slide.left-far {
    transform: translateX(-580px) translateY(50px) scale(0.85);
    z-index: 1;
    opacity: 0.7;
}

.stacked-slide.left-near {
    transform: translateX(-300px) translateY(-50px) scale(0.9);
    z-index: 5;
    opacity: 0.85;
}

/* Right side slides */
.stacked-slide.right-near {
    transform: translateX(300px) translateY(-50px) scale(0.9);
    z-index: 5;
    opacity: 0.85;
}

.stacked-slide.right-far {
    transform: translateX(580px) translateY(50px) scale(0.85);
    z-index: 1;
    opacity: 0.7;
}

/* Hidden slides */
.stacked-slide.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(0) scale(0.5);
}

/* Navigation buttons */
.stacked-carousel-navigation {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 20;
}

.stacked-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #2d7d2e 0%, #1e5a1f 100%);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(45, 125, 46, 0.3);
}

.stacked-nav-btn:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 12px 32px rgba(45, 125, 46, 0.5);
}

.stacked-nav-btn:active {
    transform: scale(1.05) translateY(-1px);
}

.stacked-nav-btn i {
    font-size: 1.5rem;
}

.stacked-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .stacked-carousel-container {
        height: 380px;
        max-width: 1100px;
    }
    
    .stacked-slide {
        width: 350px;
        height: 250px;
    }
    
    .stacked-slide.active {
        width: 450px;
        height: 300px;
    }
    
    .stacked-slide.left-far {
        transform: translateX(-480px) translateY(40px) scale(0.85);
    }
    
    .stacked-slide.left-near {
        transform: translateX(-250px) translateY(-40px) scale(0.9);
    }
    
    .stacked-slide.right-near {
        transform: translateX(250px) translateY(-40px) scale(0.9);
    }
    
    .stacked-slide.right-far {
        transform: translateX(480px) translateY(40px) scale(0.85);
    }
    
    .stacked-nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .stacked-nav-btn i {
        font-size: 1.3rem;
    }
    
}

@media (max-width: 768px) {
    .stacked-carousel-container {
        height: 320px;
        max-width: 900px;
    }
    
    .stacked-slide {
        width: 280px;
        height: 200px;
    }
    
    .stacked-slide.active {
        width: 350px;
        height: 250px;
        border: 4px solid #2d7d2e;
    }
    
    .stacked-slide.left-far {
        transform: translateX(-350px) translateY(30px) scale(0.85);
    }
    
    .stacked-slide.left-near {
        transform: translateX(-180px) translateY(-30px) scale(0.9);
    }
    
    .stacked-slide.right-near {
        transform: translateX(180px) translateY(-30px) scale(0.9);
    }
    
    .stacked-slide.right-far {
        transform: translateX(350px) translateY(30px) scale(0.85);
    }
    
    .stacked-nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .stacked-nav-btn i {
        font-size: 1.2rem;
    }
    
    .achievements-section {
        background-attachment: scroll;
        padding: 4rem 1.5rem;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
    
    .achievements-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .achievement-item {
        padding: 1.5rem 1rem;
    }
    
}

@media (max-width: 640px) {
    .stacked-carousel-container {
        height: 280px;
        max-width: 700px;
    }
    
    .stacked-slide {
        width: 240px;
        height: 170px;
        border-radius: 12px;
    }
    
    .stacked-slide.active {
        width: 300px;
        height: 210px;
        border: 3px solid #2d7d2e;
    }
    
    .stacked-slide.left-far {
        transform: translateX(-280px) translateY(25px) scale(0.8);
    }
    
    .stacked-slide.left-near {
        transform: translateX(-140px) translateY(-25px) scale(0.85);
    }
    
    .stacked-slide.right-near {
        transform: translateX(140px) translateY(-25px) scale(0.85);
    }
    
    .stacked-slide.right-far {
        transform: translateX(280px) translateY(25px) scale(0.8);
    }
    
    .stacked-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .stacked-nav-btn i {
        font-size: 1rem;
    }
    
    .stacked-carousel-navigation {
        bottom: -70px;
        gap: 1.5rem;
    }
    

}

@media (max-width: 480px) {
    .stacked-carousel-container {
        height: 240px;
    }
    
    .stacked-slide {
        width: 200px;
        height: 140px;
    }
    
    .stacked-slide.active {
        width: 260px;
        height: 180px;
    }
    
    .stacked-slide.left-far {
        transform: translateX(-220px) translateY(20px) scale(0.75);
    }
    
    .stacked-slide.left-near {
        transform: translateX(-110px) translateY(-20px) scale(0.8);
    }
    
    .stacked-slide.right-near {
        transform: translateX(110px) translateY(-20px) scale(0.8);
    }
    
    .stacked-slide.right-far {
        transform: translateX(220px) translateY(20px) scale(0.75);
    }
    
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
    font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="file"],
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 5px rgba(45, 106, 79, 0.3);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.form-container {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    height: auto;
}

.alumni-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.alumni-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.alumni-form-row:nth-child(3) {
    grid-template-columns: 1fr 1fr;
}

.alumni-form-row .form-group {
    margin-bottom: 0;
}

.alumni-btn-submit {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .form-container {
        padding: 1.5rem;
        max-width: 95%;
        margin: 0 auto;
    }

    .alumni-form {
        gap: 15px;
    }

    .alumni-form-row {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../assets/img/home/footer.webp') center/cover no-repeat;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(64, 145, 108, 0.1) 0%, transparent 50%);
    pointer-events: none;
} */

.footer-top {
    background: transparent;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-contact-info {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex: 1;
}

.footer-phone {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-phone:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.footer-phone span {
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.footer-phone p {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.7rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background-color: var(--primary-green);
    transform: translateY(-4px) scale(1.15);
    border-color: var(--primary-green);
    box-shadow: 0 10px 28px rgba(45, 106, 79, 0.4);
    color: var(--white);
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 3rem;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.footer-column {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 180px;
}

.footer-column:first-child {
    flex: 1;
    min-width: 300px;
    align-items: center;
    text-align: center;
}

.footer-logo {
    max-width: 120px; 
    margin-bottom: 1.5rem; 
    border-radius: 8px; 
}
.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding-bottom: 1rem;
    width: 100%;
    text-align: left;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--light-green);
    border-radius: 2px;
}

.footer-column:first-child h4::after {
    left: 50%;
    transform: translateX(-50%);
}

.footer-column h4[style*="color: #ffc107"]::after {
    background: #ffc107;
}

.footer-column p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-column p:hover {
    color: var(--white);
}

.footer-column p:first-of-type {
    margin-top: 0;
}

.footer-email {
    margin-top: 0.8rem !important;
    color: var(--light-green) !important;
    font-size: 0.95rem !important;
    font-weight: 600;
    cursor: pointer;
}

.footer-email:hover {
    text-decoration: underline;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    width: 100%;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column ul li a:hover {
    color: var(--light-green);
    padding-left: 8px;
}


.footer-newsletter {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-column: 1 / -1;
    width: 100%;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter h4 {
    width: 100%;
}

.footer-newsletter p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    width: 100%;
}

.newsletter-input {
    padding: 0.85rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--light-green);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.2);
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
    color: var(--white);
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: auto;
    box-sizing: border-box;
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(64, 145, 108, 0.4);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 2rem;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center !important;
}

.footer-bottom p a {
    color: var(--light-green);
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.hero-slider {
    position: relative;
    top: -20px;
    width: 100%;
    min-height: 70vh;
    max-height: 950px;
    height: min(80vh, 900px);
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slides-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position:top center;
    background: none;
    padding: 0;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.slide-overlay h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.slide-overlay p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.slide-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.slide-placeholder h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.slide-placeholder p {
    font-size: 1.3rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover:not(:disabled) {
    background-color: rgba(255, 255, 255, 0.6);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
    background-color: rgba(255, 255, 255, 0.2);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: white;
    width: 30px;
    border-radius: 6px;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 3rem 2rem;
    }

    .footer-newsletter {
        grid-column: 1 / -1;
    }

    .footer-column {
        align-items: center;
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .footer-contact-info {
        gap: 1.5rem;
        justify-content: center;
    }

    .footer-social {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        align-items: center;
    }

    .footer-contact-info {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        align-items: center;
    }

    .footer-phone {
        width: 100%;
    }

    .footer-social {
        width: 100%;
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
        align-items: center;
    }

    .footer-newsletter {
        grid-column: 1;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        align-items: center;
        text-align: center;
    }

    .footer-column h4 {
        font-size: 0.9rem;
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column p,
    .footer-column ul li a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-slider {
        height: 500px;
    }

    .slide-overlay h1 {
        font-size: 2rem;
    }

    .slide-overlay p {
        font-size: 1rem;
    }

    .slide-placeholder h1 {
        font-size: 2rem;
    }

    .slide-placeholder p {
        font-size: 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        padding: 0.75rem;
        font-size: 1.2rem;
    }

    .prev-btn {
        left: 1rem;
    }

    .next-btn {
        right: 1rem;
    }

    .slider-dots {
        bottom: 1rem;
        gap: 0.6rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 25px;
    }
}

@media (max-width: 480px) {
    .footer-top {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1rem;
        align-items: center;
    }

    .footer-phone {
        padding: 1rem;
        width: 100%;
    }

    .footer-phone p {
        font-size: 1.1rem;
    }

    .footer-phone span {
        font-size: 0.7rem;
    }

    .footer-contact-info {
        gap: 0.8rem;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .footer-social {
        width: 100%;
        gap: 0.5rem;
        justify-content: center;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
        align-items: center;
    }

    .footer-column {
        align-items: center;
        text-align: center;
    }

    .footer-column h4 {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column p {
        font-size: 0.85rem;
        margin: 0.3rem 0;
    }

    .footer-column ul li {
        margin-bottom: 0.6rem;
    }

    .newsletter-input {
        max-width: 100%;
    }

    .footer-column ul li a {
        font-size: 0.85rem;
    }

    .footer-newsletter p {
        font-size: 0.8rem;
    }

    .social-link {
        min-width: 36px;
        min-height: 36px;
        font-size: 1rem;
    }

    .gallery-tabs {
        gap: 0.4rem;
        margin-bottom: 1.2rem;
        padding: 0 0.75rem;
    }

    .hero-slider {
        height: 500px;
    }

    .slide-overlay h1 {
        font-size: 1.8rem;
    }

    .slide-overlay p {
        font-size: 0.9rem;
    }

    .slide-placeholder h1 {
        font-size: 1.8rem;
    }

    .slide-placeholder p {
        font-size: 0.9rem;
    }

    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .prev-btn {
        left: 0.5rem;
    }

    .next-btn {
        right: 0.5rem;
    }

    .slider-dots {
        bottom: 0.8rem;
        gap: 0.4rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 20px;
    }

    .tab-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .gallery-category-filters-wrapper {
        margin-bottom: 1.2rem;
    }

    .gallery-category-filters {
        gap: 0.4rem;
        padding: 0 0.75rem;
        max-height: 90px;
    }

    .filter-btn {
        padding: 0.45rem 0.8rem;
        font-size: 0.75rem;
    }

    .show-more-btn {
        padding: 0.4rem 1.2rem;
        font-size: 0.75rem;
    }

    .gallery-item img,
    .gallery-item iframe {
        height: 200px;
    }

    .gallery-container {
        padding: 0 0.75rem;
    }
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

thead {
    background-color: var(--primary-green);
    color: var(--white);
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

tbody tr:hover {
    background-color: var(--light-gray);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 2rem;
}

.mb-3 {
    margin-bottom: 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section Styles - Learning Style */
.hero-learning-style {
    position: relative;
    background: var(--primary-green);
    padding: 6rem 2rem 4rem;
    overflow: hidden;
}

.hero-learning-style::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.hero-learning-style::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.hero-learning-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-learning-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-learning-tag {
    display: inline-block;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.hero-learning-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.hero-learning-description {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.7;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
}

.hero-learning-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1rem;
}

.hero-learning-btn {
    background: #0e9200;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-learning-btn:hover {
    background: #0a7000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 146, 0, 0.3);
}

.hero-play-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1a2332;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-play-button:hover {
    color: #0e9200;
}

.hero-play-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0e9200;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-play-button:hover .hero-play-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.hero-learning-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-learning-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-learning-image-main {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    border: 15px solid white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.hero-learning-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-learning-bg-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.hero-learning-bg-shape.shape-1 {
    width: 450px;
    height: 450px;
    background: rgba(74, 229, 75, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-learning-bg-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(1, 102, 180, 0.2);
    bottom: -50px;
    left: -30px;
}

.hero-learning-bg-shape.shape-3 {
    width: 150px;
    height: 150px;
    background: rgba(14, 146, 0, 0.12);
    top: -30px;
    right: 20px;
}

/* Infographic Cards Styles */
.page-wrapper {
    padding: 3rem 0;
}

.infographic-cards {
    width: 100%;
    position: relative;
    display: flex;
    gap: 2%;
    justify-content: center;
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.infographic-cards li {
    list-style: none;
    width: calc(100% / 4 - 1.5%);
    height: 180px;
    padding: 20px 25px;
    background: #eee;
    position: relative;
    background-image: linear-gradient(to bottom right, #e9eaecda, #ffffff);
    filter: drop-shadow(8px 8px 8px rgba(0, 0, 0, 0.2));
    box-shadow: inset 2px 2px 2px white, inset -1px -1px 1px rgba(0, 0, 0, 0.25);
    text-align: center;
    display: inline-block;
    margin-bottom: 20px;
    border-radius: 16px;
}

.infographic-cards li h5 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    margin-top: 8px;
}

.infographic-cards li h6 {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 0;
}

.infographic-cards li.color-1 {
    border: 8px solid var(--color-1, #f68121);
}

.infographic-cards li.color-2 {
    border: 8px solid var(--color-2, #ed1c24);
}

.infographic-cards li.color-3 {
    border: 8px solid var(--color-3, #582c8b);
}

.infographic-cards li.color-4 {
    border: 8px solid var(--color-4, #0166b4);
}

.infographic-cards li i {
    font-size: 30px;
    margin-bottom: 10px;
    display: block;
}

.infographic-cards li.color-1 i {
    color: var(--color-1, #f68121);
}

.infographic-cards li.color-2 i {
    color: var(--color-2, #ed1c24);
}

.infographic-cards li.color-3 i {
    color: var(--color-3, #582c8b);
}

.infographic-cards li.color-4 i {
    color: var(--color-4, #0166b4);
}

.number-box {
    position: absolute;
    bottom: 0;
    padding: 12px;
    font-size: 18px;
    border-radius: 50px 50px 0 0;
    width: 50px;
    height: 40px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: inset 0.25em 0.25em 0.25em rgba(0, 0, 0, 0.2), 0em 0.05em rgba(255, 255, 255, 0);
    font-weight: 800;
    color: #fff;
}

.infographic-cards li.color-1 .number-box {
    background: var(--color-1, #f68121);
}

.infographic-cards li.color-2 .number-box {
    background: var(--color-2, #ed1c24);
}

.infographic-cards li.color-3 .number-box {
    background: var(--color-3, #582c8b);
}

.infographic-cards li.color-4 .number-box {
    background: var(--color-4, #0166b4);
}

@media screen and (max-width: 991px) {
    .hero-learning-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-learning-left {
        align-items: center;
    }

    .hero-learning-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-learning-title {
        font-size: 2.5rem;
    }

    .hero-learning-image-main {
        width: 350px;
        height: 350px;
    }

    .hero-learning-bg-shape.shape-1 {
        width: 400px;
        height: 400px;
    }

    .infographic-cards {
        flex-wrap: wrap;
        gap: 2%;
    }

    .infographic-cards li {
        flex: 0 0 auto;
        width: calc(100% / 2 - 2%);
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .hero-learning-style {
        padding: 4rem 1.5rem 3rem;
    }

    .hero-learning-title {
        font-size: 2rem;
    }

    .hero-learning-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-learning-btn {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 578px) {
    .hero-learning-title {
        font-size: 1.8rem;
    }

    .hero-learning-image-main {
        width: 280px;
        height: 280px;
    }

    .hero-learning-bg-shape.shape-1 {
        width: 320px;
        height: 320px;
    }

    .infographic-cards li {
        width: calc(100% - 2%);
    }
}

/* PDF Viewer Styles */
.pdf-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

.pdf-modal-content {
    background-color: #ffffff;
    width: 95%;
    max-width: 1100px;
    height: 92vh;
    max-height: 900px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.3s ease;
    overflow: hidden;
    margin: auto;
}

.pdf-modal-header {
    background: linear-gradient(135deg, #016103 0%, #0e9200 100%);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pdf-modal-header h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 600;
    flex: 1;
    color: var(--white);
    letter-spacing: 0.3px;
}

.pdf-modal-header .close-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
}

.pdf-modal-header .close-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.pdf-modal-header .close-btn i {
    line-height: 1;
}

.pdf-header {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.pdf-header h2 {
    margin: 0;
    font-size: 1.3rem;
    flex: 0 1 auto;
    min-width: 150px;
}

.pdf-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    flex: 1 1 auto;
}

.pdf-btn {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
}

.pdf-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.pdf-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pdf-btn.close-pdf-btn {
    margin-left: 0.5rem;
}

.page-info {
    color: var(--white);
    font-size: 0.9rem;
    padding: 0 0.3rem;
    white-space: nowrap;
    font-weight: 600;
}

.pdf-modal-body {
    flex: 1;
    overflow: hidden;
    display: flex;
    background-color: #f8f9fa;
    position: relative;
}

.pdf-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #ffffff;
}

.pdf-container {
    flex: 1;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: #fff;
    padding: 1rem;
}

.pdf-container canvas {
    max-width: 100%;
    height: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Document Card Actions */
.document-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.document-actions .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
}

.document-actions .btn i {
    margin-right: 0.3rem;
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow-y: auto;
}

.video-modal-content {
    background-color: #1a1a1a;
    width: 92%;
    max-width: 1100px;
    max-height: 92vh;
    height: auto;
    margin: auto;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
    animation: slideDown 0.3s ease;
    padding: 2rem;
    position: relative;
    overflow-y: auto;
}

.close-video-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-video-btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.video-modal-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 1.25rem;
    margin-top: 0;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 0 55px;
    letter-spacing: 0.3px;
}

.video-player-container {
    width: 100%;
    padding-bottom: 56.25%;
    position: relative;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
}

.video-player-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-player-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Video Thumbnail Styles */
.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background-color: #e0e0e0;
}

.video-thumbnail-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    background-color: #f5f5f5;
}

.video-thumbnail:hover .video-play-icon {
    background-color: rgb(79, 77, 77);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.video-thumbnail:hover .video-thumbnail-img {
    transform: scale(1.05);
}

/* Facilities Section */

.facilities-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background-color: #f9fbf9;
}

.background-animation {
    position: absolute;
    top: -195px;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    filter: blur(80px);
    opacity: 0.15;
    border-radius: 50%;
    background: var(--primary-green);
    animation: moveShape 20s infinite alternate ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    background: var(--primary-green);
    animation-duration: 25s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -100px;
    background: var(--light-green);
    animation-duration: 30s;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 60%;
    background: #ffc107;
    animation-duration: 20s;
    animation-delay: -10s;
}

@keyframes moveShape {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(100px, 100px) rotate(120deg) scale(1.1);
    }
    66% {
        transform: translate(-50px, 150px) rotate(240deg) scale(0.9);
    }
    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
    }
}

.facilities-section .section-title {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.facilities-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.facility-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    min-height: 350px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.facility-card:nth-child(1) { animation-delay: 0.1s; }
.facility-card:nth-child(2) { animation-delay: 0.2s; }
.facility-card:nth-child(3) { animation-delay: 0.3s; }
.facility-card:nth-child(4) { animation-delay: 0.4s; }
.facility-card:nth-child(5) { animation-delay: 0.5s; }
.facility-card:nth-child(6) { animation-delay: 0.6s; }
.facility-card:nth-child(7) { animation-delay: 0.7s; }
.facility-card:nth-child(8) { animation-delay: 0.8s; }

@media (max-width: 992px) {
    .facility-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .facility-card:nth-child(even) {
        direction: ltr;
    }
    
    .facility-image {
        height: 300px;
    }
}

.facility-card:nth-child(even) {
    direction: rtl;
}

.facility-card:nth-child(even) > * {
    direction: ltr;
}

.facility-image {
    position: relative;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.facility-image::before,
.facility-image::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 15px;
    z-index: 1;
}

.facility-image::before {
    top: 0;
    left: 0;
    background-color: var(--primary-green);
}

.facility-image::after {
    bottom: 0;
    right: 0;
    background-color: var(--primary-green);
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 15px;
    z-index: 2;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.facility-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.facility-image:hover img {
    transform: scale(1.05);
}

.facility-content h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.facility-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .modern-hero-section {
        padding: 8rem 2rem 4rem;
    }

    .modern-hero-container {
        gap: 3rem;
    }

    .hero-main-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .modern-hero-section {
        padding: 6rem 1.5rem 4rem;
        margin-top: 80px;
    }

    .modern-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .modern-hero-content {
        text-align: center;
    }

    .hero-tag {
        font-size: 0.85rem;
        padding: 0.4rem 1.2rem;
    }

    .hero-main-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-shape-1,
    .hero-shape-2,
    .hero-shape-3 {
        opacity: 0.3;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 3rem 1rem;
    }

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

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-image {
        font-size: 8rem;
    }

    .hero-new-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-new-title {
        font-size: 2.2rem;
    }

    .hero-new-subtitle {
        font-size: 1.2rem;
    }

    .hero-new-description {
        font-size: 1rem;
    }

    .hero-new-right {
        height: 300px;
        position: relative;
        margin-top: 1.5rem;
    }

    .hero-new-image {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .hero-stat-box {
        position: relative;
        display: inline-block;
        padding: 1rem;
        width: 110px !important;
        margin: 0.5rem;
        animation: none;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-label {
        font-size: 0.75rem;
    }

    .hero-stat-1 {
        position: relative;
        bottom: auto;
        left: auto;
    }

    .hero-stat-2 {
        position: relative;
        top: auto;
        right: auto;
    }

    .hero-stat-3 {
        position: relative;
        bottom: auto;
        right: auto;
    }

    .about-content {
        flex-direction: column;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-image {
        font-size: 8rem;
    }

    .academic-section h2,
    .events-section h2,
    .achievements-section h2,
    .quick-info-section h2 {
        font-size: 1.8rem;
    }

    .highlights-grid,
    .events-container,
    .quick-info-grid {
        grid-template-columns: 1fr;
    }

    .achievement-number {
        font-size: 2.2rem;
    }

}

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    main > .container {
        padding: 2.5rem 1.5rem;
    }

    section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .hero {
        padding: 3rem 1.5rem;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-new {
        padding: 10rem 1.5rem 3rem 1.5rem;
    }

    .hero-new-container {
        gap: 2rem;
    }

    .hero-new-title {
        font-size: 3rem;
    }

    .hero-new-right {
        height: 400px;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .highlight-card {
        padding: 1.5rem;
    }

    .gallery-tabs {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .tab-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .gallery-category-filters-wrapper {
        margin-bottom: 2rem;
    }

    .gallery-category-filters {
        gap: 0.6rem;
        max-height: 50px;
    }

    .filter-btn {
        padding: 0.55rem 1rem;
        font-size: 0.9rem;
    }

    .show-more-btn {
        padding: 0.45rem 1.3rem;
        font-size: 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
}

/* Tablet and Mobile Navigation */
@media (max-width: 1024px) {
    /* Hide top header on tablet and mobile */
    .top-header {
        display: none;
    }

    .navbar {
        top: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        padding: 0.65rem 0;
        background-color: white;
        border: none;
        min-height: 72px;
        transition: background-color 0.3s ease, padding 0.3s ease;
    }

    .navbar.scrolled {
        top: 0;
        border-radius: 0;
        border: none;
        background-color: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.12);
        padding: 0;
    }

    .nav-container {
        justify-content: space-between;
        padding: 0 1.25rem;
        gap: 1rem;
    }

    .logo-img {
        max-height: 52px;
        width: auto;
        display: block;
        object-fit: contain;
        flex-shrink: 0;
    }

    .mobile-only {
        display: flex;
        align-items: center;
    }

    .nav-logo-scroll {
        display: none !important;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }

    .logo-text-wrapper {
        display: flex;
        flex-direction: column;
        line-height: 1.1;
        justify-content: center;
        text-align: left !important;
    }

    .logo-school-name {
        font-size: clamp(1.05rem, 3vw, 1.35rem);
        font-weight: 800 !important;
        color: #e42f24;
        margin: 0;
        font-family: 'Montserrat', sans-serif !important;
        letter-spacing: 0.8px;
        line-height: 1;
    }

    .logo-school-subtitle {
        font-size: clamp(0.55rem, 1.5vw, 0.75rem);
        font-weight: 600;
        color: #1b1b1b;
        margin: 2px 0 0 0;
        line-height: 1.1;
        text-transform: uppercase;
        letter-spacing: 0.35px;
        font-family: 'Montserrat', sans-serif !important;
    }

    .logo-school-estb {
        font-size: 0.55rem;
        font-weight: 600;
        color: #1b1b1b;
        margin: 1px 0 0 0;
        line-height: 1;
        font-family: 'Montserrat', sans-serif !important;
    }

    .logo-text {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        font-weight: 700;
        color: var(--primary-green);
        white-space: nowrap;
    }

    .hamburger {
        display: flex;
    }

    .hamburger span {
        background-color: #000;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 0.4rem);
        left: 0;
        right: 0;
        background-color: var(--primary-green);
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 1rem 0;
        display: none;
        border-radius: 0;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-item {
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        color: var(--white);
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        text-align: center;
        letter-spacing: 0.4px;
        border-radius: 0;
    }

    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.15);
        color: var(--white);
    }
    
    .nav-link.active {
        background-color: #ffc107;
        color: #000000;
    }
}

/* Tablet Landscape and Medium Devices */
@media (min-width: 769px) and (max-width: 1024px) {
    .pdf-modal-content {
        width: 92%;
        max-width: 900px;
        height: 90vh;
    }

    .pdf-modal-header {
        padding: 1.15rem 1.35rem;
    }

    .pdf-modal-header h3 {
        font-size: 1.25rem;
    }

    .pdf-modal-header .close-btn {
        width: 39px;
        height: 39px;
        font-size: 1.4rem;
    }

    .video-modal {
        padding: 1.25rem;
    }

    .video-modal-content {
        width: 94%;
        max-width: 950px;
        padding: 1.75rem;
    }

    .close-video-btn {
        width: 42px;
        height: 42px;
        font-size: 1.5rem;
    }

    .video-modal-title {
        font-size: 1.45rem;
        padding: 0 50px;
    }
}

/* Mobile Landscape Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .pdf-modal-content {
        width: 98%;
        height: 95vh;
        max-height: 95vh;
    }

    .pdf-modal-header {
        padding: 0.65rem 1rem;
    }

    .pdf-modal-header h3 {
        font-size: 0.95rem;
    }

    .pdf-modal-header .close-btn {
        width: 34px;
        height: 34px;
        font-size: 1.1rem;
    }

    .video-modal {
        padding: 0.5rem;
    }

    .video-modal-content {
        width: 98%;
        padding: 1.25rem;
    }

    .close-video-btn {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
        top: 0.75rem;
        right: 0.75rem;
    }

    .video-modal-title {
        font-size: 1.1rem;
        padding: 0 45px;
        margin-bottom: 0.85rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    main > .container {
        padding: 0rem 1rem;
    }

    .navbar {
        padding: 0.5rem 0;
        background-color: var(--white);
    }

    .nav-container {
        padding: 0 1rem;
        position: relative;
        justify-content: space-between;
    }

    .logo-img {
        max-height: 45px;
    }

    .logo-school-name {
        font-size: 1.5rem;
        letter-spacing: 0;
        text-align: left !important;
    }

    .logo-school-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0;
    }

    .logo-school-estb {
        font-size: 0.75rem;
        letter-spacing: 0;
    }

    .hero {
        padding: 2rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-image {
        display: none;
    }

    section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    section h3 {
        font-size: 1.1rem;
    }

    .gallery-grid,
    .documents-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .gallery-item {
        max-width: 100%;
    }

    .document-card {
        box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    }

    .document-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(45, 106, 79, 0.12);
    }

    .document-card h3,
    .document-card h4 {
        font-size: 1.1rem;
        padding: 1rem 1rem 0 1rem;
    }

    .document-card p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .highlight-card {
        padding: 1.5rem;
    }

    .highlight-icon {
        font-size: 2.5rem;
    }

    .highlight-card h3 {
        font-size: 1.1rem;
    }

    .highlight-card p {
        font-size: 0.9rem;
    }

    .btn-group {
        flex-direction: column;
        gap: 0.8rem;
        margin: 1.5rem 0;
    }

    .btn-group .btn {
        width: 100%;
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.65rem 1.2rem;
        font-size: 0.95rem;
    }

    .pdf-modal {
        padding: 0.5rem;
    }

    .pdf-modal-content {
        width: 96%;
        height: 88vh;
        max-height: none;
        border-radius: 10px;
    }

    .pdf-modal-header {
        padding: 1rem 1.25rem;
    }

    .pdf-modal-header h3 {
        font-size: 1.15rem;
    }

    .pdf-modal-header .close-btn {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }

    .pdf-header {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem;
    }

    .pdf-header h2 {
        width: 100%;
        text-align: center;
        min-width: auto;
        font-size: 1.2rem;
    }

    .pdf-controls {
        width: 100%;
        justify-content: center;
        gap: 0.25rem;
        flex-wrap: wrap;
    }

    .pdf-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }

    .pdf-btn.close-pdf-btn {
        margin-left: 0.25rem;
    }

    .page-info {
        padding: 0 0.25rem;
        font-size: 0.85rem;
    }

    .document-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .document-actions .btn {
        width: 100%;
        font-size: 0.9rem;
    }

    .video-modal {
        padding: 0.75rem;
    }

    .video-modal-content {
        width: 96%;
        height: auto;
        max-height: 88vh;
        margin: auto;
        padding: 1.5rem;
        border-radius: 10px;
    }

    .video-modal-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        padding: 0 45px;
    }

    .close-video-btn {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
        top: 1rem;
        right: 1rem;
    }

    .video-thumbnail:hover .video-play-icon {
        transform: translate(-50%, -50%) scale(1.05);
    }

    .video-thumbnail-wrapper {
        padding-bottom: 100%;
    }

    .facility-card {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }

    .facility-image {
        height: 250px;
    }

    .facility-content {
        padding: 2rem;
    }

    .facility-card:nth-child(even) {
        direction: ltr;
    }

    .facility-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .facility-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .about-content {
        gap: 1.5rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .achievements-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .achievement-number {
        font-size: 2.5rem;
    }

    .achievement-item p {
        font-size: 0.95rem;
    }

    .events-container {
        grid-template-columns: 1fr;
    }

    .gallery-tabs {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        padding: 0 0.75rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .gallery-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .gallery-category-filters-wrapper {
        margin-bottom: 1.5rem;
    }

    .gallery-category-filters {
        gap: 0.5rem;
        padding: 0 0.75rem;
        /* justify-content: flex-start; */
        max-height: 85px;
    }

    .filter-btn {
        padding: 0.5rem 0.9rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .show-more-btn {
        padding: 0.4rem 1.2rem;
        font-size: 0.8rem;
    }

    .gallery-item img,
    .gallery-item iframe {
        height: 240px;
    }
    
    .gallery-image-wrapper {
        height: 240px;
    }
}

.contact-section-heading {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--primary-green);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin: 3rem 0;
}

.contact-form-section {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.contact-cards-vertical {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 0;
}

.contact-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 8px 20px rgba(45, 106, 79, 0.15);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.contact-card h4 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.map-section {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.btn-submit {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: block;
    margin-left: auto;
}

.btn-submit:hover {
    background-color: var(--light-green);
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-section {
        order: 2;
    }

    .contact-cards-vertical {
        order: 1;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .card-icon {
        font-size: 2rem;
    }

    .contact-card h4 {
        font-size: 1.1rem;
    }

    .contact-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .gallery-tabs {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    main > .container {
        padding: 1.5rem 0.75rem;
    }

    /* Top header remains hidden on mobile */
    .top-header {
        display: none;
    }


    .logo-text {
        font-size: 1rem;
    }

    .hamburger {
        padding: 0.4rem;
    }

    .hamburger span {
        width: 22px;
        height: 2.5px;
    }

    .nav-menu {
        padding: 0.8rem 0;
    }

    .nav-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .logo-img {
        max-height: 40px;
    }

    .hero {
        padding: 1.5rem 0.75rem;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero-contact {
        padding: 2.5rem 1rem;
    }

    .hero-contact h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-contact h1::after {
        width: 60px;
        height: 3px;
        margin: 0.8rem auto 0;
    }

    .hero-contact p {
        font-size: 0.95rem;
    }

    .hero-new {
        padding: 8rem 0.75rem 2rem 0.75rem;
        margin-bottom: 2rem;
        top: -60px;
    }

    .hero-new-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }

    .hero-new-left {
        gap: 1rem;
    }

    .hero-new-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero-new-subtitle {
        font-size: 1rem;
    }

    .hero-new-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .hero-new-right {
        height: 250px;
        position: relative;
        margin: 1rem 0;
    }

    .hero-new-image {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 8px;
        overflow: hidden;
    }

    .hero-stat-box {
        position: relative;
        display: inline-block;
        width: 100px !important;
        padding: 0.75rem;
        margin: 0.5rem;
        animation: none;
    }

    .hero-stat-1 {
        position: relative;
        bottom: 0;
        left: 0;
    }

    .hero-stat-2 {
        position: relative;
        top: 0;
        right: 0;
    }

    .hero-stat-3 {
        position: relative;
        bottom: 0;
        right: 0;
    }

    .hero-stat-number {
        font-size: 1.2rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
    }

    section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    section h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .documents-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .document-card {
        padding: 0;
    }

    .document-card h3,
    .document-card h4 {
        font-size: 1rem;
        padding: 0.8rem 0.8rem 0 0.8rem;
    }

    .document-card p {
        font-size: 0.85rem;
        padding: 0 0.8rem;
        line-height: 1.5;
    }

    .document-card .btn {
        width: calc(100% - 1.6rem);
        margin: 0 0.8rem 0.8rem 0.8rem;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .highlight-card {
        padding: 1.2rem;
    }

    .highlight-icon {
        font-size: 2rem;
    }

    .highlight-card h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .highlight-card p {
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .btn-group {
        flex-direction: column;
        gap: 0.6rem;
        margin: 1.2rem 0;
    }

    .btn-group .btn {
        width: 100%;
    }

    .about-content {
        flex-direction: column;
        gap: 1rem;
    }

    .about-image {
        display: none;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .achievements-container {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .achievement-item {
        padding: 1.2rem;
    }

    .achievement-number {
        font-size: 2rem;
    }

    .achievement-item p {
        font-size: 0.9rem;
    }

    .events-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .event-card {
        padding: 1.2rem;
    }

    .event-icon {
        font-size: 2.5rem;
    }

    .event-card h3 {
        font-size: 1.1rem;
    }

    .event-card p {
        font-size: 0.85rem;
    }

    .facility-card {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        min-height: auto;
    }

    .facility-image {
        height: 200px;
    }

    .facility-content {
        padding: 1.5rem;
    }

    .facility-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .facility-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .contact-card {
        padding: 1.2rem;
    }

    .card-icon {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .contact-card h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .contact-card p {
        font-size: 0.85rem;
    }

    .contact-form-wrapper {
        gap: 1.5rem;
    }

    .video-modal {
        padding: 0.5rem;
    }

    .video-modal-content {
        width: 98%;
        height: auto;
        max-height: 92vh;
        margin: auto;
        padding: 1.25rem;
        border-radius: 8px;
    }

    .video-modal-title {
        font-size: 1.1rem;
        margin-bottom: 0.9rem;
        padding: 0 40px;
    }

    .close-video-btn {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
        top: 0.85rem;
        right: 0.85rem;
    }

    .pdf-modal {
        padding: 0.25rem;
    }

    .pdf-modal-content {
        width: 98%;
        height: 85vh;
        max-height: none;
        border-radius: 8px;
    }

    .pdf-modal-header {
        padding: 0.85rem 1rem;
    }

    .pdf-modal-header h3 {
        font-size: 1rem;
        letter-spacing: 0.2px;
    }

    .pdf-modal-header .close-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
        border-width: 1.5px;
    }

    .pdf-header h2 {
        font-size: 1rem;
    }

    .pdf-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }

    .page-info {
        font-size: 0.75rem;
    }

    .video-play-icon,
    .close-video-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .map-section {
        margin: 1.5rem 0;
        padding: 1rem 0;
    }

    label {
        margin-bottom: 0.4rem;
        font-size: 0.9rem;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="number"],
    input[type="file"],
    select,
    textarea {
        padding: 0.65rem;
        font-size: 16px;
    }

    textarea {
        min-height: 100px;
    }

    .form-container {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .btn-submit {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.95rem;
    }
}


main > .container {
    padding: 0rem 2rem;
}

section h2 {
    color: var(--primary-green);
    margin-bottom: 2.5rem;
    font-weight: 700;
    font-size: 2.2rem;
}

section h3 {
    color: var(--light-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Enhanced Mobile Responsiveness */

/* Extra Large Screens (1440px and above) - Optional Optimizations */
@media (min-width: 1440px) {
    .section-container {
        max-width: 1400px;
    }
    
    .container {
        max-width: 1400px;
    }
}

/* Large Tablets (1024px and below) */
@media (max-width: 1024px) {
    .navbar {
        padding: 0.6rem 0;
        left: 0;
        right: 0;
        margin: 0;
        border-radius: 0;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    main > .container {
        padding: 2.5rem 1.5rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .facility-card {
        min-height: 320px;
    }
    
    .facility-image {
        max-height: 300px;
    }
    
    .facility-content {
        padding: 2rem;
    }
    
    .facility-content h3 {
        font-size: 1.5rem;
    }
    
    .facility-content p {
        font-size: 0.95rem;
    }
}

/* Medium Tablets (768px and below) */
@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 0.5rem 0;
        left: 0;
        right: 0;
        margin: 0;
        border-radius: 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo {
        flex: 1;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .alumni-btn {
        font-size: 0.85rem;
    }
    
    /* Main Content */
    main > .container {
        padding: 2rem 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    section h3 {
        font-size: 1rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.65rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .btn-group {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-group .btn {
        width: 100%;
    }
    
    /* Cards and Grids */
    .highlights-grid,
    .event-container,
    .achievement-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .highlight-card,
    .event-card {
        padding: 1.5rem;
    }
    
    .highlight-icon,
    .event-icon {
        font-size: 2.5rem;
    }
    
    /* Announcements Section - Mobile Responsive */
    .announcements-section {
        padding: 2rem 0;
    }

    .announcements-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .announcement-cards-column {
        height: 500px;
        padding: 1rem;
    }

    .announcement-card {
        padding: 1rem;
    }

    .icon-circle {
        width: 45px;
        height: 45px;
    }

    .icon-circle i {
        font-size: 1.1rem;
    }

    .announcement-details .name {
        font-size: 1rem;
    }

    .announcement-description {
        font-size: 0.85rem;
    }

    .announcement-meta {
        font-size: 0.8rem;
    }

    .follow-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .announcement-heading-column {
        height: 500px;
        border-radius: 12px;
        overflow: hidden;
    }

    .announcement-preview-container {
        padding: 1rem;
        height: 100%;
    }

    .preview-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .preview-header-text h3 {
        font-size: 1.1rem;
    }

    .preview-pdf-container {
        min-height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    }
    
    .preview-pdf-iframe {
        display: none;
    }
    
    .preview-pdf-container::before {
        content: '';
        display: block;
        width: 80px;
        height: 80px;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23016103"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zm-1 2l5 5h-5V4zM8 18h8v-2H8v2zm0-4h8v-2H8v2zm0-4h4v-2H8v2z"/></svg>');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.4;
    }

    .preview-view-full-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(1, 97, 3, 0.3);
    }

    /* Activities/Events Section - Horizontal Scroll */
    .events-section .events-container {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1.5rem;
        padding: 1rem;
        margin: 0 -1rem;
    }
    
    .events-section .event-card {
        flex: 0 0 280px;
        min-width: 280px;
        scroll-snap-align: start;
    }
    
    /* Facility Cards */
    .facility-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        min-height: auto;
    }
    
    .facility-image {
        height: 250px;
        max-height: 250px;
    }
    
    .facility-content {
        padding: 1.5rem;
    }
    
    .facility-card:nth-child(even) {
        direction: ltr;
    }
    
    .facility-card:nth-child(even) > * {
        direction: ltr;
    }
    
    .facility-content h3 {
        font-size: 1.2rem;
    }
    
    .facility-content p {
        font-size: 0.9rem;
    }
    
    /* Forms */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="number"],
    input[type="file"],
    select,
    textarea {
        padding: 0.7rem;
        font-size: 16px;
        width: 100%;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .btn-submit {
        width: 100%;
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Grid Utilities */
    div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Small Phones (480px and below) */
@media (max-width: 480px) {
    /* Navigation */
    .navbar {
        padding: 0.5rem 0;
        left: 0px;
        right:  0px;
        margin: 0;
        top: 0px;
        border-radius: 0px;
        border-width: 1.5px;
    }
    
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .logo-img {
        max-height: 38px;
    }

    .logo-school-name {
        font-size: 1.5rem;
        letter-spacing: 0;
        text-align: left !important;
    }

    .logo-school-subtitle {
        font-size: 0.75rem;
    }

    .logo-school-estb {
        font-size: 0.75rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }
    
    .nav-logo {
        width: auto;
        gap: 0.5rem;
    }
    
    .logo-img {
        max-height: 40px;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .hamburger {
        padding: 0.3rem;
    }
    
    .hamburger span {
        width: 20px;
        height: 2.5px;
    }
    
    .nav-menu {
        padding: 0.5rem 0;
    }
    
    .nav-link {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        color: var(--white);
        border-radius: 0;
    }
    
    .alumni-btn {
        background-color: #ffc107;
        color: var(--primary-green);
        font-size: 0.9rem;
    }

    .logo-img {
        max-height: 50px;
    }

    .modern-hero-section {
        padding: 4rem 1rem 3rem;
        margin-top: 70px;
    }

    .modern-hero-container {
        gap: 2rem;
    }

    .hero-tag {
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
    }

    .hero-main-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-image-wrapper {
        max-width: 300px;
    }
    
    /* Main Content */
    main > .container {
        padding: 1.5rem 0.75rem;
    }
    
    body {
        font-size: 14px;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    section h3 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn-group {
        flex-direction: column;
        gap: 0.75rem;
        margin: 1.5rem 0;
    }
    
    .btn-group .btn {
        width: 100%;
    }
    
    /* Cards */
    .highlight-card,
    .event-card,
    .document-card {
        padding: 1rem;
    }
    
    .highlight-card h3,
    .event-card h3 {
        font-size: 1rem;
    }
    
    .highlight-card p,
    .event-card p {
        font-size: 0.85rem;
    }
    
    .highlight-icon,
    .event-icon {
        font-size: 2rem;
    }
    
    /* All Grid Layouts */
    .highlights-grid,
    .event-container,
    .achievement-container,
    .documents-grid,
    .gallery-grid,
    .contact-cards-vertical {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-grid {
        margin-top: 1.25rem;
    }
    
    .gallery-item {
        max-width: 100%;
        border-radius: 8px;
    }
    
    .gallery-image-wrapper {
        height: 220px;
    }
    
    /* Announcements Section - Small Mobile */
    .announcements-section {
        padding: 1.5rem 0;
    }

    .announcements-section h2 {
        font-size: 1.8rem;
    }

    .announcements-container {
        padding: 0 0.75rem;
        gap: 1.5rem;
    }

    .announcement-cards-column {
        height: 400px;
        padding: 0.75rem;
    }

    .announcement-card {
        padding: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .announcement-content {
        gap: 0.75rem;
    }

    .icon-circle {
        width: 40px;
        height: 40px;
    }

    .icon-circle i {
        font-size: 1rem;
    }

    .announcement-details .name {
        font-size: 0.95rem;
    }

    .announcement-description {
        font-size: 0.8rem;
    }

    .announcement-meta {
        font-size: 0.75rem;
    }

    .follow-btn {
        padding: 0.45rem 0.85rem;
        font-size: 0.8rem;
    }

    .announcement-heading-column {
        height: 400px;
        border-radius: 12px;
        overflow: hidden;
    }

    .announcement-preview-container {
        padding: 0.85rem;
        gap: 0.75rem;
        height: 100%;
    }

    .preview-header {
        gap: 0.6rem;
        padding-bottom: 0.75rem;
    }

    .preview-icon {
        width: 40px;
        height: 40px;
    }

    .preview-icon i {
        font-size: 1rem;
    }

    .preview-header-text h3 {
        font-size: 1rem;
    }

    .preview-meta {
        font-size: 0.75rem;
    }

    .preview-pdf-container {
        min-height: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    }
    
    .preview-pdf-iframe {
        display: none;
    }
    
    .preview-pdf-container::before {
        content: '';
        display: block;
        width: 70px;
        height: 70px;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23016103"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zm-1 2l5 5h-5V4zM8 18h8v-2H8v2zm0-4h8v-2H8v2zm0-4h4v-2H8v2z"/></svg>');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.4;
    }

    .preview-view-full-btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.95rem;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(1, 97, 3, 0.3);
    }

    /* Activities/Events Section - Horizontal Scroll */
    .events-section .events-container {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding: 1rem 0.75rem;
        margin: 0 -0.75rem;
    }
    
    .events-section .event-card {
        flex: 0 0 260px;
        min-width: 260px;
        scroll-snap-align: start;
    }
    
    /* Facility Cards */
    .facility-card {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
        border-radius: 0;
    }
    
    .facility-image {
        height: 200px;
        order: -1;
    }
    
    .facility-content {
        padding: 1.2rem;
    }
    
    .facility-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .facility-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* About Section */
    .about-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .about-text h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .about-image {
        font-size: 6rem;
    }
    
    /* Tables */
    table {
        font-size: 0.85rem;
    }
    
    th, td {
        padding: 0.6rem 0.4rem;
    }
    
    /* Forms */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="number"],
    input[type="file"],
    select,
    textarea {
        padding: 0.6rem;
        font-size: 16px;
    }
    
    textarea {
        min-height: 80px;
    }
    
    .form-container {
        padding: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .btn-submit {
        width: 100%;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Modals */
    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }
    
    .pdf-modal-content {
        width: 96%;
        height: 88vh;
    }
    
    .pdf-modal-header {
        padding: 1rem 1.15rem;
    }
    
    .pdf-modal-header h3 {
        font-size: 1.1rem;
    }

    .pdf-modal-header .close-btn {
        width: 37px;
        height: 37px;
    }
    
    .pdf-header {
        padding: 0.8rem;
        gap: 0.5rem;
    }
    
    .pdf-header h2 {
        font-size: 1.1rem;
    }
    
    .pdf-controls {
        gap: 0.2rem;
    }
    
    .pdf-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        min-width: 32px;
        height: 32px;
    }
    
    .page-info {
        font-size: 0.8rem;
        min-width: 70px;
    }
    
    /* Grid Utilities */
    div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding-left: 25px;
    }
    
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    .facility-image::before {
    top: 13px;
    left: 14px;
    background-color: var(--primary-green);
}

.facility-image::after {
    bottom: 10px;
    right: 14px;
    background-color: var(--primary-green);
}
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 3rem 0 2rem;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 0.7rem 1.2rem;
    background-color: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.pagination-btn:hover {
    background-color: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pagination-prev:disabled,
.pagination-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.pagination-numbers {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.pagination-number {
    padding: 0.6rem 0.9rem;
    background-color: var(--light-gray);
    color: var(--dark-text);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.pagination-number:hover {
    background-color: var(--light-green);
    color: var(--white);
    border-color: var(--light-green);
}

.pagination-number.active {
    background-color: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.pagination-ellipsis {
    padding: 0.6rem 0.4rem;
    color: var(--dark-text);
}

/* Extra Small Phones (360px and below) */
@media (max-width: 360px) {
    .navbar {
        margin: 0;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .logo-text {
        font-size: 0.85rem;
    }
    
    section h2 {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .highlight-icon,
    .event-icon {
        font-size: 1.5rem;
    }
    
    .facility-image {
        height: 180px;
    }
}

/* ==========================================
   HERO SLIDER SECTION FROM INDEX1
   ========================================== */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* HERO STYLES */
.hero-slider-section {
    --hero-primary: #ffc107;
    --hero-text: #ffffff;
    position: relative;
    height: calc(100vh - 130px);
    min-height: calc(100vh - 130px);
    width: 100%;
    margin-top: 130px;
    overflow: hidden;
    background-color: #1a1a1a;
    font-family: "Open Sans", sans-serif;
}

/* Hero Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 21;
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    background: #000;
}

/* Video Loading Indicator */
.video-loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 23;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    font-size: 1rem;
}

.video-loading-indicator .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Audio Prompt Overlay */
.audio-prompt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease;
    transition: opacity 0.3s ease;
    pointer-events: none;
    cursor: default;
}

.audio-prompt-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.audio-prompt-icon {
    width: 60px;
    height: 60px;
    color: #ffffff;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.audio-prompt-content p {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .audio-prompt-content {
        padding: 1.5rem 2rem;
    }
    
    .audio-prompt-icon {
        width: 50px;
        height: 50px;
    }
    
    .audio-prompt-content p {
        font-size: 1rem;
    }
}

/* Audio Toggle Button */
.hero-audio-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(12, 12, 12, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.hero-audio-toggle:hover {
    background: rgba(20, 20, 20, 0.95);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.9);
}

.hero-audio-toggle .audio-icon {
    width: 24px;
    height: 24px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.hero-audio-toggle .audio-on {
    display: none;
}

.hero-audio-toggle.unmuted .audio-muted {
    display: none;
}

.hero-audio-toggle.unmuted .audio-on {
    display: block;
}
.hero-slider-section .card {
    display: none;
    position: absolute; left: 0; top: 0; background-position: center; background-size: cover; box-shadow: 6px 6px 10px 2px rgba(0, 0, 0, 0.6);
}
.hero-slider-section .card::after {
    content: ""; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.45) 40%, transparent 85%);
}
.hero-slider-section .card-content { display: none; position: absolute; left: 0; top: 0; color: var(--hero-text); padding: 0 10px 0 12px; width: 165px; box-sizing: border-box; }
.hero-slider-section .content-place { margin-top: 6px; font-size: 12px; font-weight: 500; }
.hero-slider-section .content-title-1, .hero-slider-section .content-title-2 { font-weight: 600; font-size: 14px; font-family: "Inter", sans-serif; text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5); line-height: 1.1; }
.hero-slider-section .details { 
    z-index: 25; 
    position: absolute; 
    top: 50%; 
    left: 80px; 
    text-align: left; 
    transform: translateY(-50%);
}
.hero-slider-section .details .place-box { height: 46px; overflow: hidden; }
.hero-slider-section .details .place-box .text { padding-top: 16px; padding-left: 40px; font-size: 20px; position: relative; color: #ffc107; }
.hero-slider-section .details .title-1, .hero-slider-section .details .title-2 { font-weight: 600; font-size: 72px; font-family: "Inter", sans-serif; line-height: 1; text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8); color: var(--hero-primary); margin: 0; }
.hero-slider-section .details .title-box-1, .hero-slider-section .details .title-box-2 { margin-top: 50px; height: 70px; overflow: hidden; }
.hero-slider-section .details .desc { margin-top: 25px; width: 500px; color: #fdfdfd; margin-left: 0; margin-right: 0; text-shadow: 1px 1px 12px rgba(0, 0, 0, 0.9); font-weight: 500; }
.hero-slider-section .details .cta { width: 500px; margin-top: 24px; display: flex; align-items: center; justify-content: flex-start; margin-left: 0; margin-right: 0; }
.hero-slider-section .details .cta .bookmark { border: none; background-color: var(--hero-primary); width: 36px; height: 36px; border-radius: 99px; color: #2d6a4f; display: grid; place-items: center; cursor: pointer; }
.hero-slider-section .details .cta .bookmark svg { width: 20px; height: 20px; }
.hero-slider-section .details .cta .discover:hover { background-color: white; color: #2d6a4f; }

.hero-slider-section .pagination { position: absolute; display: inline-flex; align-items: center; }
.hero-slider-section .pagination .arrow { z-index: 60; width: 50px; height: 50px; border-radius: 999px; border: 2px solid #ffffff55; display: grid; place-items: center; cursor: pointer; transition: all 0.3s ease; }
.hero-slider-section .pagination .arrow:hover { background-color: #ffffff22; }
.hero-slider-section .pagination .arrow:nth-child(2) { margin-left: 20px; }
.hero-slider-section .pagination .arrow svg { width: 24px; height: 24px; stroke-width: 2; color: #ffffff99; }
.hero-slider-section .pagination .progress-sub-container { margin-left: 24px; z-index: 60; width: 500px; height: 50px; display: flex; align-items: center; }
.hero-slider-section .pagination .progress-sub-background { width: 500px; height: 3px; background-color: #ffffff33; }
.hero-slider-section .pagination .progress-sub-foreground { height: 3px; background-color: var(--hero-primary); }
.hero-slider-section .slide-numbers { width: 50px; height: 50px; overflow: hidden; z-index: 60; position: relative; }
.hero-slider-section .slide-numbers .item { width: 50px; height: 50px; position: absolute; color: white; top: 0; left: 0; display: grid; place-items: center; font-size: 32px; font-weight: bold; }
.hero-slider-section .cover { position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-color: #fff; z-index: 150; }

/* Recognition Section */
.recognition-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(64, 145, 108, 0.05) 0%, rgba(45, 106, 79, 0.05) 100%);
}

.recognition-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.recognition-image {
    flex: 0 0 40%;
}

.recognition-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(45, 106, 79, 0.2);
}

.recognition-content {
    flex: 1;
}

.recognition-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.recognition-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.recognition-slogan {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffc107;
    font-style: italic;
}

@media (max-width: 768px) {
    .recognition-container {
        flex-direction: column;
    }
    
    .recognition-image {
        flex: 0 0 100%;
    }
    
    .recognition-content h2 {
        font-size: 2rem;
    }

    /* Hero Slider Mobile Responsive */
    .hero-slider-section {
        margin-top: 75px;
        height: calc(100vh - 75px);
        min-height: calc(100vh - 75px);
    }

    .hero-slider-section .details {
        top: 50%;
        left: 50%;
        right: auto;
        width: calc(100% - 40px);
        text-align: center;
    }

    .hero-slider-section .details .title-1,
    .hero-slider-section .details .title-2 {
        font-size: 36px;
        line-height: 1.1;
        display: block;
        width: 100%;
    }

    .hero-slider-section .details .title-box-1,
    .hero-slider-section .details .title-box-2 {
        margin-top: 20px;
        height: auto;
        overflow: visible;
    }

    .hero-slider-section .details .desc {
        width: 100%;
        max-width: 100%;
        font-size: 14px;
        margin-top: 15px;
        text-align: center;
    }

    .hero-slider-section .details .cta {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .hero-slider-section .pagination {
        display: none !important;
    }
    
    /* Mobile Video Adjustments */
    .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        background: #000;
    }
    
    .hero-video-container {
        height: 100%;
        width: 100%;
        overflow: hidden;
        background: #000;
    }
    
    .hero-audio-toggle {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .hero-audio-toggle .audio-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .hero-slider-section {
        margin-top: 75px;
        height: calc(100vh - 75px);
        min-height: calc(100vh - 75px);
    }

    .hero-slider-section .details {
        top: 50%;
        left: 50%;
        right: auto;
        width: calc(100% - 30px);
        text-align: center;
    }

    .hero-slider-section .details .title-1,
    .hero-slider-section .details .title-2 {
        font-size: 28px;
        line-height: 1.2;
        display: block;
        width: 100%;
    }

    .hero-slider-section .details .title-box-1,
    .hero-slider-section .details .title-box-2 {
        margin-top: 15px;
        height: auto;
        overflow: visible;
    }

    .hero-slider-section .details .desc {
        font-size: 13px;
        margin-top: 12px;
        line-height: 1.4;
        text-align: center;
    }
    
    /* Extra Small Mobile Video */
    .hero-audio-toggle {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .hero-audio-toggle .audio-icon {
        width: 18px;
        height: 18px;
    }
}
