/* ============================================
   GLOBAL FIXED BACKGROUND FOR ALL SECTIONS (EXCEPT HERO)
   ============================================ */


/* === BODY BACKGROUND - FIXED IMAGE (Baaki sections ke liye) === */

body {
    background: url('back.jpeg') center/cover no-repeat fixed;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
}


/* === SAB SECTIONS (HERO KE ILWA) KE LIYE OVERLAY === */

.about,
.courses,
.fees,
.faculty,
.benefits,
.why-choose,
.admission-process,
.admission,
.reviews,
.gallery,
.blog,
.faq,
.contact {
    position: relative;
    z-index: 1;
    background: rgba(15, 15, 26, 0.88);
    backdrop-filter: blur(2px);
}


/* Har section ka container overlay ke upar */

.about .container,
.courses .container,
.fees .container,
.faculty .container,
.benefits .container,
.why-choose .container,
.admission-process .container,
.admission .container,
.reviews .container,
.gallery .container,
.blog .container,
.faq .container,
.contact .container {
    position: relative;
    z-index: 2;
}


/* ===== RESET & BASE ===== */

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

a {
    text-decoration: none;
    color: inherit;
}

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


/* ===== COLORS ===== */

:root {
    --primary: #FF6B00;
    --primary-dark: #E05A00;
    --secondary: #1A1A2E;
    --accent: #E94560;
    --dark: #0F0F1A;
    --card-bg: #1E1E32;
    --text-light: #B0B0C0;
    --glass-bg: rgba(30, 30, 50, 0.85);
    --border-color: rgba(255, 107, 0, 0.3);
}

.orange {
    color: var(--primary);
}

.accent {
    color: var(--accent);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.section-title span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
    font-weight: 300;
}


/* ===== GLASS EFFECT ===== */

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}


/* ===== BUTTONS ===== */

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 40px rgba(255, 107, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    background: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.3);
}


/* ===== NAVBAR ===== */

.navbar {
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    border-bottom-color: var(--primary);
    box-shadow: 0 4px 40px rgba(255, 107, 0, 0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.3));
}

.logo-text h2 {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-text .tagline {
    font-size: 0.6rem;
    color: var(--text-light);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu li a {
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

.nav-menu li a:hover {
    color: #fff;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
}


/* ===== HERO WITH VIDEO BACKGROUND ===== */

.hero {
    position: relative;
    padding: 150px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

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

.hero .hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero .hero-content {
    flex: 1;
}

.hero .hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #fff;
}

.hero .hero-content h1 .orange {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .hero-content p {
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 600px;
}

.hero .hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero .hero-image {
    flex: 1;
}

.hero .hero-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(255, 107, 0, 0.25);
    border: 2px solid var(--border-color);
    transition: transform 0.5s ease;
}

.hero .hero-image img:hover {
    transform: scale(1.02) rotate(-1deg);
}


/* ===== ABOUT ===== */

.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.about-card {
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.15);
}

.about-card i {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.about-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.about-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}


/* ===== STATS ===== */

.stats {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 70px 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}


/* ===== COURSES ===== */

.courses {
    padding: 100px 0;
}

.course-search {
    text-align: center;
    margin-bottom: 45px;
}

.course-search input {
    width: 100%;
    max-width: 550px;
    padding: 16px 28px;
    border-radius: 60px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    background: var(--card-bg);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.course-search input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.1);
}

.course-search input::placeholder {
    color: var(--text-light);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 25px;
}

.course-card {
    background: rgba(30, 30, 50, 0.85);
    backdrop-filter: blur(8px);
    padding: 28px 22px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
    text-align: center;
    cursor: default;
}

.course-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.1);
}

.course-card .course-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.12), rgba(233, 69, 96, 0.12));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.course-card:hover .course-icon-wrapper {
    transform: scale(1.1);
}

