/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4CAF50;
    margin-bottom: 5px;
}

.logo-text p {
    font-size: 0.9rem;
    color: #666;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4CAF50;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4CAF50;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #4CAF50;
}

.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 90px;
    position: relative;
    height: 600px;
    overflow: hidden;
}

.carousel {
    position: relative;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.carousel-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.carousel-btn:hover {
    background: rgba(255,255,255,1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: white;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #4CAF50;
    color: white;
}

.btn-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76,175,80,0.3);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #4CAF50;
}

.bg-light {
    background: #f9f9f9;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #666;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 10px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Core Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.value-card i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Vision Mission */
.vision-mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.vision, .mission {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.vision:hover, .mission:hover {
    transform: translateY(-5px);
}

.vision h3, .mission h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #4CAF50;
}

.vision h3 i, .mission h3 i {
    margin-right: 10px;
}

/* Leader's Message */
.leader-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.leader-image {
    text-align: center;
}

.leader-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

.leader-image h4 {
    font-size: 1.3rem;
    color: #4CAF50;
    margin-bottom: 5px;
}

.leader-message p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.leader-signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #4CAF50;
}

.leader-signature p {
    margin-bottom: 5px;
}

/* Courses */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.course-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.course-icon {
    text-align: center;
    margin-bottom: 20px;
}

.course-icon i {
    font-size: 3rem;
    color: #4CAF50;
}

.course-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.course-card p {
    color: #666;
    margin-bottom: 15px;
}

.course-card ul {
    list-style: none;
    margin-top: 20px;
}

.course-card li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.course-card li:last-child {
    border-bottom: none;
}

/* Student Corner */
.student-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.student-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.student-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #4CAF50;
}

.student-section h3 i {
    margin-right: 10px;
}

.notice-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.notice-item:last-child {
    border-bottom: none;
}

.notice-date {
    font-size: 0.9rem;
    color: #4CAF50;
    font-weight: 500;
}

.timetable-link, .link-item {
    display: block;
    padding: 10px 0;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.timetable-link:hover, .link-item:hover {
    color: #4CAF50;
}

.exam-item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.exam-item h4 {
    color: #4CAF50;
    margin-bottom: 5px;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Downloads */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.download-category {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.download-category h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #4CAF50;
}

.download-category h3 i {
    margin-right: 10px;
}

.download-link {
    display: flex;
    align-items: center;
    padding: 15px 0;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
}

.download-link:last-child {
    border-bottom: none;
}

.download-link:hover {
    color: #4CAF50;
}

.download-link i {
    margin-right: 10px;
    color: #4CAF50;
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #4CAF50;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #4CAF50;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4CAF50;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #4CAF50;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #45a049;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: block;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(37,211,102,0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37,211,102,0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 15px rgba(37,211,102,0.3);
    }
    50% {
        box-shadow: 0 5px 25px rgba(37,211,102,0.6);
    }
    100% {
        box-shadow: 0 5px 15px rgba(37,211,102,0.3);
    }
}

/* Popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    animation: slideIn 0.3s ease;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: #333;
}

.popup-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.popup-content p {
    color: #666;
    margin-bottom: 20px;
}

.popup-content input {
    width: 100%;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page Banner Styles */
.page-banner {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 90px;
    overflow: hidden;
}

.banner-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.banner-title {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: slideInUp 1s ease;
}

.banner-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
    animation: slideInUp 1s ease 0.2s both;
}

.breadcrumb {
    font-size: 0.9rem;
    animation: slideInUp 1s ease 0.4s both;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

/* About Page Styles */
.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.lead-text {
    font-size: 1.3rem;
    color: #4CAF50;
    margin-bottom: 20px;
    font-weight: 500;
}

.achievement-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.achievement-card {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-icon {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 10px;
}

.achievement-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 5px;
}

.achievement-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #4CAF50;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 60px;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
    margin-right: 0;
    text-align: left;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.timeline-year {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-content h3 {
    color: #4CAF50;
    margin-bottom: 10px;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76,175,80,0.1), transparent);
    transition: left 0.5s ease;
}

