/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #10b981;
    --secondary-green: #059669;
    --accent-teal: #0d9488;
    --dark-green: #047857;
    --light-green: #d1fae5;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    --gradient-dark: linear-gradient(135deg, var(--dark-green), var(--accent-teal));
    --gradient-light: linear-gradient(135deg, var(--light-green), #bbf7d0);
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
    font-size: 15px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Background Bubbles */
.bubbles {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    top: 20%;
    animation-duration: 25s;
}

.bubble:nth-child(2) {
    width: 120px;
    height: 120px;
    left: 80%;
    top: 60%;
    animation-duration: 30s;
}

.bubble:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 70%;
    top: 10%;
    animation-duration: 20s;
}

.bubble:nth-child(4) {
    width: 100px;
    height: 100px;
    left: 20%;
    top: 80%;
    animation-duration: 35s;
}

.bubble:nth-child(5) {
    width: 90px;
    height: 90px;
    left: 60%;
    top: 40%;
    animation-duration: 28s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0.3;
    }
    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.1;
    }
}

/* Top Bar */
.top-bar {
    background: var(--dark-green);
    color: var(--white);
    padding: 2px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    margin-right: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar-btn {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Main Header */
.main-header {
    background: var(--white);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
}

/* Navigation */
.main-nav {
    margin-left: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0.8rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    padding: 0.6rem 0.8rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 15px;
}

.nav-link:hover {
    color: var(--primary-green);
    background: var(--light-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 70%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: var(--light-green);
    color: var(--dark-green);
    border-left-color: var(--primary-green);
    padding-left: 1.5rem;
}

/* Header CTA */
.header-cta .btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
    padding: 5px;
    background: none;
    border: none;
    z-index: 1002;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
    display: block;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-logo {
    height: 35px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 5px;
}

.mobile-nav {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: var(--light-green);
    color: var(--primary-green);
}

.mobile-dropdown-menu {
    display: none;
    background: var(--light-bg);
    padding-left: 1rem;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.mobile-dropdown-menu a:hover {
    background: var(--light-green);
    border-left-color: var(--primary-green);
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-cta {
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

/* Hero Slider Section */
.hero-section {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 70% 30%;
    min-height: 75vh;
    align-items: center;
}

/* Slider Styles */
.slider-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    padding: 0 3rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
}

.slide h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.slide p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Enrollment Form */
.enrollment-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin: 1.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.enrollment-form h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
    font-size: 1.6rem;
}

.call-us {
    text-align: center;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.btn-block {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content h2 {
    font-size: 35px;
    margin-bottom: 20px;
    color: var(--dark-green);
}

.about-content p {
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Latest @ Vibgyor Section */
.latest-section {
    padding: 70px 0;
    background: var(--white);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 35px;
    margin-bottom: 0.8rem;
    color: var(--dark-green);
}

.section-header p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
}

/* Latest Tabs */
.latest-container {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}

.latest-tabs {
    display: flex;
    background: var(--light-bg);
    border-bottom: 1px solid #e2e8f0;
}

.latest-tab {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-size: 0.95rem;
}

.latest-tab.active {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
    background: var(--white);
}

.latest-tab:hover {
    color: var(--primary-green);
}

.latest-content {
    padding: 1.5rem;
}

.scrolling-container {
    display: none;
}

.scrolling-container.active {
    display: block;
}

.scrolling-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.scrolling-item:hover {
    background: var(--light-bg);
    border-radius: 8px;
}

.scrolling-item:last-child {
    border-bottom: none;
}

.item-date {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
    min-width: 70px;
}

.item-date .day {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.item-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.item-content {
    flex: 1;
}

.item-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
}

.item-content p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.item-action .btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}

.empty-state {
    text-align: center;
    padding: 2.5rem;
    color: var(--text-light);
}

.empty-state i {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: #cbd5e1;
}

/* Why Choose Section */
.why-choose-section {
    padding: 70px 0;
    background: var(--white);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Courses Section */
.courses-section {
    padding: 70px 0;
    background: var(--light-bg);
    position: relative;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.course-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-green);
    position: relative;
    z-index: 2;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.course-icon {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: var(--primary-green);
}

.course-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.course-card p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.course-features {
    list-style: none;
    text-align: left;
}

.course-features li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-light);
    font-size: 0.9rem;
}

.course-features li:last-child {
    border-bottom: none;
}

.course-features i {
    margin-right: 0.4rem;
    color: var(--primary-green);
    font-size: 0.8rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.testimonials-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 0 10px;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary-green);
    transform: scale(1.2);
}

/* Scrollable Achievers Section */
.achievers-section {
    padding: 70px 0;
    background: var(--white);
    position: relative;
}

.achievers-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.achievers-scroll-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 2rem;
}

.achievers-scroll-container {
    display: flex;
    gap: 1.5rem;
    padding: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.achievers-scroll-container::-webkit-scrollbar {
    display: none;
}

.achiever-card {
    flex: 0 0 300px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.achiever-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.achiever-image {
    height: 180px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.achiever-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.achiever-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.achiever-info {
    padding: 1.5rem;
    text-align: center;
}

.achiever-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    font-weight: 600;
}

.achiever-college {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

.achiever-rank {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.achiever-year {
    display: inline-block;
    background: var(--light-green);
    color: var(--dark-green);
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Scroll Buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-green);
    transition: all 0.3s ease;
    z-index: 3;
    padding: 0;
}

.scroll-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.scroll-btn.prev {
    left: 0;
}

.scroll-btn.next {
    right: 0;
}

/* Achievers Filters */
.achievers-filters {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--white);
    border: 2px solid var(--light-green);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-green);
}

.filter-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--light-green);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Updated CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/cta-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--white);
    font-weight: 700;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: var(--white);
    color: var(--primary-green);
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    color: var(--dark-green);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.cta-btn-secondary:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Enhanced Footer */
.main-footer {
    background: #0f172a;
    color: var(--white);
    padding: 60px 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-green);
}

