/* Inner Pages Global CSS - Non-conflicting with main style.css */

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1580582932707-520aed937b7b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2832&q=80') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.page-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    color: white;
    padding:50px 0;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.page-header p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    animation: fadeInUp 1s ease 0.4s both;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffd700;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

/* Inner Section Styles */
.inner-section {
    padding: 3rem 0;
}

.inner-section:nth-child(even) {
    background: #f8f9fa;
	    padding-top: 55px;
}

/* Content Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-text h2 {
    font-size: 2.2rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    position: relative;
}

.content-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border-radius: 2px;
}

.content-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.content-image:hover img {
    transform: translateY(-5px);
}

/* Image Overlay */
.image-overlay {
    position: relative;
    margin-top: -80px;
    margin-left: 2rem;
    z-index: 2;
}

.overlay-content {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.overlay-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    margin: 0;
    font-size: 0.9rem;
}

/* Values List */
.values-list {
    margin-top: 2rem;
}

.values-list h3 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.values-list ul {
    list-style: none;
    padding: 0;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #666;
}

.values-list li i {
    color: #667eea;
    font-size: 1.1rem;
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 2rem 0;
    width: 50%;
    padding: 1.5rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-year {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.timeline-content h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.achievement-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.achievement-card h3 {
    font-size: 18px;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.achievement-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
	font-size:14px;
}

/* Management Grid */
.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.management-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.management-card:hover {
    transform: translateY(-5px);
}

.management-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.management-info {
    padding: 2rem;
}

.management-info h3 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.designation {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.qualification {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Academic Features */
.academic-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.feature-item:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.feature-item:hover i {
    color: white;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1e3c72;
    transition: color 0.3s ease;
}

.feature-item:hover h3 {
    color: white;
}

.feature-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    color: #666;
    transition: color 0.3s ease;
}

.feature-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Grades Grid */
.grades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 2rem;
}

.grade-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.grade-card:hover {
    transform: translateY(-5px);
}

.grade-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.grade-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.grade-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.grade-range {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    display: inline-block;
}

.grade-content {
    padding: 2rem;
}

.grade-content h4 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.grade-content h5 {
    font-size: 1rem;
    color: #667eea;
    margin: 1.5rem 0 0.5rem 0;
    font-weight: 600;
}

.grade-content ul {
    margin: 0;
    padding-left: 1rem;
    color: #666;
}

.grade-content li {
    margin-bottom: 0.3rem;
    line-height: 1.5;
}

/* Curriculum Grid */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.curriculum-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.curriculum-item:hover {
    transform: translateY(-5px);
}

.curriculum-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.curriculum-item h3 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.curriculum-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Assessment Features */
.assessment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.assessment-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.assessment-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.assessment-item i {
    font-size: 2rem;
    color: #667eea;
    margin-top: 0.2rem;
}

.assessment-item h3 {
    font-size: 1.1rem;
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.assessment-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Calendar Grid */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.calendar-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.calendar-item:hover {
    transform: translateY(-5px);
}

.calendar-month {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

.calendar-events {
    text-align: left;
}

.event {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.event:last-child {
    border-bottom: none;
}

/* Facility Stats */
.facility-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.facility-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.facility-stats .stat-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.facility-stats .stat-item i {
    font-size: 2.5rem;
    color: #667eea;
}

.stat-info h3 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 0.2rem;
    font-weight: bold;
}

.stat-info p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Detailed Facilities Grid */
.facilities-detailed-grid {
    display: grid;
    gap: 3rem;
}

.facility-detailed-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.facility-detailed-card:hover {
    transform: translateY(-5px);
}

.facility-detailed-card:nth-child(even) {
    direction: rtl;
}

.facility-detailed-card:nth-child(even) .facility-content {
    direction: ltr;
}

.facility-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.facility-content {
    padding: 2rem;
}

.facility-content h3 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.facility-content h3 i {
    color: #667eea;
    font-size: 1.2rem;
}

.facility-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.facility-content ul {
    list-style: none;
    padding: 0;
}

.facility-content li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.facility-content li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #667eea;
}

/* Sports Grid */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.sports-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.sports-card:hover {
    transform: translateY(-5px);
}

.sports-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.sports-content {
    padding: 2rem;
}

.sports-content h3 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.sports-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sports-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sports-list span {
    background: #667eea;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Other Facilities Grid */
.other-facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
}

.other-facility-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.other-facility-card:hover {
    transform: translateY(-5px);
}

.other-facility-card .facility-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.other-facility-card h3 {
    font-size: 18px;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.other-facility-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Safety Features */
.safety-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.safety-item {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.safety-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.safety-item i {
    font-size: 2rem;
    color: #667eea;
    margin-top: 0.2rem;
}

.safety-item h3 {
    font-size: 1.1rem;
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.safety-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Future Plans Grid */
.future-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.plan-card h3 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.plan-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.plan-timeline {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

/* Teacher Profile Cards */
.teacher-profile-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.teacher-profile-card:hover {
    transform: translateY(-5px);
}

.teacher-profile-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.teacher-profile-header img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.teacher-profile-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.teacher-profile-header .subject {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    display: inline-block;
}

.teacher-profile-body {
    padding: 2rem;
}

.profile-section {
    margin-bottom: 1.5rem;
}

.profile-section h4 {
    font-size: 1.1rem;
    color: #1e3c72;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-section h4 i {
    color: #667eea;
    font-size: 1rem;
}

.profile-section p,
.profile-section ul {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

.profile-section ul {
    padding-left: 1rem;
}

.profile-section li {
    margin-bottom: 0.3rem;
}

/* Responsive Design for Inner Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .content-grid,
    .facility-detailed-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .facility-detailed-card:nth-child(even) {
        direction: ltr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left;
        padding-left: 3rem;
    }
    
    .timeline-item:nth-child(odd) {
        text-align: left;
    }
    
    .management-grid {
        grid-template-columns: 1fr;
    }
    
    .grades-grid,
    .curriculum-grid,
    .other-facilities-grid,
    .sports-grid {
        grid-template-columns: 1fr;
    }
    
    .academic-features,
    .assessment-features,
    .facility-stats,
    .safety-features,
    .future-plans-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .teachers-grid {
    display: flex;
    flex-direction: column;
}
}

@media (max-width: 480px) {
    .inner-section {
        padding: 2rem 0;
    }
    
    .page-header {
        min-height: 40vh;
    }
    
    .achievement-card,
    .other-facility-card,
    .plan-card {
        padding: 1.5rem;
    }
    
    .facility-content,
    .sports-content,
    .grade-content,
    .management-info,
    .teacher-profile-body {
        padding: 1.5rem;
    }
    
    .timeline-content {
        padding: 1rem;
    }
}
/* Additional CSS for Teachers, Events & Contact Pages */

/* ======================
   TEACHERS PAGE STYLES
   ====================== */

/* Faculty Stats */
.faculty-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.faculty-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.faculty-stats .stat-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faculty-stats .stat-item i {
    font-size: 2.5rem;
    color: #667eea;
}

/* Teacher Subjects */
.teacher-subjects {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.teacher-subjects span {
    background: #667eea;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Philosophy Points */
.philosophy-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.philosophy-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    flex-direction: column;
}

.philosophy-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.philosophy-item i {
    font-size: 2rem;
    color: #667eea;
    margin-top: 0.2rem;
}

.philosophy-item h3 {
    font-size: 1.1rem;
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.philosophy-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Development Grid */
.development-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.development-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.development-card:hover {
    transform: translateY(-5px);
}

.development-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.development-card h3 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.development-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ======================
   EVENTS PAGE STYLES
   ====================== */

/* Event Date Badge */
.event-date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    border-radius: 10px;
    padding: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    z-index: 2;
}

.event-date-badge .month {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.event-date-badge .day {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.event-date-badge .year {
    font-size: 0.7rem;
    opacity: 0.9;
}

/* Event Card Styles */
.event-card {
    position: relative;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-card.upcoming {
    border-left: 4px solid #667eea;
}

.event-card.past {
    border-left: 4px solid #888;
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-content {
    padding: 1.5rem;
}

.event-category {
    background: #667eea;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.event-content h3 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.event-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.event-time,
.event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #888;
    font-size: 0.9rem;
}

.event-time i,
.event-location i {
    color: #667eea;
    font-size: 0.9rem;
}

.event-date {
    background: #667eea;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.event-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.highlight {
    background: #f8f9fa;
    color: #667eea;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #eee;
}

/* Calendar Timeline */
.calendar-timeline {
    margin: 0 auto;
}

.timeline-month {
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.timeline-month h3 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #667eea;
    font-size: 1.4rem;
}

.month-events {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-event {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.timeline-event:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.event-dot {
    width: 12px;
    height: 12px;
    background: #667eea;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.event-info h4 {
    color: #1e3c72;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.event-info p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Event Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.category-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.category-list span {
    background: #667eea;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Event Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px 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;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Event Registration */
.event-registration {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.registration-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.registration-text h2::after {
    background: white;
}

.registration-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.registration-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature i {
    font-size: 1.5rem;
    color: #ffd700;
}

.feature span {
    font-weight: 500;
}

.registration-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.newsletter-form .form-group {
    margin-bottom: 1.5rem;
}

.newsletter-form input,
.newsletter-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus,
.newsletter-form select:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-form option {
    background: #1e3c72;
    color: white;
}

/* ======================
   CONTACT PAGE STYLES
   ====================== */

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.contact-info-card {
    background: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #1e3c72;
}

/* Contact Features */
.contact-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    flex-direction: column;
}

.contact-feature:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-feature i {
    font-size: 2rem;
    color: #667eea;
    margin-top: 0.2rem;
}

.contact-feature h3 {
    font-size: 1.1rem;
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.contact-feature p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Contact Form Container */
.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label a {
    color: #667eea;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 30px;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

/* Map Section */
.map-container {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.map-placeholder {
    background: #f8f9fa;
    padding: 4rem 2rem;
    border-radius: 15px;
    border: 2px dashed #ddd;
}

.map-placeholder i {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Quick Contact */
.quick-contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white;
}

.quick-contact-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.quick-contact-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.quick-contact-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.8;
}

.quick-contact-actions {
    display: flex;
    gap: 1rem;
}

.quick-contact-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #1e3c72;
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: #667eea;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles for New Components */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-content,
    .registration-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .quick-contact-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .registration-features {
        margin-top: 2rem;
    }
    
    .timeline-month {
        padding: 1.5rem;
    }
    
    .timeline-event {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .event-dot {
        margin: 0 auto;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid,
    .development-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .event-date-badge {
        position: static;
        margin-bottom: 1rem;
        display: inline-block;
    }
    
    .contact-form-container,
    .registration-form {
        padding: 1.5rem;
    }
    
    .map-placeholder {
        padding: 2rem 1rem;
    }
    
    .quick-contact-text h2 {
        font-size: 1.8rem;
    }
    
    .registration-text h2 {
        font-size: 1.8rem;
    }
}
.academic-overview .content-image img{
    height: 445px;
    object-fit: cover;
}
.facilities-overview .content-image img{
    height: 550px;
    object-fit: cover;
}