/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Navigation Styles */
.navbar {
    background: #fff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo h1 {
    font-size: 1.8rem;
    color: #333;
    position: relative;
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, #e91e63, #2196f3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    /* border: 2px solid transparent; */
    /* border-image: linear-gradient(45deg, #e91e63, #2196f3); */
    /* border-image-slice: 1; */
    transition: all 0.3s ease;
}

.logo h1:hover {
    transform: scale(1.02);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.15);
}

/* Loading Screen Logo Enhancement */
.founder-text h2 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #e91e63, #2196f3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: glowText 2s infinite alternate;
}

@keyframes glowText {
    from {
        text-shadow: 0 0 5px rgba(233, 30, 99, 0.5),
                     0 0 10px rgba(33, 150, 243, 0.5);
    }
    to {
        text-shadow: 0 0 10px rgba(233, 30, 99, 0.8),
                     0 0 20px rgba(33, 150, 243, 0.8);
    }
}

.logo img {
    width: 50px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    color: #333;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    color: #e91e63;
}

/* Enhanced Active Navigation Styles */
.nav-links a.active {
    color: #e91e63;
    font-weight: bold;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e91e63;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/college-building.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    padding: 2rem;
}

.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #e91e63;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #d81b60;
    transform: scale(1.05);
}

/* Features Section */
.features {
    padding: 5rem 10%;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 1rem;
}

/* News & Events Section */
.news-events {
    padding: 4rem 2rem;
    background: #f9f9f9;
    text-align: center;
}

.news-slider {
    max-width: 800px;
    margin: 2rem auto;
    position: relative;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.news-slide {
    min-width: 100%;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.news-slide h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.news-slide .date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-slide p {
    color: #555;
    line-height: 1.6;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    gap: 1rem;
}

.prev-btn,
.next-btn {
    background: #e91e63;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background: #d81b60;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #e91e63;
    transform: scale(1.2);
}

@media screen and (max-width: 768px) {
    .news-slider {
        max-width: 100%;
        margin: 2rem 1rem;
    }
    
    .news-slide {
        padding: 1.5rem;
    }
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.news-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.news-card .date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Enhanced Footer Styles */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem 5%;
    background: #1a1a1a;
    color: #fff;
}

.footer-section h3 {
    color: #e91e63;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e91e63;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #e91e63;
}

.footer-bottom {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}
.burger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    /* .nav-links {
        display: none;
    } */
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        height: calc(100vh - 70px);
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transition: right 0.5s ease;
        padding: 20px 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .nav-links li {
        margin: 15px 0;
    }
    .burger {
        display: block;
    }
    .nav-active {
        right: 0;
    }

    /* Burger Animation */
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    
    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Page Hero Styles */
.page-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/admission-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 5rem 10%;
}

.about-text {
    padding: 2rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0 10% 5rem;
}

/* Courses Page Styles */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 5rem 10%;
}

.course-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
}

.course-icon i {
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 1rem;
}

.course-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #e91e63;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.course-btn:hover {
    background: #d81b60;
}