.footer-about .footer-logo img {
    height: 45px;
    margin-bottom: 1rem;
}

.footer-about p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-courses ul {
    list-style: none;
}

.footer-courses li {
    margin-bottom: 0.8rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.footer-contact .contact-icon {
    width: 35px;
    height: 35px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.footer-contact .contact-info {
    flex: 1;
}

.footer-contact .contact-info strong {
    display: block;
    margin-bottom: 0.1rem;
    color: var(--white);
    font-size: 0.9rem;
}

.footer-contact .contact-info span {
    font-size: 0.85rem;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-green);
}

/* Mobile App Footer */
.mobile-app-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 0.8rem 1rem;
}

.mobile-app-buttons {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-app-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 10px;
    flex: 1;
    max-width: 120px;
}

.mobile-app-btn:hover {
    background: var(--light-green);
    color: var(--primary-green);
}

.mobile-app-btn i {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.mobile-app-btn span {
    font-size: 0.75rem;
    font-weight: 600;
}
/* Page Hero Section */
.page-hero-section {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-detail-section {
    padding: 80px 0;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-feature {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.mission-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.mission-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.chairman-section {
    padding: 80px 0;
}

.chairman-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.chairman-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.chairman-image img {
    width: 100%;
    height: auto;
    display: block;
}

.chairman-message h2 {
    margin-bottom: 2rem;
    color: var(--dark-green);
}

.message-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-light);
}

.chairman-signature {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-green);
}

.chairman-signature strong {
    display: block;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.centers-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.centers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.center-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.center-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.center-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-bg);
}

/* Add more CSS styles for other pages as needed */

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .chairman-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .chairman-image {
        max-width: 250px;
        margin: 0 auto;
    }
}
/* ===== PAGE HERO SECTION ===== */
.page-hero-section {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== COURSES PAGE STYLES ===== */
.course-detail-section {
    padding: 80px 0;
}

.course-detail-section.course-alt {
    background: var(--light-bg);
}

.course-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.course-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    flex-shrink: 0;
}

.course-info h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.course-info p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.course-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.course-features h3,
.course-structure h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.course-features ul {
    list-style: none;
}

.course-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
}

.course-features li:last-child {
    border-bottom: none;
}

.course-features i {
    color: var(--primary-green);
}

.structure-grid {
    display: grid;
    gap: 1.5rem;
}

