/* ============================================
   style.css - Dnyanvardhini Nursing College
   Common Styles for All Pages
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1a2c3e;
    /* color: #e2e3e4; */
    line-height: 1.5;
    overflow-x: hidden;
}

:root {
    --primary: #0a5c7e;
    --primary-dark: #06455f;
    --primary-light: #e8f4f8;
    --secondary: #1b5e8e;
    --secondary-dark: #1b5e8e;
    --accent: #f39c12;
    --dark: #2c3e50;
    --gray: #7f8c8d;
    --light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 45px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

section {
    /* padding: 80px 0; */
    padding: 40px 0;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.text-white {
    color: #e2e3e4;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--secondary);
    border-radius: 4px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-top: 15px;
}

/* ============================================
   Button Styles
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(10, 92, 126, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 92, 126, 0.4);
}

.btn-danger {
    background: #ff1717;
    color: white;
    box-shadow: 0 4px 15px rgba(10, 92, 126, 0.3);
}

.btn-danger:hover {
    background: #ff1717;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 92, 126, 0.4);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-outline-danger {
    background: transparent;
    border: 2px solid #ff1717;
    color: #ff1717;
}

.btn-outline-danger:hover {
    background: #ff1717;
    color: white;
}

/* ============================================
   Navbar Styles (Common for all pages)
   ============================================ */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    /* background: rgba(255, 255, 255, 0.98); */
    background: #0a4d8c;
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.logo-text h1 {
    font-size: 1.4rem;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.7rem;
    letter-spacing: 1px;
    /* color: var(--secondary); */
    color: #e2e3e4;
    font-weight: 600;
}

.uppercase {
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: #ffffff;
}

a.uppercase {
    text-transform: uppercase;
}

.nav-links a.active {
    /* border-bottom: 3px solid var(--secondary); */
    border-bottom: 3px solid #e15351;
    padding-bottom: 5px;
}

.mobile-menu {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #FF5722;
}

.nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #F44336;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow);
    z-index: 999;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: stretch;
}

/* ============================================
   Marquee / Ticker Section
   ============================================ */
/* .ticker-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    overflow: hidden;
    padding: 12px 0;
    border-bottom: 2px solid var(--secondary);
} */

.ticker-section {
    background: linear-gradient(360deg, #db2c2a, #dd3532, #e14f4c);
    color: white;
    overflow: hidden;
    padding: 12px 0;
    border-bottom: 2px solid #f95526;
}

.ticker-container {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
}

.ticker-label {
    background: var(--secondary);
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
    z-index: 2;
    position: relative;
}

.ticker-label i {
    font-size: 0.9rem;
}

marquee {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
}

marquee a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

marquee a:hover {
    text-decoration: underline;
    color: var(--secondary);
}

.ticker-icon {
    margin-right: 15px;
    font-size: 1.1rem;
}

/* ============================================
   Hero Section (Home Page)
   ============================================ */
.hero {
    background: linear-gradient(135deg, #eef7fc 0%, #d4efe3 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero:before {
    /* content: '🏥'; */
    position: absolute;
    font-size: 300px;
    opacity: 0.05;
    right: -50px;
    bottom: -80px;
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1.2;
}

.hero-badge {
    background: rgba(39, 174, 96, 0.15);
    color: var(--secondary);
    padding: 6px 18px;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: var(--dark);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #06455f85;
}

.hero-image {
    flex: 0.9;
    background: linear-gradient(135deg, var(--primary-light), #fff);
    border-radius: 40px;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-image:after {
    content: '👩‍⚕️👨‍⚕️';
    font-size: 100px;
    opacity: 0.8;
}

/* ============================================
   Common Card Grids
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid #eee;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: var(--primary);
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

/* ============================================
   Achievements Section
   ============================================ */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.achievement-card {
    padding: 2rem;
    background: var(--primary);
    color: white;
    border-radius: 24px;
    transition: var(--transition);
}

.achievement-card:hover {
    transform: translateY(-5px);
    background: var(--primary-dark);
}

.achievement-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.achievement-number {
    font-size: 2rem;
    font-weight: 800;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-text {
    font-style: italic;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ============================================
   Events Section
   ============================================ */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-date {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    display: inline-block;
    font-weight: 600;
}

.event-content {
    padding: 1.5rem;
}

.event-content h3 {
    margin-bottom: 0.5rem;
}

/* ============================================
   Photo Gallery
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    background: var(--light);
    border-radius: 20px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: var(--transition);
    cursor: pointer;
    gap: 10px;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow);
}

.gallery-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
}

/* ============================================
   Partners Section
   ============================================ */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    align-items: center;
}

.partner-logo {
    background: var(--light);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    color: var(--primary);
}

/* ============================================
   About Page Specific Styles
   ============================================ */
.about-hero {
    background: linear-gradient(135deg, #0a5c7e 0%, #1e8449 100%);
    /* background: #7f8c8d; */
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero:before {
    content: '👩‍⚕️';
    position: absolute;
    font-size: 200px;
    opacity: 0.08;
    right: 0;
    bottom: -50px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-card .number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.mv-card {
    padding: 2rem;
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    text-align: center;
}

.mv-card.mission {
    border-bottom: 5px solid var(--secondary);
}

.mv-card.vision {
    border-bottom: 5px solid var(--primary);
}

.mv-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mv-card.mission i {
    color: var(--secondary);
}

.mv-card.vision i {
    color: var(--primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.8rem;
    margin: 2rem 0;
}

.value-item {
    text-align: center;
    padding: 1.8rem;
    background: var(--light);
    border-radius: 20px;
    transition: all 0.3s;
}

.value-item:hover {
    background: var(--primary-light);
    transform: scale(1.02);
}

.value-item i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    display: block;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
    padding-left: 2rem;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--secondary), var(--primary));
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--secondary);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--secondary);
}

.timeline-year {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.leader-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.leader-card:hover {
    transform: translateY(-5px);
}

.leader-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-light), #d5f5e3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.5rem;
    color: var(--primary);
}

.accreditation-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.badge {
    background: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-radius: 30px;
    margin: 40px 0;
}

/* College Info Section */
.college-info-section {
    padding: 60px 0;
    background: var(--white);
}

.college-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.college-info-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.college-info-content h2:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
}

.college-info-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.college-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.college-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--light);
    padding: 10px 18px;
    border-radius: 50px;
}

.college-feature i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.college-info-image {
    background: linear-gradient(135deg, var(--primary-light), #d5f5e3);
    border-radius: 28px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.college-info-image img {
    max-width: 100%;
    border-radius: 20px;
}

.college-info-image .college-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
}

/* Co-founder Section */
.cofounder-section {
    background: linear-gradient(135deg, var(--primary-light), #fff);
    padding: 70px 0;
}

.cofounder-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.cofounder-image {
    text-align: center;
}

.cofounder-avatar {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-hover);
}

.cofounder-avatar i {
    font-size: 8rem;
    color: white;
}

.cofounder-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.cofounder-title {
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 4px 15px;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 30px;
}

.cofounder-content p {
    color: var(--gray);
    line-height: 1.8;
    margin: 1rem 0;
}

.cofounder-quote {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--secondary);
    font-style: italic;
}

/* Management Team Section */
.management-section {
    padding: 70px 0;
    background: var(--light);
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.management-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.management-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.management-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-light), #d5f5e3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1rem;
    font-size: 3rem;
    color: var(--primary);
}