.value-item:hover::before {
    left: 100%;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.value-icon {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Leadership Section */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.leader-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
}

.leader-image {
    position: relative;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.1);
}

.leader-info {
    padding: 30px;
}

.leader-info h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.leader-title {
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 10px;
}

.leader-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.leader-social {
    display: flex;
    gap: 15px;
}

.leader-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #4CAF50;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.leader-social a:hover {
    background: #45a049;
    transform: translateY(-3px);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

/* Course Page Styles */
.course-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 30px;
    background: white;
    border: 2px solid #4CAF50;
    color: #4CAF50;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: #4CAF50;
    color: white;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.course-detail {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.course-info h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.course-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.course-meta i {
    color: #4CAF50;
}

.course-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.course-highlights h4 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.course-highlights ul {
    list-style: none;
    padding: 0;
}

.course-highlights li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.course-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.subject-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.subject-item:hover {
    background: #4CAF50;
    color: white;
}

.subject-item i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.subject-item:hover i {
    color: white;
}

/* Course Comparison */
.comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: #4CAF50;
    color: white;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid #eee;
}

.comparison-row:nth-child(even) {
    background: #f9f9f9;
}

.comparison-cell {
    padding: 20px;
    text-align: center;
}

.comparison-header .comparison-cell {
    font-weight: 600;
    padding: 25px 20px;
}

/* Admission Process */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.step::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #4CAF50;
    transform: translateX(-50%);
}

.step:last-child::before {
    display: none;
}

.step-content h3 {
    color: #4CAF50;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Career Opportunities */
.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.career-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
}

.career-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.career-icon {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.career-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.career-card p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #4CAF50;
}

/* Faculty Page Styles */
.faculty-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