.course-card .course-category {
    display: inline-block;
    background: rgba(255, 107, 0, 0.12);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.course-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.course-card .course-short {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.course-detail-btn {
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.course-detail-btn:hover {
    color: var(--accent);
    transform: translateX(5px);
}


/* ===== COURSE MODAL ===== */

.course-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 30px;
    overflow-y: auto;
}

.course-modal.active {
    display: flex;
}

.course-modal-content {
    background: var(--card-bg);
    border-radius: 24px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
    border: 1px solid rgba(255, 107, 0, 0.15);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
    animation: modalFade 0.3s ease;
}

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

.course-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

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

.course-modal-body {
    color: #fff;
}

.course-modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.course-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(233, 69, 96, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
}

.course-modal-category {
    display: inline-block;
    background: rgba(255, 107, 0, 0.12);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.course-modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.course-meta {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.course-meta span {
    color: var(--text-light);
    font-size: 1rem;
}

.course-meta i {
    color: var(--primary);
    margin-right: 8px;
}

.course-definition,
.course-benefits,
.course-careers {
    margin-bottom: 25px;
}

.course-definition h3,
.course-benefits h3,
.course-careers h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.course-definition h3 i,
.course-benefits h3 i,
.course-careers h3 i {
    color: var(--primary);
    margin-right: 10px;
}

.course-definition p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

.course-benefits ul,
.course-careers ul {
    list-style: none;
    padding: 0;
}

.course-benefits ul li,
.course-careers ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-light);
    font-size: 0.95rem;
}

.course-benefits ul li:last-child,
.course-careers ul li:last-child {
    border-bottom: none;
}

.course-benefits ul li i {
    color: #00c896;
    margin-right: 12px;
}

.course-careers ul li i {
    color: var(--primary);
    margin-right: 12px;
}

.course-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}


/* ===== FEES / TRAINING PROGRAMS ===== */


/* ===== COURSE TRACKS - All in One Card ===== */

.course-tracks {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 12px 0 15px;
    width: 100%;
}

.track-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

.track-item .track-badge {
    font-weight: 600;
    min-width: 70px;
}

.track-item .track-duration {
    color: #ffd700;
    font-weight: 500;
}

.track-item .track-fee {
    color: #00c896;
    font-weight: 500;
}


/* Track Colors */

.track-item.online-track {
    border-left: 3px solid #00c896;
}

.track-item.fast-track {
    border-left: 3px solid #ff6b00;
}

.track-item.regular-track {
    border-left: 3px solid #ffd700;
}


/* ===== MODAL TRACKS ===== */

.modal-tracks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin: 15px 0 25px;
}