.management-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.management-position {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.management-desc {
    color: var(--gray);
    font-size: 0.85rem;
    padding: 0 1rem 1.5rem;
}

/* Welcome Text Styling */
.welcome-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.welcome-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
}

.welcome-text .highlight {
    color: var(--primary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {

    .college-info-grid,
    .cofounder-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cofounder-avatar {
        width: 220px;
        height: 220px;
    }

    .cofounder-avatar i {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {

    .college-info-content h2,
    .cofounder-content h2 {
        font-size: 1.6rem;
    }

    .hero-grid {
        display: flex !important;
        align-items: stretch;
        gap: 4rem;
    }

    .management-grid {
        grid-template-columns: 1fr;
    }

    .cofounder-avatar {
        width: 180px;
        height: 180px;
    }

    .cofounder-avatar i {
        font-size: 5rem;
    }
}

/* ============================================
   Courses Page Specific Styles
   ============================================ */
.courses-hero {
    background: linear-gradient(135deg, #0a5c7e 0%, #1e8449 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.courses-hero:before {
    content: '📚';
    position: absolute;
    font-size: 200px;
    opacity: 0.08;
    right: 0;
    bottom: -50px;
}

.courses-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.courses-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 12px 28px;
    background: var(--light);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.tab-btn.active {
    background: var(--primary);
    color: white;
}

.tab-btn:hover:not(.active) {
    background: var(--primary-light);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.course-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.course-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 1.5rem;
    color: white;
    position: relative;
}

.course-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

.course-duration {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.course-body {
    padding: 1.5rem;
}

.course-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-tag {
    background: var(--light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.info-tag i {
    margin-right: 5px;
    color: var(--secondary);
}

.course-body p {
    color: var(--gray);
    margin: 1rem 0;
    line-height: 1.6;
}

.course-footer {
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid #eee;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.course-category {
    display: none;
}

.course-category.active-category {
    display: block;
}

/* Additional Courses Page Enhancements */

/* Course Header with Icon */
.course-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.course-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.course-title i {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-title h3 {
    font-size: 1.6rem;
    margin: 0;
}

/* Admission Status Badge */
.admission-status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.25);
}

.admission-status.open {
    background: #de3938;
}

.admission-status.limited {
    background: #f39c12;
}

/* Fee Tag */
.fee-tag {
    background: var(--light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.fee-tag i {
    color: var(--secondary);
}

/* Course Features List */
.course-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.feature-badge {
    background: rgba(39, 174, 96, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--secondary);
}

/* Counter Section */
.counter-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.counter-item {
    text-align: center;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Enhanced Course Card */
.course-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-body {
    flex: 1;
}

.course-footer {
    margin-top: auto;
}

/* View Details Button */
.btn-details {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background: var(--primary);
    color: white;
}

/* Modal Styles for Course Details */
.course-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.course-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    max-width: 500px;
    width: 90%;
    border-radius: 24px;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.modal-body {
    padding: 1.5rem;
}

.modal-body p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .course-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .hero-grid {
        display: flex !important;
        align-items: stretch;
        gap: 4rem;
    }

    .course-title {
        justify-content: center;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .counter-number {
        font-size: 1.8rem;
    }
}

/* ============================================
   Admissions Page Specific Styles
   ============================================ */
.admissions-hero {
    background: linear-gradient(135deg, #0a5c7e 0%, #1e8449 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.admissions-hero:before {
    content: '📝';
    position: absolute;
    font-size: 200px;
    opacity: 0.08;
    right: 0;
    bottom: -50px;
}

.admissions-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.admissions-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: var(--shadow);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.info-card h3 {
    margin-bottom: 0.8rem;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h4 {
    margin-bottom: 0.5rem;
}

.fee-card {
    background: var(--primary);
    color: white;
    border-radius: 28px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.fee-amount {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1rem 0;
}

.fee-details {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 1rem;
    margin-top: 1rem;
}

.form-container {
    background: var(--light);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
    transition: var(--transition);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 92, 126, 0.1);
}

.eligibility-table {
    overflow-x: auto;
}

.eligibility-table table {
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.eligibility-table th {
    background: var(--primary);
    color: white;
    padding: 15px;
    text-align: center;
}

.eligibility-table td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.eligibility-table tr:hover {
    background: var(--primary-light);
}

.doc-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.doc-item {
    background: white;
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow);
}

.doc-item i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.success-message {
    display: none;
    background: var(--secondary);
    color: white;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

/* Hero Section Enhancement */
.admissions-hero {
    position: relative;
    background: linear-gradient(135deg, #0a5c7e 0%, #1e8449 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
    overflow: hidden;
}

.admissions-hero:before {
    content: '📝';
    position: absolute;
    font-size: 200px;
    opacity: 0.08;
    right: 0;
    bottom: -50px;
}

.admissions-hero:after {
    content: '👩‍⚕️';
    position: absolute;
    font-size: 150px;
    opacity: 0.05;
    left: 0;
    top: -50px;
}

/* Info Cards Enhancement */
.info-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(10, 92, 126, 0.1), transparent);
    transition: left 0.5s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.info-card:hover i {
    transform: scale(1.1);
}

/* Steps Enhancement */
.step {
    position: relative;
    overflow: hidden;
}

.step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.step:hover::after {
    transform: scaleX(1);
}

.step-number {
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    background: var(--secondary);
}

/* Fee Card with Hidden Fees */
.fee-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.fee-card::before {
    content: '💰';
    position: absolute;
    font-size: 100px;
    opacity: 0.05;
    right: -30px;
    bottom: -30px;
}

.fee-amount {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1rem 0;
    letter-spacing: 2px;
}

.fee-amount span {
    font-size: 1rem;
    font-weight: normal;
    opacity: 0.8;
}

.fee-details p i {
    margin-right: 8px;
}

/* Form Enhancement */
.form-container {
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 92, 126, 0.1);
}

/* Table Enhancement */
.eligibility-table table {
    border-collapse: collapse;
}

.eligibility-table th {
    background: var(--primary);
    color: white;
    padding: 15px;
    font-weight: 600;
}

.eligibility-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.eligibility-table tr:hover {
    background: var(--primary-light);
}

/* Fee Hidden Style */
.fee-hidden {
    font-family: monospace;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #f39c12;
}

.enquiry-btn {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enquiry-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .fee-amount {
        font-size: 1.8rem;
    }

    .hero-grid {
        display: flex !important;
        align-items: stretch;
        gap: 4rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .step {
        min-width: 150px;
    }

    .steps-container {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .form-grid {
        gap: 1rem;
    }

    .hero-grid {
        display: flex !important;
        align-items: stretch;
        gap: 4rem;
    }

    .btn-primary, .btn-outline {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .fee-card {
        padding: 1.5rem;
    }
}

/* Animated Counter */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter-value {
    animation: countUp 0.8s ease forwards;
}

/* ============================================
   Facilities Page Specific Styles
   ============================================ */
.facilities-hero {
    background: linear-gradient(135deg, #0a5c7e 0%, #1e8449 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.facilities-hero:before {
    content: '🏥';
    position: absolute;
    font-size: 200px;
    opacity: 0.08;
    right: 0;
    bottom: -50px;
}

.facilities-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.facilities-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.stats-banner {
    background: #e15351;
    color: #e2e3e4;
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number-large {
    font-size: 2.5rem;
    font-weight: 800;
}

.facility-category {
    margin-bottom: 4rem;
}

.facility-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary);
    border-left: 5px solid var(--secondary);
    padding-left: 20px;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.facility-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.facility-img {
    height: 220px;
    background: linear-gradient(135deg, var(--primary-light), #d5f5e3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
}

.facility-content {
    padding: 1.5rem;
}

.facility-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.facility-content p {
    color: var(--gray);
    line-height: 1.6;
}

.facility-features {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: var(--light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.virtual-tour {
    background: var(--light);
    border-radius: 28px;
    padding: 3rem;
    text-align: center;
    margin: 2rem 0;
}

.tour-placeholder {
    background: var(--primary-light);
    border-radius: 20px;
    padding: 60px;
    margin-top: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.tour-placeholder:hover {
    background: var(--primary);
    color: white;
}


/* Form Container Styles */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.justify-content-center {
    justify-content: center;
}

.col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
    padding: 0 15px;
}

.form-container {
    background: white;
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-size: 0.9rem;
}

.form-group label i {
    color: var(--secondary);
    width: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
    transition: var(--transition);
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 92, 126, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    background: #fff5f5;
}

.validation-hint {
    display: block;
    margin-top: 5px;
    font-size: 0.7rem;
    color: #e74c3c;
}

@media (max-width: 992px) {
    .col-md-10 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.hero-grid {
    display: flex !important;
    align-items: stretch;
    gap: 4rem;
}

@media (max-width: 768px) {
    .form-container {
        padding: 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-group.full-width {
        grid-column: span 1;
    }
}

/* ============================================
   Contact Page Specific Styles
   ============================================ */
/* Additional Contact Page Styles */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, #0a5c7e 0%, #1e8449 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
    overflow: hidden;
}

.contact-hero:before {
    content: '📞';
    position: absolute;
    font-size: 200px;
    opacity: 0.08;
    right: 0;
    bottom: -50px;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-card {
    background: var(--white);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.info-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--dark);
}

.info-content p,
.info-content a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.info-content a:hover {
    color: var(--primary);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.contact-form-card {
    background: var(--white);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
    transition: var(--transition);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 92, 126, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    background: #fff5f5;
}

.success-message {
    background: #de3938;
    color: white;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.error-message {
    background: #e74c3c;
    color: white;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.map-container {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.faq-answer {
    color: var(--gray);
    line-height: 1.6;
}

.emergency-banner {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 28px;
    padding: 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.emergency-banner:before {
    content: '🚨';
    position: absolute;
    font-size: 100px;
    opacity: 0.1;
    right: 20px;
    top: 20px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {

    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }

    .emergency-banner {
        padding: 2rem;
    }

    .emergency-banner div strong {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 576px) {
    .social-links {
        gap: 1rem;
    }

    .hero-grid {
        display: flex !important;
        align-items: stretch;
        gap: 4rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .faq-question {
        font-size: 1rem;
    }
}

/* Additional Contact Page Styles */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, #0a5c7e 0%, #1e8449 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
    overflow: hidden;
}

.contact-hero:before {
    content: '📞';
    position: absolute;
    font-size: 200px;
    opacity: 0.08;
    right: 0;
    bottom: -50px;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-card {
    background: var(--white);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.info-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--dark);
}

.info-content p,
.info-content a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.info-content a:hover {
    color: var(--primary);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.contact-form-card {
    background: var(--white);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
    transition: var(--transition);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 92, 126, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    background: #fff5f5;
}

.success-message {
    background: #de3938;
    color: white;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.error-message {
    background: #e74c3c;
    color: white;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.map-container {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.faq-answer {
    color: var(--gray);
    line-height: 1.6;
}

.emergency-banner {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 28px;
    padding: 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.emergency-banner:before {
    content: '🚨';
    position: absolute;
    font-size: 100px;
    opacity: 0.1;
    right: 20px;
    top: 20px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {

    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }

    .emergency-banner {
        padding: 2rem;
    }

    .emergency-banner div strong {
        font-size: 1.2rem !important;
    }
}

/* ============================================
   Footer Styles (Common for all pages)
   ============================================ */
footer {
    background: #0a2a33;
    color: #bdd3dc;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.2rem;
}

.footer-col a {
    color: #bdd3dc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.6rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--secondary);
}

.copyright {
    text-align: center;
    border-top: 1px solid #1f5567;
    padding-top: 25px;
    font-size: 0.85rem;
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    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;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ============================================
   Responsive Design (Common)
   ============================================ */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 50px 0;
    }

    .about-hero h1,
    .courses-hero h1,
    .admissions-hero h1,
    .facilities-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .ticker-label {
        font-size: 0.7rem;
        padding: 3px 10px;
    }

    marquee {
        font-size: 0.8rem;
    }

    .virtual-tour {
        padding: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Comparison Table Styles */
.compare-section {
    background: var(--light);
}

.compare-table {
    overflow-x: auto;
}

.compare-table table {
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.compare-table th {
    background: var(--primary);
    color: white;
    padding: 15px;
    text-align: center;
}

.compare-table td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.compare-table tr:hover {
    background: var(--primary-light);
}

/* ***** NEW CSS HOME PAGE ***** */
/* Additional slider styles that extend style.css */

/* Hero Section with Slider */
.hero {
    background: linear-gradient(135deg, #eef7fc 0%, #d4efe3 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    flex: 0.9;
    min-height: 400px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    border-radius: 40px;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
}

/* Slide content overlay for text on images */
.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 30px 20px 20px;
    text-align: center;
}

.slide-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: white;
}

.slide-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(10, 92, 126, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.05);
}

.slider-btn-prev {
    left: 15px;
}

.slider-btn-next {
    right: 15px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--secondary);
    width: 25px;
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-slider-container {
        min-height: 350px;
        margin-top: 30px;
    }

    .hero-grid {
        flex-direction: column;
    }

    .hero-content {
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .stat {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-slider-container {
        min-height: 280px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .slide-content h3 {
        font-size: 1rem;
    }

    .slide-content p {
        font-size: 0.7rem;
    }
}

img.set-banner-img {
    height: 100%;
    width: 100%;
    object-fit: fill;
}

/* ========== LATEST NEWS SCROLLER SECTION ========== */
.news-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    padding: 60px 0;
    overflow: hidden;
}

.news-header {
    text-align: center;
    margin-bottom: 40px;
}

.news-header h2 {
    position: relative;
    display: inline-block;
}

.news-header h2:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--secondary);
    border-radius: 4px;
}

.news-scroller-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.news-scroller {
    display: flex;
    gap: 25px;
    animation: scrollNews 30s linear infinite;
    width: fit-content;
}

.news-scroller:hover {
    animation-play-state: paused;
}

.news-card {
    min-width: 320px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 5px solid #dc2927;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.news-date {
    background: #dc2927;
    color: white;
    padding: 8px 15px;
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.news-content p {
    color: var(--gray);
    line-height: 1.5;
}

.read-more {
    display: inline-block;
    margin-top: 12px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
}

@keyframes scrollNews {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========== ABOUT US SECTION (NEW) ========== */
.about-us-section {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.about-left h2:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
}

.about-left p {
    color: var(--gray);
    line-height: 1.7;
    margin: 1.5rem 0;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature i {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.about-right {
    background: #0b5694;
    border-radius: 28px;
    padding: 2rem;
    color: white;
}

.about-right h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.mission-vision {
    margin-bottom: 2rem;
}

.mission-vision h4 {
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.mission-vision p {
    opacity: 0.9;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.about-stat {
    text-align: center;
    flex: 1;
}

.about-stat-number {
    font-size: 2rem;
    font-weight: 800;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-card {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .hero-slider-container {
        min-height: 280px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .slide-content h3 {
        font-size: 1rem;
    }

    .news-card {
        min-width: 260px;
    }
}

/* Gallery Section Styles */
.gallery-section {
    background: var(--light, #f8f9fa);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--dark, #2c3e50);
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--secondary, #de3938);
    border-radius: 4px;
}

.section-header p {
    color: var(--gray, #7f8c8d);
    font-size: 1.1rem;
    margin-top: 15px;
}

/* Gallery Section Styles */
.gallery-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    padding: 80px 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: #de3938;
    border-radius: 4px;
}

.section-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-top: 15px;
}

/* Gallery Filters / Tabs */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 28px;
    background: white;
    border: 2px solid #0a5c7e;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #0a5c7e;
}

.filter-btn:hover {
    background: #0a5c7e;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(10, 92, 126, 0.3);
}

.filter-btn.active {
    background: #0a5c7e;
    color: white;
    box-shadow: 0 5px 15px rgba(10, 92, 126, 0.3);
}

/* Gallery Grid - 3x3 Layout */
/* .gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
} */

.gallery-container {
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    align-items: stretch;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    aspect-ratio: 1 / 1;
    background: #f0f0f0;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Gradient Overlay on hover */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 92, 126, 0.7), rgba(39, 174, 96, 0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Overlay text */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    padding: 20px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
}

/* Icon on hover */
.gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-size: 3rem;
    transition: transform 0.3s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 85%;
    max-height: 80%;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 25px;
    border-radius: 30px;
    white-space: nowrap;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.close-lightbox:hover {
    color: #de3938;
    transform: scale(1.1);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: #0a5c7e;
    transform: translateY(-50%) scale(1.1);
}

/* Animation for filter items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item {
    animation: fadeInUp 0.5s ease forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-container {
        gap: 20px;
    }

    .gallery-overlay h4 {
        font-size: 1rem;
    }

    .gallery-overlay p {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-filters {
        gap: 10px;
        margin-bottom: 30px;
    }

    .filter-btn {
        padding: 6px 16px;
        font-size: 0.8rem;
    }

    .gallery-overlay {
        padding: 12px;
    }

    .gallery-overlay h4 {
        font-size: 0.85rem;
    }

    .gallery-overlay p {
        font-size: 0.65rem;
    }

    .gallery-icon {
        font-size: 2rem;
    }

    .lightbox-prev, .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .close-lightbox {
        font-size: 30px;
        top: 15px;
        right: 20px;
    }

    .lightbox-caption {
        font-size: 0.85rem;
        padding: 8px 20px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-grid {
        display: flex !important;
        align-items: stretch;
        gap: 4rem;
    }

    .filter-btn {
        padding: 5px 12px;
        font-size: 0.7rem;
    }

    .gallery-filters {
        gap: 8px;
    }

    .lightbox-caption {
        font-size: 0.7rem;
        padding: 6px 15px;
        white-space: nowrap;
    }
}

/* <!-- ============================================
     UPCOMING EVENTS SECTION - WITH IMAGES
     50x50px Circular Images | Fully Responsive
     ============================================ --> */


/* Events Section Styles */
.events-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: #de3938;
    border-radius: 4px;
}

.section-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-top: 15px;
}

/* Events Grid - Responsive */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
}

/* Event Card */
.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Event Image Container - 50x50px circular image */
.event-image-container {
    display: flex;
    justify-content: center;
    padding: 25px 20px 15px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.event-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.event-card:hover .event-image {
    transform: scale(1.1);
    border-color: #0a4d8c40;
}

/* Alternative: If you want exact 50x50px */
.event-image-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Event Date Badge */
.event-date {
    background: #0a5c7e;
    color: white;
    padding: 10px 20px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 30px;
    margin: 15px 20px 0 20px;
    text-align: center;
}

.event-date i {
    margin-right: 8px;
}

/* Event Content */
.event-content {
    padding: 20px;
    text-align: center;
}

.event-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
    font-family: 'Poppins', sans-serif;
}

.event-content p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Button inside card */
.event-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: transparent;
    border: 2px solid #0a5c7e;
    color: #0a5c7e;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.event-btn:hover {
    background: #0a5c7e;
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .events-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .events-grid {
        gap: 25px;
    }

    .event-image {
        width: 65px;
        height: 65px;
    }
}

@media (max-width: 768px) {
    .events-section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .event-image {
        width: 60px;
        height: 60px;
    }

    .event-date {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .event-content h3 {
        font-size: 1.1rem;
    }

    .event-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .events-section {
        padding: 40px 0;
    }

    .hero-grid {
        display: flex !important;
        align-items: stretch;
        gap: 4rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .event-image {
        width: 55px;
        height: 55px;
    }

    .event-date {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .event-content {
        padding: 15px;
    }

    .event-content h3 {
        font-size: 1rem;
    }
}

/* Campus Gallery Section Styles */
.campus-gallery-section {
    background: var(--light, #f8f9fa);
    padding: 80px 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--dark, #2c3e50);
    position: relative;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--secondary, #de3938);
    border-radius: 4px;
}

.section-header p {
    color: var(--gray, #7f8c8d);
    font-size: 1.1rem;
    margin-top: 15px;
}

/* Gallery Slider Container */
.gallery-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.gallery-slider {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
    cursor: grab;
}

.gallery-slider:active {
    cursor: grabbing;
}

/* Gallery Item Card */
.gallery-slide {
    min-width: calc(33.333% - 17px);
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow, 0 10px 30px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-slide:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover, 0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Gallery Image */
.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-slide:hover .gallery-img {
    transform: scale(1.05);
}

/* Icon Style (if using icons instead of images) */
.gallery-icon-box {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--primary, #0a5c7e), var(--secondary, #de3938));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.5s ease;
}

.gallery-icon-box i {
    font-size: 4rem;
    margin-bottom: 15px;
}

.gallery-icon-box span {
    font-size: 1.2rem;
    font-weight: 600;
}

.gallery-slide:hover .gallery-icon-box {
    transform: scale(1.02);
}

/* Gallery Content */
.gallery-content {
    padding: 20px;
    text-align: center;
}

.gallery-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark, #2c3e50);
}

.gallery-content p {
    font-size: 0.85rem;
    color: var(--gray, #7f8c8d);
}

/* Slider Navigation Buttons */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--primary, #0a5c7e);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-nav-btn:hover {
    background: var(--secondary, #de3938);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: -20px;
}

.slider-next {
    right: -20px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--secondary, #de3938);
    width: 30px;
    border-radius: 10px;
}

/* Drag Scroll Indicator */
.drag-scroll-indicator {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--gray, #7f8c8d);
}

.drag-scroll-indicator i {
    margin: 0 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-slide {
        min-width: calc(50% - 12.5px);
    }

    .hero-grid {
        display: flex !important;
        align-items: stretch;
        gap: 4rem;
    }

    .slider-prev {
        left: -15px;
    }

    .slider-next {
        right: -15px;
    }

    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .campus-gallery-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .gallery-slide {
        min-width: 100%;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .slider-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .gallery-img, .gallery-icon-box {
        height: 200px;
    }

    .gallery-icon-box i {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .campus-gallery-section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .gallery-img, .gallery-icon-box {
        height: 180px;
    }

    .gallery-content h3 {
        font-size: 1rem;
    }

    .slider-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* <!-- ============================================
     CAMPUS GALLERY SECTION WITH SLIDER
     Images/Icons + Touch-Friendly Slider
     Fully Responsive
     ============================================ --> */

/* Campus Gallery Section Styles */
.campus-gallery-section {
    background: var(--light, #f8f9fa);
    padding: 80px 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--dark, #2c3e50);
    position: relative;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--secondary, #de3938);
    border-radius: 4px;
}

.section-header p {
    color: var(--gray, #7f8c8d);
    font-size: 1.1rem;
    margin-top: 15px;
}

/* Gallery Slider Container */
.gallery-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.gallery-slider {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
    cursor: grab;
}

.gallery-slider:active {
    cursor: grabbing;
}

/* Gallery Item Card */
.gallery-slide {
    min-width: calc(33.333% - 17px);
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow, 0 10px 30px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-slide:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover, 0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Gallery Image */
.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-slide:hover .gallery-img {
    transform: scale(1.05);
}

/* Icon Style (if using icons instead of images) */
.gallery-icon-box {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--primary, #0a5c7e), var(--secondary, #de3938));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.5s ease;
}

.gallery-icon-box i {
    font-size: 4rem;
    margin-bottom: 15px;
}

.gallery-icon-box span {
    font-size: 1.2rem;
    font-weight: 600;
}

.gallery-slide:hover .gallery-icon-box {
    transform: scale(1.02);
}

/* Gallery Content */
.gallery-content {
    padding: 20px;
    text-align: center;
}

.gallery-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark, #2c3e50);
}

.gallery-content p {
    font-size: 0.85rem;
    color: var(--gray, #7f8c8d);
}

/* Slider Navigation Buttons */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--primary, #0a5c7e);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-nav-btn:hover {
    background: var(--secondary, #de3938);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: -20px;
}

.slider-next {
    right: -20px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--secondary, #de3938);
    width: 30px;
    border-radius: 10px;
}

/* Drag Scroll Indicator */
.drag-scroll-indicator {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--gray, #7f8c8d);
}

.drag-scroll-indicator i {
    margin: 0 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-slide {
        min-width: calc(50% - 12.5px);
    }

    .slider-prev {
        left: -15px;
    }

    .slider-next {
        right: -15px;
    }

    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .campus-gallery-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .gallery-slide {
        min-width: 100%;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .slider-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .gallery-img, .gallery-icon-box {
        height: 200px;
    }

    .gallery-icon-box i {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .campus-gallery-section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .gallery-img, .gallery-icon-box {
        height: 180px;
    }

    .gallery-content h3 {
        font-size: 1rem;
    }

    .slider-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* <!-- ============================================
     OUR CLINICAL PARTNERS SECTION
     Same style as existing, enhanced with images/icons
     Fully Responsive
     ============================================ --> */

/* Clinical Partners Section Styles */
.clinical-partners-section {
    padding: 80px 0;
    background: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: #de3938;
    border-radius: 4px;
}

.section-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-top: 15px;
}

/* Partners Grid - Same as your existing */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

/* Partner Card - Enhanced with better styling */
.partner-logo {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    padding: 1.5rem;
    border-radius: 16px;
    font-weight: 600;
    color: #0a5c7e;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(10, 92, 126, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #de3938;
    background: white;
}

/* Partner Icon */
.partner-icon {
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.partner-logo:hover .partner-icon {
    transform: scale(1.1);
}

/* Partner Name */
.partner-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

/* Partner Type */
.partner-type {
    font-size: 0.75rem;
    color: #7f8c8d;
    font-weight: normal;
}

/* Partner Logo Image Style (if using actual images) */
.partner-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 12px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .clinical-partners-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .partners-grid {
        gap: 1.5rem;
    }

    .partner-logo {
        padding: 1.2rem;
    }

    .partner-icon {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .clinical-partners-section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .partner-logo {
        padding: 1rem;
    }

    .partner-icon {
        font-size: 1.8rem;
    }

    .partner-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .clinical-partners-section {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .partner-logo {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        padding: 1rem;
    }

    .partner-icon {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
}

/* Design & Developed Credit */
.design-credit {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.design-credit p {
    margin: 5px 0;
}

.design-credit a {
    color: #de3938;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* //FOOTER DESIGN AND DEVLOPMENT */
.design-credit a:hover {
    color: #f39c12;
    text-decoration: underline;
    transform: translateX(3px);
}

.design-credit i {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .design-credit {
        text-align: center;
    }

    .design-credit a {
        display: inline-block;
        margin-top: 5px;
    }
}

img.about-img-set {
    height: 100%;
    width: 100%;
}

/* ********** NEW COURSES CODE ********** */
/* Course Detail Styles */
.course-detail-section {
    background: white;
    border-radius: 28px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.course-detail-header {
    background: linear-gradient(135deg, #da201d, #de3e3c);
    color: white;
    padding: 1.5rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.course-detail-header h2 {
    color: white;
    margin: 0;
    font-size: 1.8rem;
}

.course-detail-header p {
    margin: 10px 0 0;
    opacity: 0.9;
}

.info-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 16px;
    margin: 1rem 0;
    border-left: 4px solid #e35245;
}

.info-box h4 {
    color: #0a5c7e;
    margin-bottom: 0.8rem;
}

.subject-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin: 1rem 0;
}

.subject-item {
    background: #e8f4f8;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
}

.doc-list-small {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 1rem 0;
}

.doc-tag {
    background: #fff3e0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.note-box {
    background: #ffe0b3;
    padding: 15px;
    border-radius: 12px;
    margin: 1rem 0;
    border-left: 4px solid #f39c12;
}

@media (max-width: 768px) {
    .course-detail-header h2 {
        font-size: 1.3rem;
    }

    .subject-list {
        grid-template-columns: 1fr;
    }
}

/* ***** CHAT BOAT */
/* ========== CHAT BUTTON STYLES ========== */
.chat-button {
    position: fixed;
    /* bottom: 100px; */
    /* right: 30px; */
    bottom: 36px;
    left: 30px;
    background: linear-gradient(135deg, #0a5c7e, #1e8449);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
}

.chat-button:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #1e8449, #0a5c7e);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.chat-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.chat-text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Chat Modal */
.chat-modal {
    display: none;
    position: fixed;
    /* bottom: 180px; */
    bottom: 35px;
    left: 30px;
    width: 350px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 999;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.chat-modal.active {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-modal-header {
    background: linear-gradient(135deg, #0a5c7e, #1e8449);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-modal-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: white;
}

.chat-close {
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-close:hover {
    transform: scale(1.1);
    color: #f39c12;
}

.chat-modal-body {
    padding: 20px;
}

.chat-welcome {
    text-align: center;
    margin-bottom: 20px;
}

.chat-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
}

.chat-welcome p {
    margin: 5px 0;
    color: #2c3e50;
}

.chat-welcome p:first-of-type {
    font-size: 1.1rem;
    font-weight: 600;
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.chat-option:hover {
    background: #e8f4f8;
    transform: translateX(5px);
}

.chat-option i {
    width: 25px;
    font-size: 1.1rem;
}

.chat-option.whatsapp i {
    color: #25D366;
}

.chat-option.email i {
    color: #e74c3c;
}

.chat-option.admission i {
    color: #0a5c7e;
}

.chat-note {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    font-size: 0.75rem;
    color: #7f8c8d;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .chat-button {
        bottom: 80px;
        left: 20px;
        padding: 10px 16px;
    }

    .chat-text {
        font-size: 0.8rem;
    }

    .chat-modal {
        width: 320px;
        left: 20px;
        bottom: 150px;
    }
}

@media (max-width: 480px) {
    .chat-modal {
        width: 290px;
        left: 10px;
        bottom: 140px;
    }

    .chat-option {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}