/* Faculty Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 30px 0;
    font-family: 'Poppins', sans-serif;
}

table th {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

table td {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
    transition: all 0.3s ease;
}

table tr:hover {
    background: #f8f9fa;
    transform: scale(1.01);
}

table tr:hover td {
    color: #333;
}

table tr:last-child td {
    border-bottom: none;
}

table td strong {
    color: #4CAF50;
    font-weight: 600;
    font-size: 1.05rem;
}

table td:first-child {
    font-weight: 600;
    color: #333;
    width: 35%;
}

table td:last-child {
    color: #666;
    line-height: 1.6;
}

/* Responsive table */
@media (max-width: 768px) {
    table {
        font-size: 0.9rem;
        margin: 20px 0;
    }
    
    table th,
    table td {
        padding: 15px 10px;
    }
    
    table th {
        font-size: 1rem;
    }
    
    table td strong {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    table {
        font-size: 0.85rem;
    }
    
    table th,
    table td {
        padding: 12px 8px;
    }
    
    table th {
        font-size: 0.9rem;
    }
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

/* Department Tabs */
.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-nav-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid #4CAF50;
    color: #4CAF50;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.tab-nav-btn.active,
.tab-nav-btn:hover {
    background: #4CAF50;
    color: white;
}

.department-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.department-content.active {
    display: block;
}

.department-info {
    text-align: center;
    margin-bottom: 40px;
}

.department-info h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.department-info p {
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faculty-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.faculty-card:hover {
    transform: translateY(-10px);
}

.faculty-image {
    position: relative;
    overflow: hidden;
}

.faculty-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.faculty-card:hover .faculty-image img {
    transform: scale(1.1);
}

.faculty-info {
    padding: 30px;
}

.faculty-info h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.faculty-title {
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 10px;
}

.faculty-qualification,
.faculty-experience {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.faculty-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.faculty-expertise span {
    background: #f0f8f0;
    color: #4CAF50;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.faculty-social {
    display: flex;
    gap: 10px;
}

.faculty-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #4CAF50;
    color: white;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.faculty-social a:hover {
    background: #45a049;
    transform: translateY(-3px);
}

/* Research Section */
.research-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.research-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.research-card:hover {
    transform: translateY(-10px);
}

.research-icon {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.research-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 10px;
}

.research-label {
    color: #666;
    font-size: 1.1rem;
}

/* Faculty Development */
.development-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.development-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.development-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.development-icon {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.development-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.development-card p {
    color: #666;
    line-height: 1.6;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .carousel-content h2 {
        font-size: 2rem;
    }

    .carousel-content p {
        font-size: 1rem;
    }

    .about-content,
    .vision-mission-content,
    .leader-content,
    .contact-content,
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .student-content {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .downloads-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.2rem;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .achievement-cards {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
    }

    .course-tabs,
    .tab-navigation {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn,
    .tab-nav-btn {
        width: 200px;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .step::before {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .carousel-content h2 {
        font-size: 1.5rem;
    }

    .value-card,
    .course-card,
    .student-section,
    .download-category {
        padding: 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .banner-title {
        font-size: 1.5rem;
    }

    .course-detail {
        padding: 20px;
    }

    .faculty-card {
        margin: 0 10px;
    }
}

/* Admission Page Styles */
.admission-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.admission-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.programs-section {
    padding: 80px 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.program-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    transition: left 0.5s ease;
}

.program-card:hover::before {
    left: 100%;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.program-icon i {
    font-size: 2rem;
    color: #fff;
}

.program-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.duration, .seats {
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

.program-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
    justify-content: center;
}

.program-highlights span {
    background: #e8f5e8;
    color: #4CAF50;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.requirements-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.requirements-tabs {
    margin-top: 50px;
}

.requirement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.requirement-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.requirement-card h4 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.requirement-card ul {
    list-style: none;
}

.requirement-card li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 20px;
}

.requirement-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.requirement-card li:last-child {
    border-bottom: none;
}

.dates-section {
    padding: 80px 0;
}

.fee-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.fee-table {
    margin-top: 50px;
    overflow-x: auto;
}

.fee-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.fee-table th {
    background: #4CAF50;
    color: #fff;
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.fee-table td {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.fee-table tr:hover {
    background: #f8f9fa;
}

.fee-notes {
    margin-top: 30px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.fee-notes h4 {
    color: #4CAF50;
    margin-bottom: 15px;
}

.fee-notes ul {
    list-style: none;
}

.fee-notes li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.fee-notes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

.application-process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-content h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.downloads-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.download-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.download-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.download-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.download-card h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.download-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Contact Page Styles */
.contact-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.contact-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
}

.contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.form-info h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2rem;
}

.form-info p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.contact-form {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.map-section {
    padding: 80px 0;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.map-info h3 {
    color: #333;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.transport-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.transport-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.transport-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.transport-item h4 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.transport-item p {
    color: #666;
    line-height: 1.6;
}

.map-placeholder {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.map-content h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.map-content p {
    color: #666;
    margin-bottom: 25px;
}

.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-container {
    margin-top: 50px;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h4 {
    color: #333;
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: #4CAF50;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.emergency-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #fff;
}

.emergency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.emergency-info h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.emergency-info p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.emergency-numbers {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.emergency-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.emergency-item i {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.emergency-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.emergency-item p {
    opacity: 0.9;
    margin: 0;
}

.emergency-action {
    text-align: center;
}

.emergency-action h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.emergency-action p {
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .programs-grid,
    .requirement-grid,
    .contact-grid,
    .downloads-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container,
    .map-container,
    .emergency-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .transport-item {
        flex-direction: column;
        text-align: center;
    }
    
    .emergency-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .program-card,
    .requirement-card,
    .contact-card,
    .download-card,
    .step {
        padding: 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .map-placeholder {
        padding: 25px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
} 

/* Homepage Specific Styles */
.quick-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #fff;
}

.about-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.about-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.programs-overview {
    padding: 80px 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.program-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    transition: left 0.5s ease;
}

.program-card:hover::before {
    left: 100%;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.program-icon i {
    font-size: 2rem;
    color: #fff;
}

.program-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.program-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.program-card ul {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.program-card li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.program-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.feature-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.news-events {
    padding: 80px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 25px;
}

.news-date {
    color: #4CAF50;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.news-content h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.news-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    color: #666;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: #4CAF50;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

    .testimonial-author p {
        color: #666;
        font-size: 0.9rem;
    }

    /* Notification System */
    .notification {
        position: fixed;
        top: 20px;
        right: 20px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        z-index: 10000;
        max-width: 400px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .notification.show {
        transform: translateX(0);
    }

    .notification-content {
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }

    .notification-message {
        color: #333;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .notification-close {
        background: none;
        border: none;
        font-size: 1.2rem;
        color: #999;
        cursor: pointer;
        padding: 0;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.3s ease;
    }

    .notification-close:hover {
        color: #333;
    }

    .notification-success {
        border-left: 4px solid #4CAF50;
    }

    .notification-error {
        border-left: 4px solid #f44336;
    }

    .notification-info {
        border-left: 4px solid #2196F3;
    }

    /* Newsletter Form in Footer */
    .newsletter-form {
        display: flex;
        gap: 10px;
        margin-top: 15px;
    }

    .newsletter-form input {
        flex: 1;
        padding: 10px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 0.9rem;
    }

    .newsletter-form input:focus {
        outline: none;
        border-color: #4CAF50;
    }

    .newsletter-btn {
        background: #4CAF50;
        color: white;
        border: none;
        padding: 10px 15px;
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .newsletter-btn:hover {
        background: #45a049;
    }

    /* Footer Bottom Links */
    .footer-bottom-links {
        display: flex;
        gap: 20px;
        margin-top: 10px;
    }

    .footer-bottom-links a {
        color: #999;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

    .footer-bottom-links a:hover {
        color: #4CAF50;
    }

    /* Header Scroll Effect */
    .header.scrolled {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    }

    /* Back to Top Button */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: #4CAF50;
        color: white;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        background: #45a049;
        transform: translateY(-3px);
    }

    /* WhatsApp Button */
    .whatsapp-btn {
        position: fixed;
        bottom: 100px;
        right: 30px;
        z-index: 1000;
    }

    .whatsapp-btn a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background: #25D366;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-size: 1.5rem;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
        transition: all 0.3s ease;
    }

    .whatsapp-btn a:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    }

    /* Responsive Design for Homepage */
    @media (max-width: 768px) {
        .about-content {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .programs-grid,
        .features-grid,
        .news-grid,
        .testimonials-grid {
            grid-template-columns: 1fr;
        }
        
        .about-text h2 {
            font-size: 1.8rem;
        }

        .notification {
            right: 10px;
            left: 10px;
            max-width: none;
        }

        .footer-bottom-links {
            flex-direction: column;
            gap: 10px;
        }

        .back-to-top {
            bottom: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
        }

        .whatsapp-btn {
            bottom: 80px;
            right: 20px;
        }

        .whatsapp-btn a {
            width: 50px;
            height: 50px;
            font-size: 1.3rem;
        }
    }

    @media (max-width: 480px) {
        .program-card,
        .feature-card,
        .news-card,
        .testimonial-card {
            padding: 20px;
        }
        
        .news-content {
            padding: 20px;
        }
        
        .testimonial-author {
            flex-direction: column;
            text-align: center;
        }

        .newsletter-form {
            flex-direction: column;
        }

        .notification-content {
            padding: 15px;
        }
    } 

/* Facilities Section Styles */
.facilities-overview {
    padding: 80px 0;
    background: #f9f9f9;
}

.facilities-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.facility-stat {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Laboratories Section */
.laboratories-section {
    padding: 80px 0;
}

.lab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.lab-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lab-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.lab-image {
    height: 200px;
    overflow: hidden;
}

.lab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.lab-card:hover .lab-image img {
    transform: scale(1.05);
}

.lab-content {
    padding: 25px;
}

.lab-content h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.lab-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.lab-equipment {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lab-equipment span {
    background: #f0f8f0;
    color: #4CAF50;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Library Section */
.library-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.library-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.library-info h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.library-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.library-features {
    list-style: none;
}

.library-features li {
    padding: 10px 0;
    color: #666;
    position: relative;
    padding-left: 30px;
}

.library-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.library-image {
    height: 450px !important;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.library-image img {
    width: 100%;
    height: 100% !important;
}

/* Computer Lab Section */
.computer-lab-section {
    padding: 80px 0;
}

.computer-lab-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.computer-lab-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.computer-lab-image img {
    width: 100%;
    height: auto;
}

.computer-lab-info h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.computer-lab-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.computer-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.computer-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.computer-feature i {
    width: 40px;
    height: 40px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.computer-feature span {
    color: #333;
    font-weight: 500;
}

/* Hostel Section */
.hostel-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.hostel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hostel-info h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.hostel-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.hostel-amenities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hostel-amenity {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.hostel-amenity i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.hostel-amenity span {
    color: #333;
    font-weight: 500;
}

.hostel-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.hostel-image img {
    width: 100%;
    height: auto;
}

/* Sports Section */
.sports-section {
    padding: 80px 0;
}

.sports-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sports-info h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.sports-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.sports-facilities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.sport-facility {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f0f8f0;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

.sport-facility i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.sport-facility span {
    color: #333;
    font-weight: 500;
}

.sports-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.sports-image img {
    width: 100%;
    height: auto;
}

/* Responsive Design for Facilities */
@media (max-width: 768px) {
    .facilities-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .lab-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .library-content,
    .computer-lab-content,
    .hostel-content,
    .sports-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .computer-features,
    .hostel-amenities,
    .sports-facilities {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .lab-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .facilities-stats {
        grid-template-columns: 1fr;
    }
    
    .facility-stat {
        padding: 20px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .lab-content {
        padding: 20px;
    }
} 

/* Smart Classrooms Section */
.smart-classrooms {
    padding: 80px 0;
}

.classroom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.classroom-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.classroom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.classroom-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.classroom-icon i {
    font-size: 2rem;
    color: white;
}

.classroom-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.classroom-card p {
    color: #666;
    line-height: 1.6;
}

/* Sports Grid Section */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sport-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sport-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.sport-image {
    height: 200px;
    overflow: hidden;
}

.sport-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sport-item:hover .sport-image img {
    transform: scale(1.05);
}

.sport-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin: 20px 20px 10px;
    font-weight: 600;
}

.sport-item p {
    color: #666;
    line-height: 1.6;
    margin: 0 20px 20px;
}

/* Hostel Features */
.hostel-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.hostel-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.hostel-feature:hover {
    transform: translateY(-2px);
}

.hostel-feature i {
    color: #4CAF50;
    font-size: 1.2rem;
    width: 20px;
}

.hostel-feature span {
    color: #333;
    font-weight: 500;
}

/* Transportation Section */
.transportation-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.transport-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.transport-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.transport-icon i {
    font-size: 2rem;
    color: white;
}

.transport-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.transport-card p {
    color: #666;
    line-height: 1.6;
}

/* Virtual Tour Section */
.virtual-tour-section {
    padding: 80px 0;
}

.tour-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.tour-video {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.tour-video img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(76, 175, 80, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(76, 175, 80, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    font-size: 2rem;
    color: white;
    margin-left: 5px;
}

.tour-info h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.tour-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.tour-highlights {
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.highlight-item i {
    color: #4CAF50;
    font-size: 1.1rem;
}

.highlight-item span {
    color: #333;
    font-weight: 500;
}

/* Library Features */
.library-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
}

.feature-item i {
    color: #4CAF50;
    font-size: 1.5rem;
    margin-top: 5px;
}

.feature-item div h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-item div p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .classroom-grid,
    .sports-grid,
    .transport-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .tour-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hostel-features,
    .library-features {
        grid-template-columns: 1fr;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
    
    .tour-info h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .classroom-grid,
    .sports-grid,
    .transport-grid {
        grid-template-columns: 1fr;
    }
    
    .classroom-card,
    .transport-card {
        padding: 20px;
    }
    
    .classroom-icon,
    .transport-icon {
        width: 60px;
        height: 60px;
    }
    
    .classroom-icon i,
    .transport-icon i {
        font-size: 1.5rem;
    }
    
    .sport-item h3 {
        font-size: 1.1rem;
        margin: 15px 15px 10px;
    }
    
    .sport-item p {
        margin: 0 15px 15px;
    }
} 

/* Hero Carousel Overlay for Better Text Readability */
.carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle darkness: adjust the alphas to taste */
    background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 100%);
    z-index: 1;
    pointer-events: none;
    transition: background 0.3s ease;
}