:root {
    --primary-color: #004800;
    --secondary-color: rgb(225, 76, 30);
    --text-color: #333;
    --light-text: #fff;
    --bg-light: #f4f6f9;
    --bg-dark: #002800;
    --header-height: 80px;
    --transition: all 0.3s ease;
}

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

::selection {
    background-color: var(--secondary-color);
    color: #fff;
}

::-moz-selection {
    background-color: var(--secondary-color);
    color: #fff;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

#page-content {
    margin: 0;
    padding: 0;
}

#page-content> :first-child {
    margin-top: 0 !important;
}

#page-content> :last-child {
    margin-bottom: 0 !important;
}

h1,
h2,
h3,
h4,
.nav-links a {
    font-family: 'Outfit', sans-serif;
}

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

.section-padding {
    padding: 80px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.flex-row-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

/* Top Bar */
/* Top Header */
.top-header {
    background: #fff;
    padding: 15px 0;
    margin-top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.top-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-header-left,
.top-header-right {
    flex: 1;
    display: flex;
}

.top-header-left {
    justify-content: flex-start;
}

.top-header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.top-header-right {
    justify-content: flex-end;
    gap: 15px;
}

.logo img {
    height: 70px;
}

.social-icons-top {
    display: flex;
    gap: 15px;
}

.social-icons-top a {
    color: var(--primary-color);
    font-size: 18px;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    transition: var(--transition);
    text-decoration: none;
}

.social-icons-top a i {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.social-icons-top a:hover {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

.top-btn {
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 30px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-btn {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.login-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.login-btn.active {
    background: var(--primary-color);
    color: #fff;
}

.admission-btn {
    background: var(--secondary-color);
    color: #fff;
    border: 2px solid var(--secondary-color);
}

.admission-btn:hover {
    background: transparent;
    color: var(--secondary-color);
}

/* Bottom Nav Header */
.bottom-header {
    background: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.bottom-header.scrolled {
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    transition: var(--transition);
}

.bottom-header.scrolled .header-content {
    justify-content: space-between;
    flex-direction: row-reverse;
}

.justify-between {
    justify-content: space-between !important;
}

.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: var(--transition);
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

.nav-links li {
    margin: 0 14px;
    position: relative;
}

.nav-links li:first-child {
    margin-left: 0;
}

.nav-links>li>a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 15.5px;
    transition: var(--transition);
    padding: 8px 0;
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bottom-header.scrolled .nav-links>li>a {
    color: var(--primary-color);
}

.nav-links>li>a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-links>li>a.active::after,
.nav-links>li>a:hover::after {
    width: 100%;
}

/* Dropdown Arrow Icon */
.nav-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 210px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 9999;
    border-top: 3px solid var(--secondary-color);
}

/* Small pointer arrow above dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--secondary-color);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.dropdown-menu li a::after {
    display: none !important;
}

.dropdown-menu li a:hover {
    background: rgba(0, 72, 0, 0.07);
    color: var(--primary-color);
    padding-left: 24px;
}

.dropdown-menu li a i {
    color: var(--secondary-color);
    font-size: 13px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.sticky-logo {
    display: none;
    height: 50px;
    transition: var(--transition);
}

.bottom-header.scrolled .sticky-logo {
    display: block;
    animation: fadeInLeft 0.5s ease;
}

.sticky-logo img {
    height: 100%;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Hero Section */
.hero {
    position: relative;
    height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    clip-path: ellipse(120% 100% at 50% 0%);
    margin-bottom: -40px;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 72, 0, 0.5);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content p {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.breadcrumbs,
.breadcrumb-trail {
    font-size: 15px;
    opacity: 0.95;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumbs a,
.breadcrumb-trail a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
}

.breadcrumbs a:hover,
.breadcrumb-trail a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.breadcrumbs span,
.breadcrumb-trail span,
.breadcrumbs i,
.breadcrumb-trail i {
    color: #fff;
}

.breadcrumbs a.active,
.breadcrumbs span.active,
.breadcrumb-trail span.active,
.breadcrumb-trail span:last-child {
    font-weight: 700;
    color: #fff !important;
    opacity: 1;
}

.breadcrumb-trail span:not(.active):not(:last-child) {
    opacity: 0.6;
    margin: 0 4px;
}

/* About Section */
.about {
    position: relative;
    background-color: #fff;
    color: var(--text-color);
    padding: 100px 0;
    z-index: 1;
}

.about .grid-2 {
    display: grid;
    align-items: center;
    gap: 60px;
}

.about-images-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
}

.about-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 80%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.about-img-1 img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 10px solid #fff;
    z-index: 2;
}

.about-img-2 img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0, 72, 0, 0.3);
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translate(-50%, -50%);
    }

    50% {
        transform: translate(-50%, -60%);
    }

    100% {
        transform: translate(-50%, -50%);
    }
}

.exp-icon {
    font-size: 40px;
}

.exp-num {
    font-size: 30px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.exp-desc {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
    margin-top: 10px;
}

.about .section-title-alt {
    color: var(--primary-color);
    font-size: 42px;
    margin-bottom: 25px;
    position: relative;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.about .about-text {
    max-width: 100%;
    position: relative;
    z-index: 3;
}

.about .about-text p {
    color: #555;
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-feature-list {
    list-style: none;
    margin-bottom: 35px;
}

.about-feature-list li {
    font-size: 17px;
    color: #333;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-feature-list i {
    color: var(--secondary-color);
    font-size: 20px;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

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

.btn-primary i {
    margin-left: 10px;
    transition: transform 0.3s;
}

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

.mt-30 {
    margin-top: 30px;
}

/* Why Choose Us */
.why-choose-us {
    background: linear-gradient(135deg, #c6ecd9 0%, #fff 100%);
    position: relative;
}

.why-choose-us .container {
    position: relative;
    z-index: 1;
}

.bg-light {
    background: var(--bg-light);
}

.section-title {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 0;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.features-grid.zig-zag {
    align-items: start;
    padding-bottom: 40px;
    /* Space for the shifted cards */
}

.features-grid.zig-zag .feature-card:nth-child(even) {
    transform: translateY(40px);
}

.feature-card {
    padding: 40px 30px;
    background: #fafffb;
    border-radius: 0 40px 0 40px;
    border: 1px solid var(--primary-color);
    transition: var(--transition);
    box-shadow: none;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.features-grid.zig-zag .feature-card:nth-child(even):hover {
    transform: translateY(35px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.icon-circle {
    width: 65px;
    height: 65px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 0 25px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.feature-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.mobile-only-dots {
    display: none;
}

/* Academic Overview */
.academic-overview {
    background-color: #fff;
}

.edu-icon-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.edu-icon-header i {
    font-size: 32px;
    color: var(--secondary-color);
}

.edu-column h4 {
    font-size: 26px;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
}

.edu-column p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.check-list i {
    color: var(--secondary-color);
    font-size: 18px;
}

/* Events Slider */
.dark-bg {
    background-color: var(--primary-color);
    background-image: linear-gradient(rgba(0, 40, 0, 0.8), rgba(0, 40, 0, 0.8)), url('image/new/slider1.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}


.dark-bg::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--primary-color);
    background-image: linear-gradient(rgba(0, 40, 0, 0.8), rgba(0, 40, 0, 0.8)), url('image/new/slider1.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    clip-path: ellipse(60% 100% at 50% 0%);
}

.light-text {
    color: #fff !important;
}

.events-slider {
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 40px;
}

.slider-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
    padding: 10px 5px;
}

.event-card {
    flex: 0 0 calc(25% - 15px);
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    color: var(--primary-color);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.event-card:hover .event-img-wrapper img {
    transform: scale(1.1);
}

.event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.event-date span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 2px;
}

.event-info {
    padding: 25px 20px;
}

.event-info h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
    min-height: 50px;
}

.event-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slider-btn {
    background: #fff;
    color: var(--primary-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    position: absolute;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.prev {
    left: -50px;
}

.next {
    right: -50px;
}

/* Testimonials */
.new-testimonial-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 40px 0px 0px 0px;
}

.testimonial-left {
    flex: 1;
    max-width: 45%;
}

.testimonial-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.testimonial-main-title {
    font-size: 46px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin: 0;
}

.testimonial-right {
    flex: 1.2;
    display: flex;
    align-items: center;
    gap: 40px;
}

.testimonial-main-content {
    flex: 1;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonial-slider-track {
    position: relative;
    width: 100%;
}

.testimonial-item {
    display: none;
    animation: fadeIn 0.8s ease;
}

.testimonial-item.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-avatar-wrapper {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    padding: 15px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonial-content-area {
    width: 100%;
}

.testimonial-author {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.testimonial-quote {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    min-height: 80px;
}

.testimonial-stars {
    color: var(--secondary-color);
    font-size: 14px;
}

.testimonial-dots-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
    position: relative;
    bottom: 5px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* New Video Admission Section */
.video-admission-section {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.admission-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.video-content-wrapper {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: revealContent 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 2s;
}

.animated-label {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.video-admission-text h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.video-admission-text p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.video-cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-enroll {
    padding: 15px 45px;
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(225, 76, 30, 0.3);
}

.btn-enroll:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-contact-video {
    padding: 15px 45px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.btn-contact-video:hover {
    background: #fff;
    color: var(--primary-color);
}

@keyframes blurVideo {
    to {
        filter: blur(10px);
    }
}

@keyframes overlayDim {
    to {
        opacity: 1;
    }
}

@keyframes revealContent {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradient Admission Section */
.admission-gradient-section {
    position: relative;
    min-height: 500px;
    background-image: linear-gradient(to right, rgba(232, 245, 232, 0) 0%, #065406c9 71%), url(image/banner.JPG);
    background-size: cover;
    background-position: right center;
    display: flex;
    align-items: right;
    padding: 80px 0;
}

.gradient-wrapper {
    display: flex;
    width: 100%;
}

.gradient-content {
    max-width: 550px;
    width: 100%;
    margin-left: auto;
    text-align: left;
}

.gradient-label {
    display: inline-block;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.gradient-content h2 {
    font-size: 52px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 800;
}

.gradient-content p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 35px;
    line-height: 1.7;
}

.gradient-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;

}

.gradient-btns .btn-primary {
    padding: 14px 35px;
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: var(--transition);
}

.gradient-btns .btn-outline {
    padding: 14px 35px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: var(--transition);
}

.gradient-btns a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .admission-gradient-section {
        background-image: linear-gradient(to bottom, rgba(232, 245, 232, 0.2) 0%, rgba(232, 245, 232, 1) 100%), url('image/banner.JPG');
        background-position: center;
        text-align: center;
        padding: 60px 0;
    }

    .gradient-wrapper {
        justify-content: center;
    }

    .gradient-content {
        text-align: center;
        max-width: 100%;
    }

    .gradient-btns {
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .video-admission-text h1 {
        font-size: 45px;
    }

    .video-admission-section {
        height: 500px;
    }
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 40px 0 0;
    margin-top: 0;
}

/* Prevent accidental whitespace between major stacked blocks */
.top-header,
.bottom-header,
.footer {
    margin: 0 !important;
}

#page-content+.footer {
    margin-top: 0 !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    padding-bottom: 30px;
}

.footer-info h3 {
    font-size: 20px;
    margin: 0 0 15px;
}

.footer-info p {
    margin-bottom: 15px;
    font-size: 13.5px;
    opacity: 0.8;
    line-height: 1.5;
    text-align: justify;
}

.footer-info p i {
    color: var(--secondary-color);
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 100px;
    border-radius: 50px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: #fff;
    color: var(--primary-color);
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
}

.social-icons a i {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.social-icons a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.social-icons a:hover i {
    color: #fff;
}

.footer-links h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: #e14c1e;
}

/* Quick Link Styling inherited from .footer-links */


.footer-events h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-events h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: #e14c1e;
}

.footer-event-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.event-thumb {
    flex: 0 0 65px;
    height: 65px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.footer-event-item:hover .event-thumb img {
    transform: scale(1.1);
}

.event-info-footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-info-footer a {
    color: #fff;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.3;
    opacity: 0.85;
    transition: var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-info-footer a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.event-date {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.footer-event-item a:hover {
    opacity: 1;
    color: rgb(225, 76, 30);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links p {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-links p i {
    color: #e14c1e;
    font-size: 16px;
    margin-top: 4px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.footer-links i {
    color: #e14c1e;
    margin-right: 10px;
    font-size: 18px;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: rgb(225, 76, 30);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    font-size: 14px;
    opacity: 0.6;
}

.footer-bottom-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: rgb(225, 76, 30);
}

.footer-bottom-links span {
    margin: 0 5px;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .new-testimonial-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .testimonial-left {
        max-width: 100%;
    }

    .testimonial-right {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .cta-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

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

@media (max-width: 768px) {

    .testimonial-left {
        max-width: 100%;
        margin-top: 20px;
    }

    .grid-2,
    .footer-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-grid.zig-zag {
        padding-bottom: 0;
    }

    .features-grid.zig-zag .feature-card:nth-child(even) {
        transform: translateY(0);
    }

    .features-grid.zig-zag .feature-card:nth-child(even):hover {
        transform: translateY(-5px);
    }

    .hero h1 {
        font-size: 36px;
    }

    .top-header-wrapper {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .top-header-center {
        order: -1;
    }

    .top-header-left,
    .top-header-right {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .about .about-text {
        max-width: 100%;
        padding-right: 0;
        margin-top: 10px;
    }

    .about-images-wrapper {
        margin-bottom: 30px;
    }

    .testimonial-main-title {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-image {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* ===== Admission Popup ===== */
.admission-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.admission-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.admission-popup-card {
    background: #fff;
    width: 340px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    transform: scale(0.85) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.admission-popup-overlay.active .admission-popup-card {
    transform: scale(1) translateY(0);
}

.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.popup-close-btn:hover {
    background: var(--secondary-color);
}

.popup-image-area {
    position: relative;
    background: linear-gradient(160deg, #003d00 0%, #007000 60%, #004800 100%);
    padding: 25px 20px 0;
    text-align: center;
    min-height: 320px;
    overflow: hidden;
}

.popup-image-area::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}

.popup-logo {
    margin-bottom: 12px;
}

.popup-logo img {
    height: 55px;
    border-radius: 50px;
    background: #fff;
    padding: 4px;
}

.popup-headline h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.popup-headline h2 span {
    color: #ffcc00;
}

.popup-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.popup-students-img {
    width: 100%;
    display: block;
    margin-top: 10px;
    border-radius: 0;
    object-fit: cover;
    max-height: 180px;
}

.popup-footer-bar {
    background: #fff;
    padding: 18px 20px;
    text-align: center;
    border-top: 3px solid var(--primary-color);
}

.popup-admission-btn {
    display: block;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.popup-admission-btn:hover {
    background: var(--secondary-color);
}

.popup-contact {
    font-size: 13px;
    color: #555;
    margin: 0;
}

.popup-contact i {
    color: var(--secondary-color);
    margin-right: 6px;
}

/* ===== Floating Admission Button ===== */
.floating-admission-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 72, 0, 0.45);
    animation: floatPulse 2.5s ease-in-out infinite;
    transition: background 0.3s ease, transform 0.3s ease;
}

.floating-admission-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.07);
    animation: none;
}

.floating-admission-btn i {
    font-size: 22px;
    flex-shrink: 0;
}

.floating-label {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes floatPulse {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(0, 72, 0, 0.45);
        transform: translateY(0);
    }

    50% {
        box-shadow: 0 14px 35px rgba(0, 72, 0, 0.6);
        transform: translateY(-6px);
    }
}

/* Curriculum Page Interactive Timeline */
.curriculum-interactive {
    background: var(--bg-light);
    overflow: hidden;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #e0e6ed;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item.right-timeline {
    left: 50%;
}

.timeline-content {
    padding: 0;
    position: relative;
    border-radius: 15px;
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.timeline-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    right: -12px;
    top: 30px;
    border: 4px solid #fff;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.right-timeline .timeline-dot {
    left: -12px;
}

.curriculum-stage-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    z-index: 2;
}

.curriculum-stage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Connective Arrows */
.timeline-item:not(.right-timeline) .curriculum-stage-card::after {
    content: " ";
    position: absolute;
    top: 32px;
    right: -15px;
    border-width: 15px 0 15px 15px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.right-timeline .curriculum-stage-card::after {
    content: " ";
    position: absolute;
    top: 32px;
    left: -15px;
    border-width: 15px 15px 15px 0;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
}

.stage-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 72, 0, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.timeline-item:hover .stage-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(10deg);
}

.right-timeline .stage-icon {
    background: rgba(225, 76, 30, 0.08);
    color: var(--secondary-color);
}

.timeline-item.right-timeline:hover .stage-icon {
    background: var(--secondary-color);
    color: #fff;
}

.stage-details h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.stage-details h3 span {
    font-size: 13px;
    background: #f0f4f8;
    color: #555;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.right-timeline .stage-details h3 span {
    background: rgba(225, 76, 30, 0.1);
    color: var(--secondary-color);
}

.stage-details p {
    color: #666;
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.stage-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stage-highlights span {
    font-size: 13px;
    color: #444;
    background: #fff;
    border: 1px solid #eee;
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.stage-highlights span i {
    color: var(--primary-color);
}

.right-timeline .stage-highlights span i {
    color: var(--secondary-color);
}

/* Curriculum Action Banner */
.curriculum-extra-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #002800 100%);
    border-radius: 20px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 15px 40px rgba(0, 72, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.curriculum-extra-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.banner-content {
    flex: 1;
    padding-right: 40px;
    position: relative;
    z-index: 2;
}

.banner-content h3 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 10px;
}

.banner-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

.banner-action {
    position: relative;
    z-index: 2;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    white-space: nowrap;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--primary-color);
}

@media screen and (max-width: 900px) {
    .timeline-container::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item.right-timeline {
        left: 0%;
    }

    .timeline-dot {
        left: 20px !important;
        right: auto;
    }

    .timeline-item:not(.right-timeline) .curriculum-stage-card::after,
    .right-timeline .curriculum-stage-card::after {
        left: -15px;
        right: auto;
        border-width: 15px 15px 15px 0;
        border-color: transparent #fff transparent transparent;
    }

    .curriculum-extra-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .banner-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

/* Admissions Page Styles */
.step-card {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--secondary-color);
}

.step-num {
    background: var(--primary-color);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 18px;
}

.step-info p {
    font-size: 15px;
    color: #555;
    margin: 0;
}

.admission-form-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.admission-form-card h3 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(225, 76, 30, 0.1);
}

.w-100 {
    width: 100%;
    cursor: pointer;
}

/* Awards Page Styles */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.award-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.award-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.award-card:hover::before {
    transform: scaleX(1);
}

.award-icon {
    font-size: 45px;
    color: #f1c40f;
    margin-bottom: 20px;
}

.award-card h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 10px;
}

.award-year {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 5px 15px;
    background: rgba(225, 76, 30, 0.1);
    border-radius: 20px;
}

.award-card p {
    color: #666;
    font-size: 15px;
}

/* Timeline Image Extensions */
.timeline-image-wrapper {
    position: absolute;
    top: 10px;
    height: calc(100% - 80px);
    width: calc(100% - 20px);
}

.timeline-item:not(.right-timeline) .timeline-image-wrapper {
    left: calc(100% + 40px);
}

.right-timeline .timeline-image-wrapper {
    right: calc(100% + 40px);
}

.timeline-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 900px) {
    .timeline-image-wrapper {
        display: none;
    }
}

/* Why Choose Us Slider */
.why-slider-wrapper {
    position: relative;
    padding: 0 50px;
}

.why-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 20px 5px;
    scrollbar-width: none;
    /* Firefox */
    scroll-snap-type: x mandatory;
}

.why-slider::-webkit-scrollbar {
    display: none;
}

.why-slide-card {
    flex: 0 0 calc(33.333% - 20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    padding: 40px 30px;
    background: #fff;
    transition: transform 0.3s ease;
    scroll-snap-align: start;
    min-width: 280px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.why-slide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.why-slider-btn.prev {
    left: 0;
}

.why-slider-btn.next {
    right: 0;
}

.why-slider-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 900px) {
    .why-slide-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 600px) {
    .why-slide-card {
        flex: 0 0 calc(100%);
    }

    .why-slider-wrapper {
        padding: 0 20px;
    }

    .why-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .why-slider-btn.prev {
        left: -10px;
    }

    .why-slider-btn.next {
        right: -10px;
    }
}

/* Image Awards Gallery */
.awards-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.award-gallery-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.award-gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

.award-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.award-gallery-card:hover .award-img-wrapper img {
    transform: scale(1.1);
}

.award-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 72, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.award-gallery-card:hover .award-overlay {
    opacity: 1;
}

.popup-icon {
    color: #fff;
    font-size: 40px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.award-gallery-card:hover .popup-icon {
    transform: translateY(0);
}

.award-gallery-info {
    padding: 25px 20px;
    text-align: center;
    position: relative;
}

.award-gallery-year {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(225, 76, 30, 0.3);
    z-index: 2;
}

.award-gallery-info h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 8px;
    margin-top: 10px;
}

.award-gallery-info p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .awards-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .awards-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Contact Page Styles ===== */
.contact-hero {
    height: 400px !important;
    background-attachment: fixed;
    clip-path: none;
}

.contact-info-section {
    position: relative;
    z-index: 10;
    margin-top: -120px;
    padding-bottom: 60px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 60px 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 72, 0, 0.1);
    background: #fff;
}

.contact-info-card.highlighted {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-dark) 100%);
    color: #fff;
    border: none;
}

.contact-info-card.highlighted .contact-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-info-card.highlighted h3,
.contact-info-card.highlighted p {
    color: #fff;
}

.contact-info-card.highlighted p {
    opacity: 0.9;
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: #f0f7f0;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 30px;
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(0, 72, 0, 0.05);
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotateY(360deg);
    background: var(--primary-color);
    color: #fff;
}

.contact-info-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-info-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: stretch;
}

.contact-form-wrapper {
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
}

.form-desc {
    margin-bottom: 40px;
    color: #666;
    font-size: 17px;
    max-width: 500px;
}

.premium-form .form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 10px;
}

.premium-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.premium-form label {
    font-weight: 700;
    font-size: 13px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.premium-form input,
.premium-form textarea {
    padding: 18px 25px;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fcfcfc;
}

.premium-form input:focus,
.premium-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 72, 0, 0.08);
}

.form-submit {
    width: 100%;
    padding: 20px !important;
    font-size: 18px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none !important;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 72, 0, 0.2);
}

.contact-map-wrapper {
    min-height: 600px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.map-overlay-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.map-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.map-info-item i {
    font-size: 28px;
    color: var(--secondary-color);
    background: #fff4f0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.map-info-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-weight: 700;
}

.map-info-item p {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 40px 30px;
    }

    .premium-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-hero {
        height: 300px !important;
    }
}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.contact-info-card:nth-child(1) {
    animation-delay: 0.2s;
}

.contact-info-card:nth-child(2) {
    animation-delay: 0.4s;
}

.contact-info-card:nth-child(3) {
    animation-delay: 0.6s;
}

.contact-form-wrapper {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.contact-map-wrapper {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

/* ===== FAQ Section ===== */
.faq-section {
    background-color: #f9fbf9;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-header h3 {
    font-size: 18px;
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.faq-header i {
    font-size: 16px;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 30px;
}

.faq-body p {
    padding-bottom: 25px;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.faq-item.active {
    box-shadow: 0 15px 30px rgba(0, 72, 0, 0.05);
    border-color: var(--primary-color);
}

.faq-item.active .faq-header {
    background: #f0fbf0;
}

.faq-item.active .faq-header i {
    transform: rotate(45deg);
}

.faq-item.active .faq-body {
    max-height: 300px;
}

/* Premium Select Style */
.premium-select {
    padding: 18px 25px;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fcfcfc;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 25px center;
    padding-right: 50px;
    cursor: pointer;
}

.premium-select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 10px 25px rgba(0, 72, 0, 0.08);
}

/* Animations Trigger */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Page Styles */
.contact-hero {
    height: 400px;
    clip-path: none;
    margin-bottom: 0;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 40px auto 0;
    /* Moves grid downward and centers it */
}

.contact-card {
    background: #fff;
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 72, 0, 0.05);
    border-bottom: 3px solid var(--secondary-color);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 72, 0, 0.1);
}

.contact-card .icon-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    font-size: 22px;
    background: #f0f7f0;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.contact-card p,
.contact-card a {
    color: #555;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.5;
}

.contact-card a:hover {
    color: var(--secondary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.contact-form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.contact-form .input-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    background: #fcfcfc;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 72, 0, 0.08);
    background: #fff;
}

.contact-map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    min-height: 400px;
}

@media (max-width: 991px) {

    .contact-cards-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}

/* Events Page Styles */
.events-page-section {
    background-color: var(--bg-light);
}

.events-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.event-card-page {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.event-card-page:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 72, 0, 0.1);
}

.event-card-page .event-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.event-card-page .event-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card-page:hover .event-img-wrapper img {
    transform: scale(1.1);
}

.event-card-page .event-date {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(225, 76, 30, 0.3);
}

.event-card-page .event-date span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 3px;
}

.event-card-page .event-info {
    padding: 30px;
}

.event-card-page .event-info h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.3;
}

.event-card-page .event-info p {
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.btn-read-more:hover {
    color: var(--primary-color);
    gap: 12px;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.page-link:hover,
.page-link.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 72, 0, 0.2);
}

@media (max-width: 991px) {
    .events-page-grid {
        grid-template-columns: 1fr;
    }
}

/* Event Detail Page Styles */
.event-detail-section {
    animation: fadeIn 0.8s ease;
}

.event-detail-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 40px;
}

.event-detail-sidebar {
    position: sticky;
    top: 120px;
}

.event-detail-main {
    background: #fff;
    padding: 20px 20px 0 20px;
    border-radius: 30px;
}

.detail-featured-img {
    width: 100%;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.detail-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
    padding-left: 5px;
}

.detail-meta span {
    font-size: 14px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.detail-meta span i {
    color: var(--secondary-color);
}

.detail-title {
    font-size: 32px;
    color: #004d00;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.detail-text p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.detail-text blockquote {
    padding: 30px 40px;
    background: #f7faf7;
    border-left: 4px solid #004d00;
    border-radius: 15px;
    font-style: italic;
    color: #004d00;
    font-size: 18px;
    font-family: 'Outfit', sans-serif;
    margin: 40px 0;
    line-height: 1.6;
}

.detail-gallery {
    margin-top: 60px;
}

.gallery-title {
    font-size: 24px;
    color: #004d00;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.gallery-grid-detail {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.gallery-grid-detail img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-grid-detail img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Sidebar Styles */
.event-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.sidebar-widget {
    background: #fff;
    padding: 35px 30px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 72, 0, 0.04);
    border: 1px solid #f0f7f0;
    margin-bottom: 20px;
    transition: var(--transition);
}

.sidebar-widget:hover {
    box-shadow: 0 15px 45px rgba(0, 72, 0, 0.08);
    transform: translateY(-5px);
}

.sidebar-widget h3 {
    font-size: 18px;
    color: #004d00;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    padding: 0;
    text-transform: capitalize;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
    font-size: 14px;
    color: #666;
    height: 55px;
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 45px;
    height: 45px;
    background: #004d00;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.search-box button:hover {
    background: var(--primary-color);
}

.search-box input::placeholder {
    color: #ccc;
}

.recent-event-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.recent-item img {
    width: 80px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.recent-item img:hover {
    transform: scale(1.05);
}

.recent-info a {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 5px;
    transition: var(--transition);
}

.recent-info a:hover {
    color: var(--secondary-color);
}

.recent-info span {
    font-size: 13px;
    color: #999;
}

.category-widget ul {
    list-style: none;
    padding: 0;
}

.category-widget li {
    margin-bottom: 8px;
}

.category-widget li:last-child {
    margin-bottom: 0;
}

.category-widget a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fdfdfd;
    color: #004d00;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    border: 1px solid #f9f9f9;
}

.category-widget a span {
    background: #fff;
    width: 35px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 11px;
    color: #999;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.category-widget a:hover {
    background: #f7faf7;
    border-color: #eef5ee;
    transform: translateY(-2px);
}

/* Admission CTA Section */
.admission-cta-section {
    background: linear-gradient(rgba(0, 48, 0, 0.9), rgba(0, 48, 0, 0.95)), url('image/new/slider1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 40px 0;
    text-align: center;
    color: #fff;
    border-radius: 30px;
    margin: 60px 20px 20px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 48, 0, 0.15);
}

.admission-cta-box {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.admission-cta-box h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
}

.admission-cta-box p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
}

.admission-cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-enroll-main {
    padding: 14px 40px;
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    box-shadow: 0 10px 30px rgba(225, 76, 30, 0.4);
}

.btn-enroll-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(225, 76, 30, 0.6);
    background: #fff;
    color: var(--secondary-color);
}

/* Sidebar button */
.sidebar-simple-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 5px;
    transition: var(--transition);
}

.sidebar-simple-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.sidebar-cta h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    border: none;
    padding: 0;
    font-family: 'Outfit', sans-serif;
}

.sidebar-cta p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.5;
    font-weight: 400;
}

.sidebar-cta .btn-primary {
    background: #fff;
    color: #004d00;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    width: 100%;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sidebar-cta .btn-primary:hover {
    background: #f0f0f0;
    color: #004d00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .event-detail-wrapper {
        grid-template-columns: 1fr;
    }

    .detail-title {
        font-size: 30px;
    }
}

/* Campus Visit Styles */
.campus-visit-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.visit-desc {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.visit-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.visit-info-c.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-bottom: 15px;
    transition: var(--transition);
}

.visit-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.visit-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.visit-info-card i {
    font-size: 30px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.visit-info-card h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.visit-info-card p {
    font-size: 15px;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

.tour-highlights h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.visit-checklist {
    list-style: none;
    padding: 0;
}

.visit-checklist li {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.visit-checklist li i {
    color: var(--primary-color);
    font-size: 18px;
}

.booking-card {
    background: #fff;
    padding: 15px 38px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.booking-card h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.visit-form .form-group {
    margin-bottom: 20px;
}

.visit-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.visit-form input,
.visit-form select,
.visit-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    transition: var(--transition);
}

.visit-form input:focus,
.visit-form select:focus,
.visit-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px rgba(0, 72, 0, 0.1);
}

.visit-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.visit-form textarea {
    height: 100px;
    resize: none;
}

@media (max-width: 1200px) {
    .events-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .campus-visit-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .events-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .visit-info-grid {
        grid-template-columns: 1fr;
    }

    .visit-form .form-row {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .events-page-grid {
        grid-template-columns: 1fr;
    }
}

/* Video Gallery Section - Synchronized */
.video-grid-section {
    background: #fdfaf5;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 35px;
}

.video-item-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.video-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.video-item-card:hover .video-thumb img {
    transform: scale(1.1);
}

.video-overlay-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 72, 0, 0.3);
    /* School Navy/Green tint */
    opacity: 0;
    transition: 0.4s;
}

.video-item-card:hover .video-overlay-btn {
    opacity: 1;
}

.video-overlay-btn i {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transform: scale(0.8);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-item-card:hover .video-overlay-btn i {
    transform: scale(1);
}

.video-details {
    padding: 25px;
}

.video-cat {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    display: block;
}

.video-details h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.video-details p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Video Modal V3 - Synchronized */
.video-modal-v3 {
    position: fixed;
    inset: 0;
    background: rgba(0, 40, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    padding: 20px;
}

.video-modal-v3.active {
    display: flex;
}

.video-modal-content {
    width: 100%;
    max-width: 1100px;
    position: relative;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.video-player-container {
    padding-top: 56.25%;
    /* 16:9 */
    position: relative;
}

#videoPlaceholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#videoPlaceholder iframe,
#videoPlaceholder video {
    width: 100%;
    height: 100%;
    border: none;
}

.close-video-modal {
    position: absolute;
    top: -50px;
    right: 0;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: 0.3s;
}

.close-video-modal:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* Recruitment Page Styles */
.recruitment-intro {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.job-openings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.job-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 25px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    text-align: left;
}

.job-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 72, 0, 0.08);
}

.job-icon {
    width: 60px;
    height: 60px;
    background: #f7faf7;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.job-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.job-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.job-type {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-desc {
    font-size: 15px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 20px;
}

.job-requirements {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.job-requirements li {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.job-requirements li i {
    color: var(--primary-color);
    font-size: 12px;
}

/* Application Form */
.application-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

.form-info-left {
    padding: 60px;
    background: #fdfdfd;
    position: relative;
    border-right: 1px solid #f5f5f5;
}

.form-info-left p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.recruitment-contact-info {
    margin-bottom: 40px;
}

.recruitment-contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-img-decor {
    width: 100%;
    border-radius: 20px;
    height: 250px;
    object-fit: cover;
}

.form-container-right {
    padding: 60px;
}

.recruitment-form .form-group {
    margin-bottom: 20px;
}

.recruitment-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.recruitment-form input,
.recruitment-form select {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    background: #fdfdfd;
    border-radius: 12px;
    font-size: 15px;
    color: #333;
    transition: var(--transition);
}

.recruitment-form input:focus,
.recruitment-form select:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 72, 0, 0.05);
    outline: none;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.file-input {
    padding: 10px !important;
}

@media (max-width: 991px) {
    .job-openings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .application-form-wrapper {
        grid-template-columns: 1fr;
    }

    .form-info-left {
        padding: 40px;
    }

    .form-container-right {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .job-openings-grid {
        grid-template-columns: 1fr;
    }

    .form-group-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .events-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .campus-visit-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .events-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .visit-info-grid {
        grid-template-columns: 1fr;
    }

    .visit-form .form-row {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .events-page-grid {
        grid-template-columns: 1fr;
    }
}