.modal-track {
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.modal-track:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-track .track-badge {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.modal-track .track-duration {
    display: block;
    font-size: 0.85rem;
    color: #ffd700;
}

.modal-track .track-fee {
    display: block;
    font-size: 0.85rem;
    color: #00c896;
}

.modal-track .track-total {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 4px;
}

.modal-track.online-track {
    border-color: rgba(0, 200, 150, 0.3);
}

.modal-track.fast-track {
    border-color: rgba(255, 107, 0, 0.3);
}

.modal-track.regular-track {
    border-color: rgba(255, 215, 0, 0.3);
}

.course-modal-tracks h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.course-modal-tracks h3 i {
    color: var(--primary);
    margin-right: 10px;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .modal-tracks-grid {
        grid-template-columns: 1fr;
    }
    .track-item {
        font-size: 0.7rem;
        padding: 5px 10px;
        flex-wrap: wrap;
        gap: 4px;
        justify-content: center;
    }
}

.fees {
    padding: 100px 0;
}

.fees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
}

.fee-card {
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

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

.fee-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: all 0.6s ease;
}

.fee-card:hover .fee-bg {
    transform: scale(1.05);
}

.fee-content {
    position: relative;
    z-index: 1;
    padding: 40px 30px;
    background: rgba(15, 15, 26, 0.85);
    backdrop-filter: blur(8px);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
}

.fee-card:hover .fee-content {
    background: rgba(15, 15, 26, 0.7);
    backdrop-filter: blur(4px);
}

.fee-card .fee-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.fee-card i {
    font-size: 2.8rem;
}

.fee-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.fee-card .price {
    font-size: 2.6rem;
    font-weight: 800;
    margin: 15px 0 5px;
}

.fee-card .duration,
.fee-card .installment {
    color: var(--text-light);
    font-size: 0.95rem;
}

.fee-card .requirement {
    font-size: 0.85rem;
    margin: 10px 0 15px;
}

.fee-card .btn-primary {
    margin-top: 10px;
}


/* ONLINE TRAINING */

.fee-card.online .fee-bg {
    background: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=600&h=400&fit=crop') center/cover no-repeat;
}

.fee-card.online .fee-icon {
    background: rgba(0, 200, 150, 0.15);
}

.fee-card.online i {
    color: #00c896;
}

.fee-card.online .price {
    color: #00c896;
}

.fee-card.online:hover {
    border-color: #00c896;
    box-shadow: 0 20px 60px rgba(0, 200, 150, 0.15);
}

.fee-card.online .btn-primary {
    background: linear-gradient(135deg, #00c896, #00a37a);
    box-shadow: 0 4px 20px rgba(0, 200, 150, 0.25);
}

.fee-card.online .btn-primary:hover {
    box-shadow: 0 8px 40px rgba(0, 200, 150, 0.4);
}


/* PHYSICAL TRAINING */

.fee-card.physical .fee-bg {
    background: url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?w=600&h=400&fit=crop') center/cover no-repeat;
}

.fee-card.physical .fee-icon {
    background: rgba(255, 215, 0, 0.15);
}

.fee-card.physical i {
    color: #ffd700;
}

.fee-card.physical .price {
    color: #ffd700;
}

.fee-card.physical.featured {
    border-color: #ffd700;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.08);
}

.fee-card.physical:hover {
    border-color: #ffd700;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.1);
}

.fee-card.physical .btn-primary {
    background: linear-gradient(135deg, #ffd700, #f0a500);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.fee-card.physical .btn-primary:hover {
    box-shadow: 0 8px 40px rgba(255, 215, 0, 0.35);
}


/* PHYSICAL FAST TRACK */

.fee-card.fasttrack .fee-bg {
    background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=600&h=400&fit=crop') center/cover no-repeat;
}

.fee-card.fasttrack .fee-icon {
    background: rgba(255, 60, 60, 0.15);
}

.fee-card.fasttrack i {
    color: #ff3c3c;
}

.fee-card.fasttrack .price {
    color: #ff3c3c;
}

.fee-card.fasttrack .requirement {
    color: #ff6b6b;
}

.fee-card.fasttrack:hover {
    border-color: #ff3c3c;
    box-shadow: 0 20px 60px rgba(255, 60, 60, 0.15);
}

.fee-card.fasttrack .btn-primary {
    background: linear-gradient(135deg, #ff3c3c, #cc0000);
    box-shadow: 0 4px 20px rgba(255, 60, 60, 0.25);
}

.fee-card.fasttrack .btn-primary:hover {
    box-shadow: 0 8px 40px rgba(255, 60, 60, 0.4);
}


/* FAST TRACK ANIMATION */

.fee-card.fasttrack .fee-bg {
    animation: fastTrackPulse 4s ease-in-out infinite;
}

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

.fee-card.fasttrack:hover .fee-bg {
    animation-play-state: paused;
}


/* ===== FACULTY / TRAINERS ===== */

.faculty {
    padding: 100px 0;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.faculty-card {
    padding: 30px 25px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(30, 30, 50, 0.85);
    backdrop-filter: blur(8px);
}

.faculty-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.12);
}

.faculty-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 18px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.faculty-card:hover .faculty-image {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.2);
}

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

.faculty-card h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.faculty-card .designation {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.faculty-card .bio {
    color: var(--text-light);
    font-size: 0.88rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.faculty-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.faculty-social a {
    display: inline-block;
    background: var(--dark);
    color: #fff;
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 50%;
    text-align: center;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.faculty-social a:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.faculty-social a:hover .fa-facebook {
    color: #1877F2;
}

.faculty-social a:hover .fa-youtube {
    color: #FF0000;
}

.faculty-social a:hover .fa-linkedin {
    color: #0A66C2;
}


/* ===== STUDENT BENEFITS ===== */

.benefits {
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.benefit-item {
    background: rgba(30, 30, 50, 0.85);
    backdrop-filter: blur(8px);
    padding: 18px 22px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.1);
}

.benefit-item i {
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}


/* ===== WHY CHOOSE US ===== */

.why-choose {
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 22px;
}

.why-item {
    background: rgba(30, 30, 50, 0.85);
    backdrop-filter: blur(8px);
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

.why-item:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.1);
}

.why-item i {
    font-size: 2.4rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 12px;
}

.why-item span {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}


/* ===== ADMISSION PROCESS ===== */

.admission-process {
    padding: 100px 0;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.step {
    background: rgba(30, 30, 50, 0.85);
    backdrop-filter: blur(8px);
    padding: 18px 28px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.1);
}

.step span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step .step-text {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}


/* ===== ADMISSION FORM ===== */

.admission {
    padding: 100px 0;
}

.admission-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.admission-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    background: rgba(30, 30, 50, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.admission-card:hover {
    border-color: rgba(255, 107, 0, 0.2);
    box-shadow: 0 30px 100px rgba(255, 107, 0, 0.05);
}

.admission-form-container {
    padding-right: 20px;
}

.form-header {
    margin-bottom: 30px;
}

.form-header i {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.form-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.form-group-modern label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ddd;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.form-group-modern label i {
    color: var(--primary);
    font-size: 0.9rem;
}

.form-group-modern input,
.form-group-modern select {
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.06);
    background: rgba(15, 15, 26, 0.7);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group-modern input:focus,
.form-group-modern select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.08);
    background: rgba(15, 15, 26, 0.9);
}

.form-group-modern input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group-modern select option {
    background: var(--dark);
    color: #fff;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    box-shadow: 0 4px 25px rgba(255, 107, 0, 0.25);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 50px rgba(255, 107, 0, 0.4);
}

.admission-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
}

.info-card {
    background: rgba(15, 15, 26, 0.6);
    backdrop-filter: blur(8px);
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary);
    transform: translateX(5px);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.05);
}

.info-card i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.info-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 2px;
}