.structure-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.structure-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.structure-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.comparison-table {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-top: 2rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem 1rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.comparison-table th {
    background: var(--light-green);
    color: var(--dark-green);
    font-weight: 600;
}

.comparison-table tr:hover {
    background: var(--light-bg);
}

/* ===== ACHIEVERS PAGE STYLES ===== */
.achievers-filters-section {
    padding: 2rem 0;
    background: var(--white);
    border-bottom: 1px solid #e2e8f0;
}

.achievers-grid-section {
    padding: 80px 0;
}

.achievers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.achiever-card.detailed {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.achiever-card.detailed:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.achiever-card.detailed .achiever-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.achiever-card.detailed .achiever-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.achiever-card.detailed:hover .achiever-image img {
    transform: scale(1.05);
}

.achiever-card.detailed .achiever-info {
    padding: 2rem;
}

.achiever-card.detailed .achiever-story {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.achiever-card.detailed .achiever-story p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
}

.load-more-container {
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Yearly Achievements */
.yearly-achievements-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.achievements-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: -3rem;
    width: 2px;
    background: var(--primary-green);
    opacity: 0.3;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    width: 100px;
    flex-shrink: 0;
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    height: fit-content;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.timeline-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    padding: 0.3rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.2rem;
}

.timeline-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* Institutions Section */
.institutions-section {
    padding: 80px 0;
}

.institutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.institution-card {
    background: var(--white);
    padding: 2rem 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.institution-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.institution-logo {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.institution-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.student-count {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== RESULTS PAGE STYLES ===== */
.results-section {
    padding: 80px 0;
}

.results-year-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.year-tab {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--light-green);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--text-dark);
}

.year-tab.active,
.year-tab:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-green);
}

.year-results {
    display: none;
}

.year-results.active {
    display: block;
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-top: 4px solid var(--primary-green);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: var(--text-light);
    font-weight: 600;
}

.top-rankers {
    margin-top: 3rem;
}

.top-rankers h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-size: 1.8rem;
}

.rankers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ranker-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.ranker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.ranker-image {
    height: 200px;
    overflow: hidden;
}

.ranker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ranker-info {
    padding: 1.5rem;
    text-align: center;
}

.ranker-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.ranker-exam {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.ranker-college {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Exam Results */
.exam-results-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.exam-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.exam-tab {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--light-green);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--text-dark);
}

.exam-tab.active,
.exam-tab:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-green);
}

.exam-results {
    display: none;
}

.exam-results.active {
    display: block;
}

.exam-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.exam-stat {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.exam-stat h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-green);
}

.exam-stat ul {
    list-style: none;
}

.exam-stat li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.exam-stat li:last-child {
    border-bottom: none;
}

