/* ==================== */
/* CSS VARIABLES */
/* ==================== */
:root {
    --olive-dark: #2c3a1f;
    --olive-medium: #4a6130;
    --olive-light: #7a9367;
    --gold: #f0b400;
    --gold-hover: #d4a000;
    --white: #ffffff;
    --off-white: #f8faf4;
    --black: #1a1e16;
    --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 15px 40px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.18);
    --border-light: 1px solid rgba(255, 255, 255, 0.15);
    --light-text: #d4d9c4;
    --text-muted: #666;
    --text-dark: #333;
    --transition: all 0.3s ease;
}

/* ==================== */
/* RESET & BASE STYLES */
/* ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

body {
    background-color: var(--off-white);
    overflow-x: hidden;
    line-height: 1.5;
}

html {
    scroll-behavior: smooth;
}

/* ==================== */
/* NAVBAR */
/* ==================== */
.navbar {
    width: 100%;
    height: 80px;
    background: linear-gradient(120deg, var(--olive-dark) 0%, var(--olive-medium) 100%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    border-bottom: 3px solid var(--gold);
    transition: background 0.25s ease, box-shadow 0.25s;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 20px;
}

.logo-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}

.title-main, .title-sub {
    font-size: 1.5rem;
    color: white;
    font-weight: 900;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    align-items: center;
}

.nav-links li a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 0.6rem 1rem;
    border-radius: 40px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 2px solid transparent;
}

.nav-links li a i {
    font-size: 1rem;
    color: var(--gold);
    transition: transform 0.15s;
}

.nav-links li a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.nav-links li a:hover i {
    transform: scale(1.1);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.15);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.menu-toggle i {
    font-size: 1.8rem;
    color: white;
}

.menu-toggle:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--gold);
}