/* ===== REVIEWS ===== */

.reviews {
    padding: 100px 0;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background: rgba(30, 30, 50, 0.85);
    backdrop-filter: blur(8px);
    padding: 30px 28px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.1);
}

.reviewer-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 107, 0, 0.3);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.review-card:hover .reviewer-img {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.15);
}

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

.review-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: #fff;
}

.review-content .course {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 6px;
}

.review-content .stars {
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}


/* ===== GALLERY ===== */

.gallery {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

.gallery-grid img:hover {
    transform: scale(1.04);
    border-color: var(--primary);
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.15);
}


/* ===== BLOG ===== */

.blog {
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: rgba(30, 30, 50, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.1);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-body {
    padding: 22px 25px 25px;
}

.blog-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.blog-body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
    line-height: 1.3;
}

.blog-body p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more-btn {
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: var(--accent);
    transform: translateX(5px);
}


/* ===== BLOG MODAL ===== */

.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 30px;
    overflow-y: auto;
}

.blog-modal.active {
    display: flex;
}

.blog-modal-content {
    background: var(--card-bg);
    border-radius: 24px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
    border: 1px solid rgba(255, 107, 0, 0.15);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
    animation: modalFade 0.3s ease;
}

.blog-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

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

.blog-modal-body {
    color: #fff;
}

.blog-modal-body .modal-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
}

.blog-modal-body .modal-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.blog-modal-body h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.blog-modal-body .meta {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-modal-body .meta i {
    color: var(--primary);
    margin-right: 6px;
}

.blog-modal-body .full-content {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

.blog-modal-body .full-content p {
    margin-bottom: 15px;
}

.blog-modal-body .full-content ul {
    margin: 15px 0 20px 20px;
}

.blog-modal-body .full-content ul li {
    margin-bottom: 8px;
    list-style-type: disc;
}


/* ===== FAQ ===== */

.faq {
    padding: 100px 0;
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(30, 30, 50, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 107, 0, 0.15);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.05);
}

.faq-question {
    padding: 20px 28px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
    color: #fff;
    font-size: 1.05rem;
    gap: 15px;
}

.faq-question:hover {
    background: rgba(255, 107, 0, 0.05);
}

.faq-question i {
    transition: 0.3s;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 28px 24px;
    color: var(--text-light);
    display: none;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin-bottom: 12px;
}

.faq-answer ul {
    margin: 10px 0 15px 20px;
}

.faq-answer ul li {
    margin-bottom: 6px;
    list-style-type: disc;
}

.faq-answer strong {
    color: #fff;
}


/* ===== CONTACT ===== */

.contact {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info p {
    margin: 16px 0;
    font-size: 1.1rem;
}

.contact-info i {
    width: 36px;
    color: var(--primary);
    font-size: 1.3rem;
}

.social-links a {
    display: inline-block;
    margin: 12px 10px 0 0;
    background: rgba(30, 30, 50, 0.85);
    backdrop-filter: blur(4px);
    padding: 14px 20px;
    border-radius: 14px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 16px;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.06);
    background: rgba(30, 30, 50, 0.85);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.05);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.map iframe {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.06);
}


/* ===== FOOTER ===== */

footer {
    padding: 40px 0;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(15, 15, 26, 0.92);
}

footer p {
    color: var(--text-light);
    font-size: 0.95rem;
}