.exam-stat li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* Success Stories */
.success-stories-section {
    padding: 80px 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.story-image {
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.story-meta {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.story-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--dark-green);
    padding-left: 5px;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-info-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.contact-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.contact-details {
    text-align: left;
}

.location {
    margin-bottom: 1.5rem;
}

.location:last-child {
    margin-bottom: 0;
}

.location h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.location p {
    color: var(--text-light);
    line-height: 1.6;
}

.phone-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin: 0.3rem 0;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
}

.form-header p {
    color: var(--text-light);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.maps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.map-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.map-card h3 {
    padding: 1.5rem;
    background: var(--light-green);
    color: var(--dark-green);
    margin: 0;
    font-size: 1.3rem;
}

.map-placeholder {
    padding: 0;
}

.map-info {
    padding: 1.5rem;
    background: var(--white);
}

.map-info p {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.map-info p:last-child {
    margin-bottom: 0;
}

.map-info i {
    color: var(--primary-green);
    width: 20px;
}

.map-frame {
    height: 250px;
    overflow: hidden;
}

.map-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question h3 {
    color: var(--text-dark);
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
    opacity: 1;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Quick Contact */
.quick-contact-section {
    padding: 80px 0;
    background: var(--gradient-dark);
    color: var(--white);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quick-contact-card {
    text-align: center;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.method-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.quick-contact-card:hover .method-icon {
    background: var(--primary-green);
    transform: scale(1.1);
}

.method-info h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.method-info p {
    opacity: 0.9;
    margin-bottom: 0.3rem;
}

/* ===== FACILITIES PAGE STYLES ===== */
.facility-section {
    padding: 80px 0;
}

.facility-section.facility-alt {
    background: var(--light-bg);
}

.facility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.facility-content h2 {
    font-size: 2.2rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

.facility-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.facility-features {
    list-style: none;
}

.facility-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
}

.facility-features li:last-child {
    border-bottom: none;
}

.facility-features i {
    color: var(--primary-green);
}

.facility-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.facility-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.facility-image:hover img {
    transform: scale(1.05);
}

/* Additional Facilities */
.additional-facilities {
    padding: 80px 0;
    background: var(--light-bg);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.facility-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.facility-card .facility-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.facility-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.facility-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .facility-grid {
        gap: 3rem;
    }
    
    .course-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .facility-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .course-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .achievers-grid {
        grid-template-columns: 1fr;
    }
    
    .rankers-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .maps-container {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-item::before {
        left: 50%;
        transform: translateX(-50%);
        top: 100px;
        bottom: -1rem;
        height: 2px;
        width: auto;
    }
    
    .timeline-year {
        width: 100%;
        text-align: center;
    }
    
    .exam-stats {
        grid-template-columns: 1fr;
    }
    
    .institutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .page-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .course-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .results-year-tabs,
    .exam-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .year-tab,
    .exam-tab {
        width: 100%;
        max-width: 200px;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .comparison-table table {
        min-width: 600px;
    }
}
/* ===== UPDATED BUTTON STYLES ===== */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Top Bar Button Styles */
.top-bar-btn {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.top-bar-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* CTA Button Styles */
.cta-btn-primary {
    background: var(--white);
    color: var(--primary-green);
    padding: 14px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    color: var(--dark-green);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 14px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.cta-btn-secondary:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* ===== SEPARATE TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/testimonials-bg.jpg') center/cover;
    opacity: 0.03;
    z-index: 1;
}

.testimonials-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    z-index: 2;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 50px 40px;
    background: var(--white);
    text-align: center;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin: 0 10px;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 5rem;
    color: var(--light-green);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    flex-shrink: 0;
    border: 3px solid var(--light-green);
}

.author-info {
    text-align: left;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
}

.author-info p {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-dot.active {
    background: var(--primary-green);
    transform: scale(1.2);
    border-color: var(--light-green);
}

.testimonial-dot:hover {
    background: var(--primary-green);
    transform: scale(1.1);
}

/* Testimonials Section with Different Background */
.testimonials-section.alt-bg {
    background: var(--light-bg);
}

.testimonials-section.dark-bg {
    background: var(--gradient-dark);
    color: var(--white);
}

.testimonials-section.dark-bg .testimonial-card {
    background: rgba(255, 255, 255, 0.95);
}

.testimonials-section.dark-bg .testimonial-content {
    color: var(--text-dark);
}

.testimonials-section.dark-bg .author-info h4 {
    color: var(--text-dark);
}

/* ===== SEPARATE STATS SECTION ===== */
.stats-section {
    padding: 80px 0;
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
}

.stats-section.light-bg {
    background: var(--light-bg);
    color: var(--text-dark);
}

.stats-section.light-bg .stat-item {
    background: var(--white);
    color: var(--text-dark);
}

.stats-section.light-bg .stat-number {
    color: var(--primary-green);
}

.stats-section.light-bg .stat-label {
    color: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 2.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.stat-icon {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: var(--light-green);
    opacity: 0.9;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    display: block;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 600;
}

/* Stats Counter Animation */
.stat-number {
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ENROLLMENT FORM SPECIFIC STYLES ===== */
.enrollment-form .btn-primary {
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
}

/* ===== MOBILE APP FOOTER BUTTONS ===== */
.mobile-app-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 10px;
    flex: 1;
    max-width: 120px;
    background: transparent;
    border: none;
}

.mobile-app-btn:hover {
    background: var(--light-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.mobile-app-btn i {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.mobile-app-btn span {
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===== RESPONSIVE BUTTON STYLES ===== */
@media (max-width: 768px) {
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .testimonial-card {
        padding: 40px 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .author-info {
        text-align: center;
    }
    
    .stat-item {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .btn-primary {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .testimonial-card {
        padding: 30px 15px;
    }
    
    .testimonial-content {
        font-size: 1rem;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}