/* ==================== */
/* HERO SECTION */
/* ==================== */
.hero {
    min-height: 100vh;
    width: 100%;
    background: url('background.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 130px 20px 100px;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:rgb(53, 107, 2);
    opacity: 0.59;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.badge-prep {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(20, 30, 10, 0.65);
    backdrop-filter: blur(8px);
    border: 2px solid var(--gold);
    padding: 0.8rem 2rem;
    border-radius: 60px;
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 1.8rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
    color: var(--gold);
    display: inline-block;
    position: relative;
}

.hero p {
    font-size: 1.3rem;
    max-width: 750px;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.8rem 1.8rem;
    border-radius: 60px;
    backdrop-filter: blur(4px);
    border: var(--border-light);
}

.courses-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1.2rem;
    margin-bottom: 3rem;
}

.course-badge {
    background: rgba(30, 40, 18, 0.9);
    backdrop-filter: blur(4px);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    border: 1.5px solid rgba(240, 180, 0, 0.4);
    transition: 0.2s ease;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.course-badge i {
    color: var(--gold);
    font-size: 1.1rem;
}

.course-badge:hover {
    background: var(--gold);
    border-color: white;
    color: var(--olive-dark);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 25px rgba(240, 180, 0, 0.4);
}

.course-badge:hover i {
    color: var(--olive-dark);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2.8rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.btn-primary {
    background: #ffd700;
    color: #1f2e14;
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(240, 180, 0, 0.35);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(240, 180, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1f2e14;
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(255, 255, 255, 0.25);
}

/* ==================== */
/* ANIMATIONS */
/* ==================== */
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.9, 0.3, 1), transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== */
/* SECTION COMMON STYLES */
/* ==================== */
.section {
    padding: 80px 5%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: black;
    font-weight: 800;
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    margin-top: 40px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 20px auto 0;
}

/* ==================== */
/* ABOUT SECTION */
/* ==================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--olive-dark), var(--olive-medium));
    color: var(--gold);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.about-content h3 {
    font-size: 2rem;
    color: var(--olive-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(58, 64, 29, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--olive-medium);
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1rem;
    color: var(--olive-dark);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

/* ==================== */
/* WHY CHOOSE US */
/* ==================== */
.why-choose-section {
    background: #f4f6f0;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-box {
    background: var(--white);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateY(-8px);
    border-color: var(--olive-medium);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--olive-dark), var(--olive-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--gold);
    transition: transform 0.4s ease;
}

.feature-box:hover .feature-icon-box {
    transform: rotateY(360deg);
}

.feature-box h3 {
    font-size: 1.2rem;
    color: var(--olive-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-box p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ==================== */
/* CONTACT SECTION */
/* ==================== */
.contact-section {
    background: linear-gradient(to bottom, #e8eae5, #f4f6f0);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-box {
    background: var(--olive-dark);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.contact-info-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.contact-info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.contact-item i {
    color: var(--gold);
    font-size: 20px;
    margin-top: 3px;
}

.contact-item div h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-item div p {
    color: var(--light-text);
    font-size: 0.9rem;
}

.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--olive-dark);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--olive-medium);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(58, 64, 29, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--olive-dark), var(--olive-medium));
    color: var(--white);
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(58, 64, 29, 0.3);
}

/* ==================== */
/* FOOTER */
/* ==================== */
.main-footer {
    background: url("background.jpg") center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 60px 5% 40px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand {
    color: var(--white);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.logo-icon {
    font-size: 35px;
    color: var(--gold);
    animation: pulse 3s infinite;
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-text span {
    color: var(--gold);
}

.brand-description {
    color: var(--light-text);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 193, 7, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.rating-star {
    color: var(--gold);
    font-size: 14px;
}

.rating-text {
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
}

.footer-heading, .footer-column h3 {
    color: var(--gold);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after, .footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
}

.footer-links a i {
    color: var(--gold);
    font-size: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-links a:hover i {
    opacity: 1;
}

.contact-list {
    list-style: none;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 193, 7, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 193, 7, 0.15);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: var(--olive-dark);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.footer-strip {
    background: var(--olive-dark);
    padding: 12px 5%;
}

.strip-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #d4d9c4;
    font-size: 16px;
}

.strip-container a {
    color: #ffc107;
    text-decoration: none;
}

.strip-container a:hover {
    text-decoration: underline;
}

/* ==================== */
/* FLOATING BUTTONS */
/* ==================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.floating-whatsapp:hover, .floating-call:hover {
    transform: scale(1.1);
}

.floating-call {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: red;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

/* ==================== */
/* LIFE SECTION */
/* ==================== */
.heading {
    color:black;
    font-size: 45px;
    font-weight: 900;
    position: relative;
    text-align: center;
    margin: 0 auto 20px;
}

.heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.life-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.life-contain {
    position: relative;
    overflow: hidden;
    border-radius: 10%;
}

.life-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.life-contain:hover .life-img {
    transform: scale(1.05);
}

.life-heading {
    position: absolute;
    color: #fff;
    font-weight: 600;
    font-size: 22px;
    left: 20px;
    bottom: 20px;
    z-index: 2;
}

.life-contain::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

/* ==================== */
/* FAQ SECTION */
/* ==================== */
.faq-section {
    padding: 4rem 0;
    background: #f4f6f0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    transition: 0.2s;
}

.faq-question:hover {
    background: rgba(85, 107, 47, 0.06);
}

.faq-question h4 {
    font-size: 0.95rem;
    color: #2d351a;
    font-weight: 600;
}

.faq-question .faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(85, 107, 47, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #556b2f;
    font-size: 0.75rem;
    transition: 0.2s;
}

.faq-item.open .faq-icon {
    background: #556b2f;
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 20px;
    font-size: 0.88rem;
    color: #666;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 20px 16px;
}

/* ==================== */
/* TESTIMONIALS SECTION */
/* ==================== */
.testimonials-section {
    background: #f4f6f0;
    width: 100%;
    margin-bottom: -20px;
    margin-top: -10px;
}

.testimonials-slider {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
    min-height: 320px;
}

.testimonial-card {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #ffc107;
    object-fit: cover;
    background: #e0e0e0;
}

.testimonial-info h4 {
    font-size: 1.2rem;
    color: #2d351a;
    margin-bottom: 5px;
    font-weight: 700;
}

.testimonial-role {
    color: #666;
    font-size: 0.9rem;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid #556b2f;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #3a401d;
    background: transparent;
    color: #2d351a;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: #2d351a;
    color: #ffffff;
    border-color: #2d351a;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #2d351a;
    width: 30px;
    border-radius: 6px;
}

/* ==================== */
/* CAROUSEL SECTION */
/* ==================== */
.carousel {
    position: relative;
    width: 85%;
    margin: auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: 0.6s ease-in-out;
}

.success {
    min-width: 100%;
    height: 400px;
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    background: #e9efe6;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.left {
    flex: 1;
    background: #dce5d3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.left img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border: 5px solid #6b8e23;
}

.left h3 {
    margin: 10px 0 5px;
    color: #2f3e1f;
}

.result {
    color: #556b2f;
    font-weight: bold;
}

.right {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right h2 {
    font-size: 32px;
    color: #3b4d2a;
    margin-bottom: 15px;
    margin-left: 150px;
}

.right p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.carousel .btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #6b8e23;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
}

.carousel .prev {
    left: 10px;
}

.carousel .next {
    right: 10px;
}

.carousel .btn:hover {
    background: #556b2f;
}

/* ==================== */
/* COURSES SECTION */
/* ==================== */
.courses-section {
    background: var(--white);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 350px));
    justify-content: center;
    gap: 30px;
}

.course-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.course-header {
    background: linear-gradient(135deg, var(--olive-dark), var(--olive-medium));
    color: var(--white);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.course-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,193,7,0.1) 0%, transparent 70%);
}

.course-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.course-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.course-subtitle {
    font-size: 0.85rem;
    color: var(--light-text);
    position: relative;
    z-index: 1;
}

.course-body {
    padding: 30px;
}

.course-features {
    list-style: none;
    margin-bottom: 25px;
}

.course-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.9rem;
}

.course-features li:last-child {
    border-bottom: none;
}

.course-features i {
    color: var(--olive-light);
}

.course-card .btn {
    width: 100%;
    justify-content: center;
}

.sub-head {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.course-type {
    padding: 8px 18px;
    background: #556B2F;
    color: var(--gold);
    border-radius: 20px;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 700;
}

.course-type:hover {
    background: #6b8e23;
    transform: translateY(-2px);
}

/* ==================== */
/* POPUP OVERLAY */
/* ==================== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup {
    background: #f5f5dc;
    padding: 25px;
    width: 400px;
    border-radius: 10px;
    animation: popupFade 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
}

@keyframes popupFade {
    from {transform: scale(0.7); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.popup h2 {
    margin-bottom: 15px;
    color: #556B2F;
    text-align: center;
}

.popup input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.popup select {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.popup input:focus, 
.popup select:focus {
    border-color: #556B2F;
}

.popup button {
    width: 100%;
    padding: 12px;
    background: #556B2F;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: 500;
}

.popup button:hover {
    background: #6b8e23;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 22px;
    font-weight: bold;
    color: #556B2F;
    cursor: pointer;
    background: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.close-btn:hover {
    background: #556B2F;
    color: #fff;
}

/* ==================== */
/* ELIGIBILITY SECTION */
/* ==================== */
.eligibility-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #3b4d3a, #1f2a20);
    color: #f5f5f5;
}

.eligibility-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.eligibility-section p {
    color: #cfd8cc;
    margin-bottom: 40px;
}

.eligibility-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 420px;
    margin: auto;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    transition: 0.3s;
    position: relative;
}

