/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #f8f9fa;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 0.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.logo h1 {
    color: #1a237e;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #1a237e;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4caf50;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #4caf50;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #87CEEB 0%, #00BFFF 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.medical-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.dna {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
}

.molecule {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 15%;
    animation-delay: 1s;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
}

.pulse {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
}

.heartbeat {
    width: 70px;
    height: 70px;
    bottom: 20%;
    right: 25%;
    animation-delay: 3s;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
}

.stethoscope {
    width: 90px;
    height: 90px;
    top: 60%;
    left: 30%;
    animation-delay: 4s;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg) scale(1.1);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-logo {
    width: 200px;
    height: 200px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    background: white;
    padding: 10px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-tags span {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 25px;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-tags span:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-tags i {
    color: #fff;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #00BFFF;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.9s;
    opacity: 0;
    animation-fill-mode: forwards;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero-tags {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-tags span {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

/* Gallery Section */
.gallery {
    padding: 80px 20px;
    background: #f9f9f9;
    overflow: hidden;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.gallery-section {
    margin-bottom: 60px;
}

.gallery-section h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    font-size: 24px;
    position: relative;
    display: inline-block;
}

.gallery-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2ecc71;
    border-radius: 2px;
}

.gallery-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.gallery-scroll {
    display: flex;
    gap: 20px;
    animation: scroll 60s linear infinite;
    padding: 20px;
    width: max-content;
}

.gallery-scroll:hover {
    animation-play-state: paused;
}

.gallery-item {
    flex: 0 0 250px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 19 - 20px * 19));
    }
}

/* Add gradient overlays for smooth scrolling effect */
.gallery-container::before,
.gallery-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.gallery-container::before {
    left: 0;
    background: linear-gradient(to right, #f9f9f9, transparent);
}

.gallery-container::after {
    right: 0;
    background: linear-gradient(to left, #f9f9f9, transparent);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 200px;
    }

    .gallery-item img {
        height: 150px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-200px * 19 - 20px * 19));
        }
    }
}

/* Video Gallery Styles */
.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.video-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-container h4 {
    padding: 15px;
    margin: 0;
    text-align: center;
    color: #2c3e50;
    font-size: 18px;
    background: #fff;
}

/* Latest Updates Section */
.updates {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.updates h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a237e;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.updates h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #4caf50;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.update-card {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.update-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
}

.update-date {
    background: #1a237e;
    color: white;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.update-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.update-date .month {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.update-content {
    padding: 1.5rem;
    flex: 1;
}

.update-content h3 {
    color: #1a237e;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.event-details {
    margin: 1rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #4caf50;
}

.event-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

.event-details p:last-child {
    margin-bottom: 0;
}

.event-details i {
    color: #4caf50;
    width: 20px;
}

.update-content p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.read-more {
    color: #4caf50;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #388e3c;
    transform: translateX(5px);
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Achievements Section */
.achievements {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.achievements h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.achievement-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
}

.achievement-card i {
    font-size: 2.5rem;
    color: #4caf50;
    margin-bottom: 1rem;
}

/* Staff Section */
.staff-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    overflow: hidden;
}

.staff-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.staff-grid {
    display: flex;
    gap: 30px;
    padding: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding-bottom: 20px;
    position: relative;
}

.staff-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.staff-card {
    min-width: 300px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    opacity: 0.7;
    transform: scale(0.9);
    position: relative;
}

.staff-card.active {
    opacity: 1;
    transform: scale(1);
}

.staff-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.staff-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.staff-card:hover .staff-image img {
    transform: scale(1.15);
}

.staff-info {
    padding: 20px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,1));
}

.staff-info h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.4rem;
    text-align: center;
    font-weight: 600;
}

.staff-info .designation {
    color: #2ecc71;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.staff-info .qualification {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-align: center;
}

.staff-info .experience {
    color: #888;
    font-size: 0.85rem;
    font-style: italic;
    text-align: center;
}

.staff-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.staff-nav-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #1a237e;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

.staff-nav-btn:hover {
    background: #1a237e;
    color: white;
    transform: translateY(-2px);
}

.staff-nav-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.staff-nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.staff-nav-dot.active {
    background: #1a237e;
    transform: scale(1.3);
}

@keyframes slideLeft {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.staff-card.sliding {
    animation: slideLeft 0.5s ease forwards;
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #3498db;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #4caf50;
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.submit-btn {
    padding: 1rem 2rem;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #388e3c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.contact-info h3 {
    color: #1a237e;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #4caf50;
    display: inline-block;
}

.branch-info {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #4caf50;
}

.branch-info h4 {
    color: #1a237e;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.branch-info h4 i {
    color: #4caf50;
}

.branch-info p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.branch-info p:last-child {
    margin-bottom: 0;
}

.branch-info p i {
    color: #4caf50;
    margin-right: 0.5rem;
}

.contact-form h3 {
    color: #1a237e;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #4caf50;
    display: inline-block;
}

.contact-form select {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
    cursor: pointer;
}

.contact-form select:focus {
    border-color: #4caf50;
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Footer */
footer {
    background: #1a237e;
    color: white;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    color: #ffffff;
}

.social-links a:hover {
    color: #4caf50;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .staff-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .staff-image {
        height: 250px;
    }

    .gallery-grid,
    .video-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item img {
        height: 200px;
    }

    .branch-info {
        padding: 1rem;
    }

    .branch-info h4 {
        font-size: 1.2rem;
    }

    .branch-info p {
        font-size: 0.95rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.gallery-item,
.achievement-card,
.staff-card {
    animation: fadeIn 1s ease-out;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    right: 25px;
    top: 15px;
    font-size: 35px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #1a237e;
}

/* Course Modal Specific Styles */
.course-modal {
    padding: 2.5rem;
}

.course-header {
    text-align: center;
    margin-bottom: 2rem;
}

.course-header h2 {
    color: #1a237e;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.course-header h3 {
    color: #4caf50;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.course-tags {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

.course-intro {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid #4caf50;
}

.course-intro p {
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.6;
}

.course-section {
    margin-bottom: 2rem;
}

.course-section h3 {
    color: #1a237e;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #4caf50;
    display: inline-block;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.5;
}

.feature-list i {
    color: #4caf50;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.batch-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.batch-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.batch-info i {
    color: #4caf50;
    font-size: 1.2rem;
}

.special-offer {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.special-offer h3 {
    color: #4caf50;
    border-bottom: none;
    padding-bottom: 0;
}

.special-offer p {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 500;
}

.modal-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }

    .course-header h2 {
        font-size: 1.8rem;
    }

    .course-header h3 {
        font-size: 1.3rem;
    }

    .feature-list li {
        font-size: 0.95rem;
    }
}