footer p strong {
    color: #fff;
}

footer .footer-social {
    margin: 15px 0 10px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

footer .footer-social a {
    display: inline-block;
    background: rgba(30, 30, 50, 0.85);
    backdrop-filter: blur(4px);
    color: #fff;
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 50%;
    text-align: center;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

footer .footer-social a:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.12);
}

footer .footer-social a:hover .fa-facebook {
    color: #1877F2;
}

footer .footer-social a:hover .fa-instagram {
    color: #E4405F;
}

footer .footer-social a:hover .fa-youtube {
    color: #FF0000;
}

footer .footer-links {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

footer .footer-links a {
    color: var(--text-light);
    transition: 0.3s;
    font-size: 0.9rem;
}

footer .footer-links a:hover {
    color: var(--primary);
}


/* ===== WHATSAPP FLOAT ===== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(-5deg);
}


/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
    .hero .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero .hero-content p {
        max-width: 100%;
    }
    .hero .hero-buttons {
        justify-content: center;
    }
    .hero .hero-image img {
        max-width: 400px;
    }
    .admission-card {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .admission-form-container {
        padding-right: 0;
    }
    .admission-info {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .info-card {
        flex: 1;
        min-width: 160px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        background: var(--secondary);
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        padding: 25px 0;
        gap: 12px;
        border-bottom: 2px solid var(--primary);
        backdrop-filter: blur(10px);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu li {
        text-align: center;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .hero {
        padding: 80px 0;
        min-height: auto;
    }
    .hero .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero .hero-image img {
        max-width: 300px;
    }
    .fees-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    .step {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
    .admission-card {
        padding: 25px 20px;
        border-radius: 20px;
    }
    .form-header h3 {
        font-size: 1.5rem;
    }
    .admission-info {
        flex-direction: column;
    }
    .info-card {
        min-width: unset;
    }
    .reviews-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid img {
        height: 180px;
    }
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
    .blog-modal-content {
        padding: 25px 20px;
    }
    .blog-modal-body h2 {
        font-size: 1.5rem;
    }
    .blog-modal-body .modal-img {
        height: 200px;
    }
    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    .faq-answer {
        padding: 0 20px 20px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .map iframe {
        height: 280px;
    }
    footer {
        padding: 30px 0;
    }
    footer .footer-links {
        gap: 18px;
    }
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
    .logo-img {
        width: 40px;
        height: 40px;
    }
    .logo-text h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero .hero-image img {
        max-width: 250px;
    }
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    .stat-item h3 {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .fee-content {
        padding: 30px 20px;
        min-height: 350px;
    }
    .fee-card .price {
        font-size: 2rem;
    }
    .fee-card {
        min-height: 350px;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .benefit-item {
        padding: 18px 20px;
        min-height: 70px;
    }
    .benefit-item i {
        font-size: 1.3rem;
        padding: 8px;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .why-item {
        padding: 20px 15px;
    }
    .step {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    .step span {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    .admission-card {
        padding: 20px 15px;
    }
    .form-group-modern input,
    .form-group-modern select {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    .btn-submit {
        padding: 14px;
        font-size: 1rem;
    }
    .reviews-slider {
        grid-template-columns: 1fr;
    }
    .review-card {
        padding: 25px 20px;
    }
    .reviewer-img {
        width: 70px;
        height: 70px;
    }
    .faculty-grid {
        grid-template-columns: 1fr;
    }
    .faculty-image {
        width: 120px;
        height: 120px;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .gallery-grid img {
        height: 140px;
        border-radius: 12px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-modal {
        padding: 15px;
    }
    .blog-modal-content {
        padding: 20px 15px;
    }
    .blog-modal-body h2 {
        font-size: 1.3rem;
    }
    .blog-modal-body .modal-img {
        height: 160px;
    }
    .faq-question {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    .faq-answer {
        padding: 0 16px 16px;
        font-size: 0.9rem;
    }
    footer {
        padding: 25px 0;
    }
    footer p {
        font-size: 0.85rem;
    }
    footer .footer-links {
        gap: 14px;
        flex-direction: column;
        align-items: center;
    }
    .course-modal {
        padding: 15px;
    }
    .course-modal-content {
        padding: 20px 15px;
    }
    .course-modal-header h2 {
        font-size: 1.2rem;
    }
    .course-cta {
        flex-direction: column;
        align-items: center;
    }
}