.eligibility-box:hover {
    transform: translateY(-6px);
}

.eligibility-box label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #e8efe6;
}

.eligibility-box select {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: #2f3d2f;
    color: white;
    font-size: 15px;
    outline: none;
}

.eligibility-box button {
    margin-top: 25px;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #6b8e23, #556b2f);
    color: white;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.eligibility-box button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(107,142,35,0.5);
}

.note {
    margin-top: 12px;
    font-size: 13px;
    color: #b5c1b0;
}

.eligibility-box::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(107,142,35,0.3);
    filter: blur(80px);
    top: -40px;
    left: -40px;
    z-index: -1;
}

/* ==================== */
/* GALLERY SECTION */
/* ==================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.filter-btn {
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(45, 53, 26, 0.12);
    background: var(--white);
    color: var(--olive-dark);
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn.active {
    background: #576b28 !important;
    color: #fff !important;
    border-color: #2d351a !important;
}

.filter-btn:hover {
    background: var(--olive-medium) !important;
    color: olivedrab !important;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: #ddd;
    min-height: 260px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 540px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 31, 16, 0.82), rgba(26, 31, 16, 0.16));
    z-index: 1;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.gallery-content {
    position: absolute;
    inset: auto 0 0 0;
    padding: 20px;
    z-index: 2;
    color: var(--white);
}

.gallery-label {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 30px;
    background: rgba(255, 193, 7, 0.18);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.gallery-content h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.gallery-content p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
}

.gallery-zoom {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-box {
    max-width: 920px;
    width: 100%;
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.lightbox-box img {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
}

.lightbox-caption {
    padding: 18px 20px;
    color: #fff;
    background: linear-gradient(180deg, #1d2411, #2d351a);
}

.lightbox-caption h3 {
    color: var(--gold);
    margin-bottom: 6px;
}

.lightbox-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* ==================== */
/* MODERN RESULTS SECTION */
/* ==================== */
.modern-results-section {
    background: linear-gradient(180deg, #f4f6f0 0%, #edf2e8 100%);
    max-width: 100%;
    padding-bottom: 100px;
}

.filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.result-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8faf6 100%);
    border: 1px solid rgba(85, 107, 47, 0.12);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(45, 53, 26, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    opacity: 1;
    transform: scale(1);
}