/* Animation Classes */
.animate-on-scroll {
    /* opacity: 0; */
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .about-grid,
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery Page Styles */
/* Gallery Styles */
.gallery-container {
    padding: 2rem 5%;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid #e91e63;
    background: transparent;
    color: #333;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #e91e63;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Gallery */
@media screen and (max-width: 768px) {
    .gallery-filters {
        flex-wrap: wrap;
    }
    
    .filter-btn {
        width: calc(50% - 0.5rem);
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Support Page Styles */
/* Support Page Additional Styles */
.support-resources {
    padding: 3rem 10%;
    background: #f5f5f5;
}

.support-resources h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.resource-link {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.resource-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: #e91e63;
}

.resource-link i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #e91e63;
}

/* Service Card Enhancements */
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card i {
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.support-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #e91e63;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.support-btn:hover {
    background: #d81b60;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .support-services {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        padding: 5rem 10%;
        background: #fff;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 2rem;
    }
}

/* Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 5rem 10%;
}

.contact-info {
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 10px;
}

.info-item {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.info-item i {
    font-size: 1.5rem;
    color: #e91e63;
    margin-right: 1rem;
}

.contact-form {
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 0.5rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #e91e63;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #d81b60;
}

.map-container {
    padding: 2rem 10%;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-filters {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
}

/* Loading Screen Styles */

/* Notifications Styles */
.notifications-container {
    padding: 2rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notification-item {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    border-left: 4px solid #e91e63;
}

.notification-item:hover {
    transform: translateY(-2px);
}

.notification-item.new::after {
    content: 'NEW';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff0000;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.notification-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.notification-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
}

.notification-content {
    color: #555;
    line-height: 1.5;
}
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.founder-image {
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.5s;
}

.founder-image img {
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.founder-text {
    margin-top: 1.5rem;
    color: #333;
    opacity: 0;
    animation: fadeIn 1s forwards 1.5s;
}

.founder-text h2 {
    font-size: 2rem;
    color: #e91e63;
    margin-bottom: 1rem;
}

.founder-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.founder-text p {
    margin: 0.3rem 0;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
    margin-top: 2rem;
    overflow: hidden;
}

.loading-progress {
    width: 0;
    height: 100%;
    background: #e91e63;
    animation: progress 2.5s ease-in-out forwards;
}

.main-content {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.main-content.hidden {
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes progress {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* Admission Page Styles */
.admission-steps {
    padding: 5rem 10%;
    background: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #e91e63;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.admission-requirements {
    padding: 5rem 10%;
    background: #f5f5f5;
}

.requirements-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.requirement-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.requirement-item i {
    font-size: 2.5rem;
    color: #e91e63;
    margin-bottom: 1rem;
}

.admission-cta {
    padding: 5rem 10%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/college-building.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-list {
        grid-template-columns: 1fr;
    }
}

/* Management Team Section */
.management-team {
    padding: 5rem 10%;
    background: #f9f9f9;
    text-align: center;
}

.management-team h2 {
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.team-member {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 60%;
    margin-top: 10%;
    /* height: 100%; */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-info .role {
    color: #e91e63;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.member-info .qualification {
    color: #666;
    font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .member-image {
        height: 250px;
    }
}
.blink {
    animation: blinker 0.8s linear infinite;
    color: red;
    font-size: 30px;
    font-weight: bold;
    font-family: sans-serif;
}
 
/* Programs Section Styles */
.programs-section,
.admission-process {
    padding: 4rem 10%;
    background: #fff;
}

.program-category {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.program-category h3 {
    color: #e91e63;
    margin-bottom: 1.5rem;
}

.program-details ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.program-details li {
    position: relative;
    padding: 0.5rem 0;
}

.program-details li:before {
    content: '•';
    color: #e91e63;
    position: absolute;
    left: -1.5rem;
}

.eligibility {
    font-style: italic;
    color: #666;
    margin-top: 1rem;
}

/* Fee Structure Styles */
.fee-structure {
    margin-top: 3rem;
}

.fee-tables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .fee-tables {
        grid-template-columns: 1fr;
    }
}

.fee-structure table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.fee-structure th,
.fee-structure td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #ddd;
}

.fee-structure th {
    background: #e91e63;
    color: #fff;
}

.fee-structure tr:nth-child(even) {
    background: #f9f9f9;
}

.fee-note {
    font-style: italic;
    color: #666;
    margin-top: 1rem;
    padding: 1rem;
    background: #fff3f3;
    border-left: 4px solid #e91e63;
}

.documents-required {
    margin: 2rem 0;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.documents-required ul {
    list-style: none;
    padding-left: 1.5rem;
}

.documents-required li {
    position: relative;
    padding: 0.5rem 0;
}

.documents-required li:before {
    content: '✓';
    color: #e91e63;
    position: absolute;
    left: -1.5rem;
}
/* Admission Announcement Banner */
.admission-announcement {
    background: linear-gradient(45deg, #e91e63, #2196f3);
    color: white;
    text-align: center;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    animation: glow 2s infinite alternate;
}

.admission-announcement h3 {
    font-size: 1.5rem;
    margin: 0;
    display: inline-block;
    position: relative;
}

.admission-announcement h3::after {
    content: '🎓';
    margin-left: 10px;
}

.blink {
    animation: blink-animation 1s steps(5, start) infinite;
    -webkit-animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

@-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(233, 30, 99, 0.5),
                    0 0 20px rgba(33, 150, 243, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(233, 30, 99, 0.8),
                    0 0 30px rgba(33, 150, 243, 0.8);
    }
}

/* WhatsApp Chat Button Styles */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
}

.chat-icon {
    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 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.chat-icon:hover {
    transform: scale(1.1);
}

.chat-bubble {
    position: absolute;
    right: 80px;
    bottom: 15px;
    background: white;
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.chat-bubble::after {
    content: '';
    position: absolute;
    right: -10px;
    bottom: 15px;
    border-left: 10px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.chat-bubble.hidden {
    opacity: 0;
    transform: translateX(-20px);
    pointer-events: none;
}

@media (max-width: 768px) {
    .whatsapp-chat {
        bottom: 20px;
        right: 20px;
    }

    .chat-icon {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}