.result-card.hidden {
    display: none;
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(45, 53, 26, 0.16);
    border-color: rgba(85, 107, 47, 0.25);
}

.card-accent {
    height: 6px;
    background: linear-gradient(90deg, var(--olive-dark), var(--gold), var(--olive-light));
}

.card-image-wrap {
    position: relative;
    padding: 24px 24px 0;
    text-align: center;
}

.card-image-wrap img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(85, 107, 47, 0.15);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    background: olive;
}

.exam-tag {
    position: absolute;
    top: 28px;
    right: 28px;
    background: linear-gradient(135deg, var(--olive-dark), var(--olive-light));
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    padding: 8px 12px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(45, 53, 26, 0.2);
    text-transform: uppercase;
}

.card-content {
    padding: 20px 24px 24px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.card-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--olive-dark);
    margin: 0;
}

.status-badge {
    background: rgba(255, 193, 7, 0.16);
    color: #8b6b00;
    border: 1px solid rgba(255, 193, 7, 0.35);
    padding: 6px 10px;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.exam-full {
    color: var(--olive-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.stat-box {
    background: rgba(144, 184, 75, 0.06);
    border: 1px solid rgba(85, 107, 47, 0.08);
    border-radius: 14px;
    padding: 12px;
    text-align: center;
}

.stat-box .label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 700;
    font-family: monospace;
}

.stat-box .value {
    display: block;
    font-size: 1rem;
    color: var(--olive-dark);
    font-weight: 800;
}

.card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px dashed rgba(85, 107, 47, 0.18);
    color: var(--text-dark);
    font-size: 0.88rem;
    font-weight: 600;
}

.card-footer i {
    color: var(--gold);
    font-size: 1rem;
}

/* ==================== */
/* NO DATA BOX */
/* ==================== */
.no-data-box {
    display: none;
    justify-content: center;
    align-items: center;
    margin-top: -210px;
    margin-bottom: 150px;
    position: relative;
}

.no-data-content {
    background: linear-gradient(135deg, #556B2F, #6B8E23);
    color: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: fadeIn 0.5s ease;
}

.no-data-content i {
    font-size: 40px;
    color: #FFD700;
    margin-bottom: 15px;
}

.no-data-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.no-data-content p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #eee;
}

.retry-btn {
    background: #FFD700;
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.retry-btn:hover {
    background: #ffcc00;
    transform: scale(1.05);
}

/* ==================== */
/* RESPONSIVE DESIGN */
/* ==================== */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .footer-brand {
        grid-column: 1 / 3;
        margin-bottom: 20px;
    }
}

@media (max-width: 992px) {
    .footer-top {
        padding: 50px 5% 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    .footer-brand {
        grid-column: 1 / 3;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }
    .logo-text {
        font-size: 1.4rem;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(145deg, #1d2b12, #384f22);
        flex-direction: column;
        justify-content: flex-start;
        padding: 90px 25px 40px;
        gap: 1.2rem;
        transition: right 0.4s ease-in-out;
        box-shadow: -8px 0 35px rgba(0, 0, 0, 0.5);
        border-left: 3px solid var(--gold);
        backdrop-filter: blur(8px);
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links li a {
        padding: 0.9rem 1.5rem;
        width: 100%;
        justify-content: flex-start;
        border-radius: 50px;
        font-size: 1.1rem;
        background: rgba(255, 255, 240, 0.05);
        border: 1px solid transparent;
    }
    .hero {
        padding: 110px 16px 80px;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero p {
        font-size: 1.1rem;
        padding: 0.6rem 1.2rem;
    }
    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-image img {
        height: 300px;
    }
    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: -10px;
        right: 10px;
    }
    .experience-badge .years {
        font-size: 1.5rem;
    }
    .experience-badge .text {
        font-size: 10px;
    }
    .about-content h3 {
        font-size: 1.5rem;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-brand {
        grid-column: auto;
        text-align: center;
    }
    .footer-logo {
        justify-content: center;
    }
    .brand-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 500px;
    }
    .rating-badge {
        margin: 0 auto;
    }
    .footer-heading::after, .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-links {
        justify-content: center;
    }
    .strip-container {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
    .heading {
        font-size: 32px;
    }
    .life-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .life-img {
        height: 220px;
    }
    .life-heading {
        font-size: 18px;
    }
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    .testimonial-card {
        padding: 25px 20px;
    }
    .testimonial-text {
        font-size: 0.95rem;
        padding-left: 15px;
    }
    .carousel {
        width: 95%;
    }
    .success {
        flex-direction: column;
        height: auto;
    }
    .left {
        padding: 20px;
    }
    .left img {
        width: 140px;
        height: 140px;
    }
    .left h3 {
        font-size: 18px;
        text-align: center;
    }
    .right {
        padding: 20px;
        text-align: center;
    }
    .right h2 {
        font-size: 22px;
        margin-left: 0;
    }
    .right p {
        font-size: 15px;
    }
    .carousel .btn {
        padding: 8px 10px;
        font-size: 14px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 320px;
    }
    .filter-wrapper {
        gap: 8px;
    }
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    .results-grid {
        grid-template-columns: 1fr;
    }
    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .eligibility-section {
        padding: 50px 15px;
    }
    .eligibility-section h2 {
        font-size: 24px;
    }
    .eligibility-section p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    .eligibility-box {
        max-width: 100%;
        padding: 20px;
        border-radius: 14px;
    }
    .eligibility-box label {
        font-size: 14px;
        text-align: left;
    }
    .eligibility-box select {
        padding: 12px;
        font-size: 14px;
    }
    .eligibility-box button {
        padding: 12px;
        font-size: 15px;
    }
    .note {
        font-size: 12px;
        text-align: center;
    }
    .eligibility-box::before {
        width: 100px;
        height: 100px;
        filter: blur(50px);
        top: -20px;
        left: -20px;
    }
}

@media (max-width: 520px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .badge-prep {
        font-size: 0.85rem;
        padding: 0.6rem 1.4rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .course-badge {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-form-box {
        display: none;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
    .about-image img {
        height: 260px;
    }
    .experience-badge {
        width: 90px;
        height: 90px;
        right: 10px;
        bottom: -10px;
    }
    .experience-badge .years {
        font-size: 1.4rem;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
    .footer-top {
        padding: 40px 5% 25px;
    }
    .footer-logo {
        flex-direction: column;
        gap: 8px;
    }
    .logo-icon {
        font-size: 30px;
    }
    .logo-text {
        font-size: 22px;
    }
    .footer-column h3 {
        font-size: 16px;
    }
    .footer-links a, .contact-item {
        font-size: 13px;
    }
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    .floating-whatsapp, .floating-call {
        width: 50px;
        height: 50px;
        font-size: 24px;
        right: 20px;
    }
    .life-row {
        grid-template-columns: 1fr;
    }
    .life-img {
        height: 200px;
    }
    .heading {
        font-size: 26px;
    }
    .section {
        padding: 40px 5%;
    }
    .testimonials-slider {
        min-height: 380px;
    }
    .card-content {
        padding: 18px;
    }
    .card-image-wrap {
        padding: 20px 20px 0;
    }
    .card-image-wrap img {
        width: 95px;
        height: 95px;
    }
    .exam-tag {
        top: 20px;
        right: 20px;
        font-size: 0.68rem;
        padding: 7px 10px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 360px) {
    .logo-text {
        font-size: 20px;
    }
    .hero h1 {
        font-size: 1.9rem;
    }
    .feature-box, .result-card, .contact-form-box, .contact-info-box {
        padding: 25px 15px;
    }
    .social-links {
        gap: 10px;
    }
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ==================== */
/* PRINT STYLES */
/* ==================== */
@media print {
    .navbar, .hero-pattern, .cta-buttons, .floating-whatsapp, .floating-call {
        display: none !important;
    }
    .section {
        padding: 40px 5%;
        background: white !important;
        color: black !important;
    }
}


.video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 30px;
        }

        .video-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            background: #000;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }


           /* Spotlight Carousel */
        .spotlight-wrapper {
            display: flex; 
            gap: 24px; 
            overflow-x: auto; 
            padding: 10px 5% 30px;
            scroll-snap-type: x mandatory; 
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .spotlight-wrapper::-webkit-scrollbar { 
            display: none; 
        }

        .spotlight-card {
            flex: 0 0 85%; 
            min-width: 320px; 
            height: 420px; 
            position: relative;
            border-radius: var(--radius); 
            overflow: hidden; 
            scroll-snap-align: center;
            box-shadow: var(--shadow); 
            cursor: pointer;
        }

        .spotlight-card img {
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
            transition: var(--transition);
        }

        .spotlight-card:hover img { 
            transform: scale(1.05); 
        }

        .spotlight-overlay {
            position: absolute; 
            bottom: 0; 
            left: 0; 
            right: 0; 
            padding: 25px;
            background: linear-gradient(to top, rgba(45,53,26,0.85), transparent);
            color: var(--white); 
            transform: translateY(10px); 
            opacity: 0; 
            transition: var(--transition);
        }


      /* Spotlight Container */
        .spotlight-container { 
            max-width: 1320px; 
            margin: 0 auto; 
            padding: 0 5%; 
        }

        .spotlight-gallery-section { 
            padding: 80px 0; 
            position: relative; 
        }

        /* Spotlight Carousel Wrapper */
        .spotlight-wrapper {
            display: flex; 
            gap: 24px; 
            overflow-x: auto; 
            padding: 10px 5% 30px;
            scroll-snap-type: x mandatory; 
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .spotlight-wrapper::-webkit-scrollbar { 
            display: none; 
        }

        /* Spotlight Cards */
        .spotlight-card {
            flex: 0 0 85%; 
            min-width: 320px; 
            height: 420px; 
            position: relative;
            border-radius: var(--radius, 16px); 
            overflow: hidden; 
            scroll-snap-align: center;
            box-shadow: var(--shadow, 0 12px 35px rgba(45, 53, 26, 0.15)); 
            cursor: pointer;
            transition: var(--transition, 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94));
        }

        .spotlight-card img {
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
            transition: var(--transition, 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94));
        }

        .spotlight-card:hover img { 
            transform: scale(1.05); 
        }

        /* Spotlight Overlay */
        .spotlight-overlay {
            position: absolute; 
            bottom: 0; 
            left: 0; 
            right: 0; 
            padding: 25px;
            background: linear-gradient(to top, rgba(45,53,26,0.85), transparent);
            color: var(--white, #ffffff); 
            transform: translateY(10px); 
            opacity: 0; 
            transition: var(--transition, 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94));
        }

        .spotlight-card:hover .spotlight-overlay { 
            transform: translateY(0); 
            opacity: 1; 
        }

        .spotlight-overlay h3 { 
            font-size: 1.5rem; 
            margin-bottom: 6px; 
        }

        .spotlight-overlay span { 
            font-size: 0.9rem; 
            opacity: 0.9; 
        }

        /* Spotlight Fade Animation */
        .spotlight-fade-in { 
            opacity: 0; 
            transform: translateY(25px); 
            transition: 0.6s ease; 
        }

        .spotlight-fade-in.visible { 
            opacity: 1; 
            transform: translateY(0); 
        }

        /* Spotlight Responsive */
        @media (max-width: 768px) {
            .spotlight-gallery-section { 
                padding: 50px 0; 
            }
            .spotlight-card { 
                flex: 0 0 90%; 
                height: 340px; 
            }
        }

        
/* ===== HEADER ===== */
.page-header {
    text-align: center;
    padding: 60px 20px 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-muted);
}

/* ===== ALERTS GRID ===== */
.alerts-container {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px 80px;
    display: grid;
    gap: 30px;
}

/* ===== ALERT CARD ===== */
.alert-card {
    display: flex;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alert-cards {
    display: flex;
    flex-direction: row-reverse;
     background: var(--white);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* IMAGE */
.alert-image {
    width: 280px;
    flex-shrink: 0;
}

.alert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.alert-content {
    padding: 25px;
    flex: 1;
}

.alert-content h2 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.alert-details {
    margin-bottom: 15px;
}

.alert-details p {
    margin-bottom: 6px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* STATUS BADGE */
.badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.8rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.badge.upcoming {
    background: #dfe8c7;
    color: var(--olive-dark);
}

.badge.important {
    background: #ffe3c2;
    color: #a64b00;
}

.badge.closed {
    background: #e2e2e2;
    color: #555;
}

/* BUTTON */
.alert-btn {
    margin-top: 15px;
    display: inline-block;
    background: var(--olive-dark);
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.alert-btn:hover {
    background: var(--olive-light);
}

@media (max-width: 768px) {

    .alert-card,
    .alert-cards {   /* ✅ ADD THIS LINE */
        flex-direction: column;
    }

    .alert-image {
        width: 100%;
        height: 200px;
    }
}

.media-section {
    padding: 60px 20px;
    background: #ece9e9;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* Container should shrink-wrap image */
.media-card {
    
    border-radius: 12px;
    overflow: hidden;      
}

/* Image takes full width and controls height */
.media-card img {
    width: 100%;
    height: auto;         
    display: block;
    border-radius: 12px;  
}


.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.video-wrapper {
    width: 100%;
}

.video-wrapper video {
    width: 100%;
    height: auto;   /* ✅ KEY FIX */
    border-radius: 10px;
    display: block;
}

.captions {
    font-size: 0.9rem;
    margin-top: 8px;
    color: #555;
    font-weight: 700;
}

@media (max-width: 768px) {

    .video-grid {
        grid-template-columns: 1fr; /* single column */
        gap: 15px;
    }

    .video-wrapper video {
        height: auto; /* don't fix height */
    }
}


/* Background overlay */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);

    z-index: 9999;

    /* hide properly */
    visibility: hidden;
    opacity: 0;
}


/* Popup box */
.popup-content {
    width: 380px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    animation: popupFade 0.4s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Animation */
@keyframes popupFade {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Image */
.popup-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Text section */
.popup-text {
    padding: 20px;
    text-align: center;
}

.popup-text h2 {
    margin-bottom: 10px;
}

.popup-text p {
    margin: 6px 0;
    color: #555;
}

/* Button */
.popup-btn {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background: linear-gradient(45deg, #4CAF50, #2e7d32);
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.popup-btn:hover {
    transform: scale(1.05);
}

/* Close button */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
    color: #fff;
}