/* ===== SMOOTH SCROLLING FIXES ===== */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 20px;
    -webkit-overflow-scrolling: touch;
}

body {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

* {
    scroll-behavior: smooth;
}

/* Fix for scroll glitches on webkit browsers */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
    transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Prevent scroll jumping */
.scroll-container {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

/* Fix for smooth scrolling on all elements */
.smooth-scroll {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* ===== GALLERY SECTIONS - MODERN DESIGN ===== */

/* Gallery Header Styles */
.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.gallery-title-section {
    flex: 1;
}

.gallery-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.gallery-subtitle {
    font-size: 1rem;
    color: #6C757D;
    margin: 0;
    line-height: 1.5;
}

.gallery-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Search Container */
.search-container {
    position: relative;
    min-width: 200px;
}

.gallery-search {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #DEE2E6;
    border-radius: 0.5rem;
    background: #FFFFFF;
    font-size: 0.875rem;
    color: #495057;
    transition: all 0.2s ease;
}

.gallery-search:focus {
    outline: none;
    border-color: #137fec;
    box-shadow: 0 0 0 3px rgba(19, 127, 236, 0.1);
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    color: #6C757D;
}

/* Filter Selects */
.gallery-filter-select {
    padding: 0.75rem 1rem;
    border: 1px solid #DEE2E6;
    border-radius: 0.5rem;
    background: #FFFFFF;
    font-size: 0.875rem;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 140px;
}

.gallery-filter-select:focus {
    outline: none;
    border-color: #137fec;
    box-shadow: 0 0 0 3px rgba(19, 127, 236, 0.1);
}

.gallery-filter-select:hover {
    border-color: #137fec;
}

/* Photo Gallery Section */
.photo-gallery-section {
    padding: 3rem 0;
    background: #F8F9FA;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Video Gallery Section */
.video-gallery-section {
    padding: 3rem 0;
    background: #FFFFFF;
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 card on very small devices */
    gap: 1.5rem;
    margin-top: 2rem;
}

/* 2 cards per row on small to medium screens */
@media (min-width: 480px) {
    .video-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 3 cards per row on larger screens */
@media (min-width: 768px) {
    .video-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Video Gallery Cards */
.video-gallery-card {
    background: #FFFFFF;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.video-gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.video-gallery-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video Badges */
.video-badge {
    position: absolute;
    background: #3B82F6;
    color: #FFFFFF;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    top: 0.75rem;
    left: 0.75rem;
    text-transform: capitalize;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.video-badge-top-left {
    top: 0.75rem;
    left: 0.75rem;
}

.video-badge-bottom-left {
    top: 0.75rem;
    left: 0.75rem;
}

/* Category-specific badge colors for videos */
.video-badge.academics {
    background: #3B82F6;
}

.video-badge.sports {
    background: #10B981;
}

.video-badge.cultural {
    background: #F59E0B;
}

.video-badge.campus {
    background: #8B5CF6;
}

.video-badge.student-life {
    background: #EC4899;
}

.video-badge.general {
    background: #6B7280;
}

.video-badge.graduation {
    background: #3B82F6;
}

.video-badge.science {
    background: #8B5CF6;
}

.video-badge.arts {
    background: #EC4899;
}

/* Video Overlay Content */
.video-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
    color: #FFFFFF;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.featured-album-banner .simple-next,
.featured-album-banner .simple-prev{
    display: flex;
    justify-content: center;
    align-items: center;    
    font-size: 40px !important;
}

.video-gallery-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), transparent);
}

.hero-about #hero-visit-btn{
    border: 2px solid white;
}
.video-gallery-count {
    font-size: 0.875rem;
    margin: 0;
    color: #FFFFFF;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Specific Video Card Backgrounds */
.video-gallery-card:nth-child(1) .video-gallery-thumbnail {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

.video-gallery-card:nth-child(2) .video-gallery-thumbnail {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.video-gallery-card:nth-child(3) .video-gallery-thumbnail {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.video-gallery-card:nth-child(4) .video-gallery-thumbnail {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.video-gallery-card:nth-child(5) .video-gallery-thumbnail {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.video-gallery-card:nth-child(6) .video-gallery-thumbnail {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-header {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .gallery-controls {
        width: 100%;
        justify-content: stretch;
    }
    
    .search-container {
        min-width: auto;
        flex: 1;
    }
    
    .gallery-filter-select {
        min-width: auto;
        flex: 1;
    }
    
    .gallery-main-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-controls {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .gallery-main-title {
        font-size: 1.75rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .video-gallery-thumbnail {
        height: 180px;
    }
}

/* ===== VIDEO COLLECTION STYLES - MODERN & INTERACTIVE ===== */

/* Back Button - Simple Icon Only */
.video-collection-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: #6b7280;
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.video-collection-back-btn:hover {
    background: #4b5563;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.video-collection-back-btn:active {
    transform: translateY(0);
}


/* Collection Header - Compact & Modern */
.video-header-container {
    text-align: center;
    border-radius: 0.75rem;
    grid-column: span 3;
    display: flex;
    gap: 1rem;
}
.video-title-container{
    display: flex    ;
    align-items: start;
    flex-direction: column;
}
.video-collection-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-collection-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

/* Individual Video Items - Modern Card Design */
.video-item {
    background: #FFFFFF;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.video-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 1.25rem;
}

.video-item:hover::before {
    opacity: 1;
}

.video-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: rgba(102, 126, 234, 0.2);
}

.video-item-thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 1rem;
}

/* Video title overlay on thumbnail */
.video-item-thumbnail::after {
    content: attr(data-title);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent);
    color: white;
    padding: 1rem;
    font-size: 14px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.7);
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 2;
}
.video-item-title{
    display: none !important;
}

.video-item:hover .video-item-thumbnail::after {
    opacity: 1;
}

.video-item-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-item:hover .video-item-thumbnail img {
    transform: scale(1.1);
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    padding: 1.25rem;
    color: #FFFFFF;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.video-item:hover .video-play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-item-content {
    position: relative;
    z-index: 2;
    padding: 0 !important;
}

.video-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 1.5rem 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.video-item:hover .video-item-title {
    color: #667eea;
}

.video-item-description {
    font-size: 0.95rem;
    color: #718096;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.video-item-actions {
    display: flex;
    gap: 1rem;
}

.video-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    justify-content: center;
    box-shadow: 0 4px 14px 0 rgba(102, 126, 234, 0.25);
    position: relative;
    overflow: hidden;
    margin-top: 8px;
}

.video-play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.video-play-btn:hover::before {
    left: 100%;
}

.video-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(102, 126, 234, 0.4);
}

.video-play-btn:active {
    transform: translateY(0);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.show {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #FFFFFF;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.video-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.video-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}

.video-modal-player {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000000;
}

.video-modal-player video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-modal-info {
    padding: 1.5rem;
}

.video-modal-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

/* Responsive Design for Video Collection */
@media (max-width: 768px) {
    .video-collection-title {
        font-size: 1.25rem;
    }
    
    .video-collection-header {
        padding: 1.25rem 0;
        margin-bottom: 1.5rem;
    }
    
    .video-item-thumbnail {
        height: 200px;
    }
    
    .video-item-content {
        padding: 1.5rem;
    }
    
    .video-modal-content {
        width: 95%;
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    .video-collection-title {
        font-size: 1.125rem;
    }
    
    .video-collection-subtitle {
        font-size: 0.875rem;
    }
    
    .video-collection-header {
        padding: 1rem 0;
        margin-bottom: 1.25rem;
    }
    
    .video-item-thumbnail {
        height: 180px;
    }
    
    .video-item-content {
        padding: 1.25rem;
    }
    
    .video-collection-back-btn {
        width: 2.25rem;
        height: 2.25rem;
    }
    
    .video-play-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .video-item-title {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
}

/* ===== ABOUT PAGE STYLES ===== */

/* General Section Styling */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

/* Hero Section */
.hero-about {
    position: relative;
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-about .hero-content {
    position: relative;
    z-index: 2;
}

.hero-about .hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-about .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: white;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-about .hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Timeline Styles */
.our-story {
    padding: 5rem 0;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.timeline-events {
    position: relative;
}

.timeline-event {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.timeline-event-left {
    justify-content: flex-start;
}

.timeline-event-right {
    justify-content: flex-end;
}

.timeline-content {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    width: 45%;
    text-align: left;
}

.timeline-event-left .timeline-content {
    text-align: right;
    margin-right: 2rem;
}

.timeline-event-right .timeline-content {
    text-align: left;
    margin-left: 2rem;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-date {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--primary-color);
    border: 4px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Mission, Vision & Values */
.mission-vision {
    background: var(--bg-secondary);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-icon i {
    color: white;
    font-size: 1.5rem;
}

.mission-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.mission-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Principal's Message */
.principal-message {
    padding: 5rem 0;
}

.principal-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.principal-image {
    position: relative;
}

.principal-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    max-width: 400px;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    display: block;
}

.principal-content {
    padding-left: 2rem;
}

@media (max-width: 991.98px) {
    .principal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .principal-content {
        padding-left: 0;
        text-align: center;
    }
    
    .principal-image {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .principal-message {
        padding: 3rem 0;
    }
}

.principal-name {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.principal-message-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.principal-qualifications {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.qualification-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-tertiary);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.qualification-tag i {
    color: var(--primary-color);
}

/* School Stats */
.school-stats {
    background: var(--bg-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(var(--primary-color-rgb), 0.1);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Why Choose Us */
.why-choose-us {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
}

.feature-image {
    margin-bottom: 1rem;
    overflow: hidden;
    width: 100%;
}

.feature-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Leadership Team */
.leadership {
    background: var(--bg-secondary);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.leader-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.leader-image {
    margin-bottom: 1rem;
    position: relative;
}

.leader-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

/* Faculty name overlay */
.leader-image-overlay {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.leader-card:hover .leader-image-overlay {
    opacity: 1;
    transform: translateX(-50%) translateY(4px);
}

.leader-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.leader-position {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Facilities Grid */
.facilities {
    padding: 5rem 0;
}

.facilities-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 250px);
    gap: 0.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.facility-main {
    grid-row: 1 / 3;
    border-radius: 0.5rem;
    overflow: hidden;
    height: 500px;
    position: relative;
}

.facility-secondary {
    border-radius: 0.5rem;
    overflow: hidden;
    height: 250px;
    position: relative;
}

.facility-small {
    border-radius: 0.5rem;
    overflow: hidden;
    height: 250px;
    position: relative;
}

.facilities-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.facility-main img,
.facility-secondary img,
.facility-small img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Facility name overlay */
.facility-image-overlay {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 10;
    max-width: 80%;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

.facility-main:hover .facility-image-overlay,
.facility-secondary:hover .facility-image-overlay,
.facility-small:hover .facility-image-overlay {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

/* Achievements */
.achievements {
    background: var(--bg-secondary);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.achievement-icon i {
    color: white;
    font-size: 1.25rem;
}

.achievement-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.achievement-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
}

/* Remove margin-right from Owl Carousel items */
.testimonials .owl-item {
    margin-right: 0 !important;
    margin: 0 1rem !important;
}

.testimonials .owl-stage-outer {
    margin-right: 0;
}

/* Hide Owl Carousel's default navigation */
.testimonials .owl-nav {
    display: none !important;
}

/* Testimonials Navigation */
.testimonials-carousel-container {
    position: relative;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.testimonials-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonials-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.testimonials-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.testimonials-nav-btn svg {
    width: 20px;
    height: 20px;
}

/* Star Ratings */
.author-rating {
    display: flex;
    gap: 2px;
    margin: 8px 0;
}

.author-rating .star {
    width: 16px;
    height: 16px;
    color: #e5e7eb;
    stroke: currentColor;
    fill: none;
    transition: all 0.2s ease;
}

.author-rating .star.filled {
    color: #fbbf24;
    fill: #fbbf24;
}

/* Testimonials Dots */
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}

.testimonials-dot {
    width: 12px;
    height: 12px;
    border-radius: 2rem;
    background: #e2e8f0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
    width: 32px;
}

.testimonials-dot:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 1rem;
    color: #000;
    opacity: 0.2;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    text-align: start;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-rating {
    display: flex;
    gap: 0.25rem;
}

.author-rating .star {
    color: #fbbf24;
    width: 1rem;
    height: 1rem;
}

/* CTA Section */
.cta-about {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-white {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: 2px solid rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Loading Placeholders */
.loading-placeholder {
    opacity: 0.7;
}

.loading-box {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 0.375rem;
    margin-bottom: 0.5rem;
}

/* Hero loading styles */
.hero-loading .loading-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.hero-loading .hero-title-box {
    height: 3rem;
    width: 60%;
    border-radius: 8px;
}
.hero-loading .hero-subtitle-box {
    height: 1.5rem;
    width: 80%;
    border-radius: 6px;
}
.hero-loading .hero-buttons-box {
    height: 3rem;
    width: 300px;
    border-radius: 25px;
}

/* Timeline loading styles */
.timeline-loading .loading-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.timeline-loading .timeline-title-box {
    height: 2.5rem;
    width: 40%;
    border-radius: 8px;
}
.timeline-loading .timeline-subtitle-box {
    height: 1.25rem;
    width: 60%;
    border-radius: 6px;
}
.timeline-loading .timeline-event-title-box {
    height: 1.5rem;
    width: 80%;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}
.timeline-loading .timeline-event-description-box {
    height: 1rem;
    width: 90%;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}
.timeline-loading .timeline-event-date-box {
    height: 1rem;
    width: 30%;
    border-radius: 4px;
}

/* Principal loading styles */
.principal-loading .principal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.principal-loading .principal-image-box {
    height: 400px;
    width: 100%;
    border-radius: 12px;
}
.principal-loading .principal-title-box {
    height: 2.5rem;
    width: 80%;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.principal-loading .principal-name-box {
    height: 1.5rem;
    width: 60%;
    border-radius: 6px;
    margin-bottom: 1rem;
}
.principal-loading .principal-message-box {
    height: 4rem;
    width: 100%;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}
.principal-loading .principal-qualifications-box {
    height: 2rem;
    width: 70%;
    border-radius: 6px;
}

/* Quick Facts loading styles */
.quick-facts-loading .quick-facts-title-box {
    height: 2.5rem;
    width: 50%;
    border-radius: 8px;
    margin: 0 auto 3rem auto;
}
.quick-facts-loading .quick-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.quick-facts-loading .fact-icon-box {
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
}
.quick-facts-loading .fact-number-box {
    height: 2.5rem;
    width: 80%;
    border-radius: 6px;
    margin: 0 auto 0.5rem auto;
}
.quick-facts-loading .fact-label-box {
    height: 1.25rem;
    width: 90%;
    border-radius: 4px;
    margin: 0 auto;
}

/* Why Choose Us loading styles */
.why-choose-loading .section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.why-choose-loading .why-choose-title-box {
    height: 2.5rem;
    width: 40%;
    border-radius: 8px;
    margin: 0 auto;
}
.why-choose-loading .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.why-choose-loading .feature-image-box {
    height: 200px;
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
}
.why-choose-loading .feature-title-box {
    height: 1.5rem;
    width: 80%;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}
.why-choose-loading .feature-description-box {
    height: 1rem;
    width: 100%;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

/* Leadership loading styles */
.leadership-loading .section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.leadership-loading .leadership-title-box {
    height: 2.5rem;
    width: 50%;
    border-radius: 8px;
    margin: 0 auto 1rem auto;
}
.leadership-loading .leadership-subtitle-box {
    height: 1.25rem;
    width: 70%;
    border-radius: 6px;
    margin: 0 auto;
}
.leadership-loading .leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.leadership-loading .leader-image-box {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
}
.leadership-loading .leader-name-box {
    height: 1.5rem;
    width: 80%;
    border-radius: 6px;
    margin: 0 auto 0.5rem auto;
}
.leadership-loading .leader-position-box {
    height: 1rem;
    width: 60%;
    border-radius: 4px;
    margin: 0 auto;
}

/* Achievements loading styles */
.achievements-loading .section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.achievements-loading .achievements-title-box {
    height: 2.5rem;
    width: 50%;
    border-radius: 8px;
    margin: 0 auto;
}
.achievements-loading .achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.achievements-loading .achievement-icon-box {
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
}
.achievements-loading .achievement-title-box {
    height: 1.5rem;
    width: 80%;
    border-radius: 6px;
    margin: 0 auto 0.75rem auto;
}
.achievements-loading .achievement-description-box {
    height: 1rem;
    width: 100%;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.principal-dynamic{
    border-left: 4px solid var(--primary-color); 
    box-shadow: var(--shadow-md);
    border-radius: 1rem;
    padding: 2rem;
}
/* Simple Dummy Cards for Images */
.dummy-image-card {
    background: #f8fafc;
    border: 2px dashed #e2e8f0;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dummy-image-card::before {
    content: '';
    width: 40px;
    height: 40px;
    background: #e2e8f0;
    border-radius: 8px;
    opacity: 0.6;
}


/* Principal Image Dummy */
.principal-dummy {
    width: 100%;
    height: 400px;
    border-radius: 0.5rem;
}

/* Feature Image Dummies */
.feature-dummy {
    width: 100%;
    height: 12rem;
    border-radius: 0.5rem;
}

/* Leadership Image Dummies */
.leader-dummy {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

/* Facilities Image Dummies */
.facility-main-dummy {
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    position: absolute;
    top: 0;
    left: 0;
}

.facility-secondary-dummy {
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    position: absolute;
    top: 0;
    left: 0;
}

.facility-small-dummy {
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    position: absolute;
    top: 0;
    left: 0;
}

/* Testimonial Author Image Dummies */
.testimonial-author-dummy {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
}


/* Mission Section Loading */
.mission-title-box {
    height: 2rem;
    width: 60%;
    margin: 0 auto 1rem;
}

.mission-underline-box {
    height: 0.25rem;
    width: 4rem;
    margin: 0 auto 2rem;
}

.mission-icon-box {
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.mission-card-title-box {
    height: 1.5rem;
    width: 80%;
    margin: 0 auto 1rem;
}

.mission-description-box {
    height: 3rem;
    width: 100%;
    margin: 0 auto;
}

/* Quick Facts Loading */
.quick-facts-title-box {
    height: 2rem;
    width: 50%;
    margin: 0 auto 2rem;
}

.fact-icon-box {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.fact-number-box {
    height: 3rem;
    width: 80%;
    margin: 0 auto 0.5rem;
}

.fact-label-box {
    height: 1.25rem;
    width: 70%;
    margin: 0 auto;
}

/* Why Choose Loading */
.why-choose-title-box {
    height: 2rem;
    width: 60%;
    margin: 0 auto 2rem;
}

.feature-image-box {
    height: 12rem;
    width: 100%;
    margin-bottom: 1rem;
}

.feature-title-box {
    height: 1.5rem;
    width: 80%;
    margin: 0 auto 1rem;
}

.feature-description-box {
    height: 4rem;
    width: 100%;
    margin: 0 auto;
}

/* Leadership Loading */
.leadership-title-box {
    height: 2rem;
    width: 60%;
    margin: 0 auto 0.5rem;
}

.leadership-subtitle-box {
    height: 1.25rem;
    width: 80%;
    margin: 0 auto 2rem;
}

.leader-image-box {
    height: 8rem;
    width: 8rem;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.leader-name-box {
    height: 1.25rem;
    width: 90%;
    margin: 0 auto 0.5rem;
}

.leader-position-box {
    height: 1rem;
    width: 70%;
    margin: 0 auto;
}

/* Achievements Loading */
.achievements-title-box {
    height: 2rem;
    width: 60%;
    margin: 0 auto 2rem;
}

.achievement-icon-box {
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.achievement-title-box {
    height: 1.5rem;
    width: 90%;
    margin: 0 auto 1rem;
}

.achievement-description-box {
    height: 3rem;
    width: 100%;
    margin: 0 auto;
}

/* Testimonials Loading */
.testimonials-title-box {
    height: 2rem;
    width: 60%;
    margin: 0 auto 2rem;
}

.testimonial-quote-box {
    height: 2rem;
    width: 2rem;
    margin: 0 auto 1rem;
}

.testimonial-text-box {
    height: 4rem;
    width: 100%;
    margin: 0 auto 1.5rem;
}

.testimonial-author-box {
    height: 3rem;
    width: 100%;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-about .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-about .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .timeline-marker{
        display: none;
    }
    
    .timeline-event-left,
    .timeline-event-right {
        justify-content: flex-start;
    }
    
    .timeline-content {
        width: calc(100% - 4rem);
        margin-left: 4rem;
        text-align: left;
    }
    
    .timeline-marker {
        left: 2rem;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }
    
    .facility-main {
        grid-row: auto;
        height: 300px;
    }
    
    .facility-secondary {
        height: 250px;
    }
    
    .facility-small {
        height: 200px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .hero-actions,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn,
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== REUSABLE COMPONENTS CSS ===== */

/* Application Modal Styles */
.application-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.application-modal.show {
    opacity: 1;
    visibility: visible;
}

.application-modal-content {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    max-width: 1000px;
    width: 100%;
    max-height: 95vh;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.application-modal.show .application-modal-content {
    transform: scale(1) translateY(0);
}

.application-modal .modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
}

.application-modal .modal-header h2 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
}

.application-modal .modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.application-modal .modal-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.application-modal .modal-body {
    padding: 32px;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
}

/* Form Progress */
.form-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
    padding: 0 20px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 120px;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.progress-step.completed:not(:last-child)::after {
    background: var(--primary-color);
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--primary-color);
    color: white;
}

.progress-step.completed .step-number {
    background: var(--success-color);
    color: white;
}

.progress-step span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 500;
}

.progress-step.active span {
    color: var(--primary-color);
}

.progress-step.completed span {
    color: var(--success-color);
}

/* Form Steps */
.form-step {
    display: none;
    padding: 0;
}

.form-step.active {
    display: block;
}

.application-form-content .form-grid{
    text-align: start !important;
}
.step-header {
    text-align: start;
    margin-bottom: 32px;
}

.step-header h3 {
    margin: 0 0 8px 0;
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
}

.step-header p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.875rem;
}

.input-group {
    position: relative;
    display: block;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.875rem;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.input-group select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.input-group input.error,
.input-group select.error,
.input-group textarea.error {
    border-color: var(--error-color);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
    color: var(--error-color);
    font-size: 0.75rem;
    margin-top: 4px;
    display: none;
}

/* Checkbox Group */
.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: inline !important;
}

.checkmark {
    display: none !important;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-right: 12px;
    margin-top: 2px;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Step Actions */
.step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.step-actions .btn {
    min-width: 120px;
}

.step-actions .btn:only-child {
    margin-left: auto;
}

/* Review Summary */
.review-summary {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 32px;
}

.review-section {
    margin-bottom: 24px;
}

.review-section:last-child {
    margin-bottom: 0;
}

.review-section h4 {
    margin: 0 0 16px 0;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
}

.review-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.review-item:last-child {
    border-bottom: none;
}

.review-item .label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
}

.review-item .value {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Success Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    max-width: 500px;
    width: 100%;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 24px 32px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
}

.success-icon i {
    width: 32px;
    height: 32px;
}

.modal-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-body {
    padding: 24px 32px;
    text-align: center;
}

.modal-body p {
    margin: 0 0 16px 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

.modal-footer {
    padding: 24px 32px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

/* Responsive Design */

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
    .application-modal-content {
        max-width: 1200px;
        max-height: 90vh;
    }
    
    .application-modal .modal-body {
        padding: 40px;
    }
    
    .form-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .step-header h3 {
        font-size: 1.5rem;
    }
    
    .step-header p {
        font-size: 1rem;
    }
}

/* Desktop screens (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .application-modal-content {
        max-width: 1000px;
    }
    
    .application-modal .modal-body {
        padding: 36px;
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

/* Tablet screens (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .application-modal {
        padding: 15px;
    }
    
    .application-modal-content {
        max-width: 90vw;
        max-height: 90vh;
    }
    
    .application-modal .modal-body {
        padding: 28px;
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .progress-step span {
        font-size: 0.8rem;
    }
}

/* Mobile screens (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .application-modal {
        padding: 10px;
    }
    
    .application-modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .application-modal .modal-header {
        padding: 20px 24px;
    }
    
    .application-modal .modal-header h2 {
        font-size: 1.25rem;
    }
    
    .application-modal .modal-body {
        padding: 24px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .step-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .step-actions .btn {
        width: 100%;
    }
    
    .progress-step {
        max-width: 100px;
    }
    
    .progress-step span {
        font-size: 0.75rem;
    }
    
    .review-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* Small mobile screens (up to 575px) */
@media (max-width: 575px) {
    .application-modal {
        padding: 5px;
    }
    
    .application-modal-content {
        max-width: 100vw;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }
    
    .application-modal .modal-header {
        padding: 16px 20px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .application-modal .modal-header h2 {
        font-size: 1.125rem;
        margin: 0;
    }
    
    .application-modal .modal-close {
        position: absolute;
        top: 16px;
        right: 20px;
    }
    
    .application-modal .modal-body {
        padding: 20px 16px;
        flex: 1;
        overflow-y: auto;
    }
    
    .form-progress {
        margin-bottom: 24px;
        padding: 0 10px;
    }
    
    .progress-step {
        max-width: 80px;
    }
    
    .progress-step span {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .step-header h3 {
        font-size: 1.125rem;
    }
    
    .step-header p {
        font-size: 0.8rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group label {
        font-size: 0.8rem;
    }
    
    .input-group input,
    .input-group select,
    .input-group textarea {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    .step-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 24px;
        padding-top: 20px;
    }
    
    .step-actions .btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .review-summary {
        padding: 20px;
    }
    
    .review-section h4 {
        font-size: 0.9rem;
    }
    
    .review-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 6px 0;
    }
    
    .review-item .label,
    .review-item .value {
        font-size: 0.8rem;
    }
    
    .checkbox-label {
        font-size: 0.8rem;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }
}

/* Extra small screens (up to 375px) */
@media (max-width: 375px) {
    .application-modal .modal-body {
        padding: 16px 12px;
    }
    
    .form-progress {
        padding: 0 5px;
    }
    
    .progress-step {
        max-width: 70px;
    }
    
    .progress-step span {
        font-size: 0.65rem;
    }
    
    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
    
    .input-group input,
    .input-group select,
    .input-group textarea {
        padding: 8px 10px;
        font-size: 0.75rem;
    }
    
    .step-actions .btn {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 16px;
    min-width: 300px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success {
    border-left: 4px solid var(--success-color);
}

.toast.error {
    border-left: 4px solid var(--error-color);
}

.toast.warning {
    border-left: 4px solid var(--warning-color);
}

.toast.info {
    border-left: 4px solid var(--info-color);
}

.toast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.toast-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    font-size: 16px;
    line-height: 1;
}

.toast-close:hover {
    color: var(--text-primary);
}

.toast-message {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 0px !important;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.modal-body {
    color: var(--text-secondary);
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Loading */
.loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-color);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Card */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.card-header {
    margin-bottom: 16px;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.card-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
}

.card-body {
    color: var(--text-secondary);
    line-height: 1.6;
}

.card-footer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

/* Button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 1rem;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border: 2px solid var(--primary-color);
}

.btn-primary:focus:not(:disabled) {
    transform: translateY(-1px);
    scale: 0.98;
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover:not(:disabled) {
    background: var(--secondary-hover);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    display: flex;
}

.btn-outline:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Section */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.stat-item {
    text-align: center;
    padding: 0 24px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0px;
    display: block;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Testimonial */
.testimonial-card {
    background: var(--bg-card);
    border: none;
    border-radius: 2rem;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    min-width: 350px;
    width: 350px;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.testimonial-quote {
    margin-bottom: 16px;
    position: relative;
    width: 100%;
    display: flex
;
}

.testimonial-quote i {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 12px;
    display: block;
}

.testimonial-quote p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    gap: 2rem;
}

.author-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    text-align: start;
}

.author-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 5px;
}

.gallery-item[data-album-id] {
    cursor: pointer;
}

.gallery-item {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    max-height: 300px;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: start;
    padding: 24px;
    opacity: 1;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.lightbox.show {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

/* Gallery Lightbox Modal Styles */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 25, 34, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-lightbox.show {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    width: 100%;
    max-width: 60rem; /* 4xl equivalent */
    padding: 1rem;
    margin: 0 auto;
}

.lightbox-main-container {
    position: relative;
    margin-bottom: 1rem;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: rgb(0 0 0 / 60%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: white;
}

.lightbox-close:hover {
    background: rgb(0 0 0 / 50%);
    transform: scale(1.05);
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border: none;
    background: rgb(0 0 0 / 60%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: white;
    font-size: 1.5rem;
}

.lightbox-nav-btn:hover:not(:disabled) {
    background: rgb(0 0 0 / 50%);
    transform: translateY(-50%) scale(1.05);
}

.lightbox-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.lightbox-nav-btn.prev {
    left: 1rem;
}

.lightbox-nav-btn.next {
    right: 1rem;
}

.lightbox-main-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    aspect-ratio: 16/8;
    background: #f6f7f8;
}

.lightbox-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    transition: all 0.3s ease;
}

.lightbox-main-image.loading {
    opacity: 0.5;
    filter: blur(2px);
}

.lightbox-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.lightbox-image-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
}

.lightbox-thumbnails-container {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.lightbox-thumbnails-container::-webkit-scrollbar {
    display: none;
}

.lightbox-thumbnails {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem;
    gap: 0.75rem;
    min-height: 120px;
}

.lightbox-thumbnail {
    flex-shrink: 0;
    width: 8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    border-radius: 0.5rem;
    overflow: hidden;
}

.lightbox-thumbnail:hover {
    opacity: 1;
}

.lightbox-thumbnail.active {
    opacity: 1;
}

.lightbox-thumbnail-content {
    overflow: hidden;
    border-radius: 0.5rem;
    aspect-ratio: 16/9;
    position: relative;
    transition: all 0.3s ease;
}

.lightbox-thumbnail.active .lightbox-thumbnail-content {
    box-shadow: 0 0 0 4px #137fec;
}

.lightbox-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.lightbox-thumbnail:hover img {
    transform: scale(1.1);
}

/* Loading state for lightbox */
.lightbox-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    color: #6c757d;
}

.lightbox-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e9ecef;
    border-top: 3px solid #137fec;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95vw;
        padding: 0.5rem;
    }

    .lightbox-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }

    .lightbox-nav-btn {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }

    .lightbox-nav-btn.prev {
        left: 0.5rem;
    }

    .lightbox-nav-btn.next {
        right: 0.5rem;
    }

    .lightbox-thumbnail {
        width: 6rem;
    }

    .lightbox-image-title {
        font-size: 1rem;
    }
}

/* Tabs */
.tabs {
    margin-top: 32px;
}

.tab-list {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.tab {
    background: none;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab:hover {
    color: var(--text-primary);
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Accordion */
.accordion {
    margin-top: 32px;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    overflow: hidden;
}

.accordion-trigger {
    width: 100%;
    background: var(--bg-card);
    border: none;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.accordion-trigger:hover {
    background: var(--bg-hover);
}

.accordion-trigger h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.accordion-trigger i {
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-trigger i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content > div {
    padding: 0 20px 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Form */
.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.form-section {
    margin-bottom: 32px;
}

.form-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-color);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 0.5rem;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 14px;
    background: var(--bg-card);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
}

.form-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

/* Mission Section Component */
.mission-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-header {
    text-align: center;
    margin-bottom: 60px;
}

.mission-title {
    font-size: 36px;
    font-weight: 700;
    color: #2C2C54;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-underline {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

.mission-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
    margin-top: 60px;
}

.mission-card {
    position: relative;
    width: 280px;
    height: 280px;
    background: rgb(249, 249, 249);
    border: 3px solid #ffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    text-align: center;
    padding: 20px 20px;
    transition: all 0.3s ease;
    z-index: 2;
    overflow: hidden;
    flex-wrap: wrap;
}

.mission-card.mission {
    box-shadow: -5px 15px 15px rgba(255, 107, 107, 0.15),
                -3px 5px 8px rgba(255, 142, 142, 0.2);
}

.mission-card.vision {
    box-shadow: -5px 15px 15px rgba(78, 205, 196, 0.15),
    -3px 5px 8px rgba(110, 231, 223, 0.2);
}

.mission-card.values {
    box-shadow: -5px 15px 15px rgba(255, 167, 38, 0.15), 
    -3px 5px 8px rgba(255, 183, 77, 0.2);
}

.mission-card:hover {
    transform: translateY(-8px);
}

.mission-card.mission:hover {
    box-shadow: -12px 12px 32px rgba(255, 107, 107, 0.4),
                -6px 6px 20px rgba(255, 142, 142, 0.5);
}

.mission-card.vision:hover {
    box-shadow: -12px 12px 32px rgba(78, 205, 196, 0.4),
                -6px 6px 20px rgba(110, 231, 223, 0.5);
}

.mission-card.values:hover {
    box-shadow: -12px 12px 32px rgba(255, 167, 38, 0.4),
                -6px 6px 20px rgba(255, 183, 77, 0.5);
}

.mission-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: transparent;
}

.mission-card.mission .mission-card-icon {
    color: #ff6b6b;
}

.mission-card.vision .mission-card-icon {
    color: #4ecdc4;
}

.mission-card.values .mission-card-icon {
    color: #ffa726;
}

.mission-card-title {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    white-space: nowrap;
}

.mission-card.mission .mission-card-title {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

.mission-card.vision .mission-card-title {
    background: linear-gradient(135deg, #4ecdc4, #6ee7df);
}

.mission-card.values .mission-card-title {
    background: linear-gradient(135deg, #ffa726, #ffb74d);
}

.mission-card-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 90%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}

/* Dark mode styles for mission section */
[data-theme="dark"] .mission-card {
    background: var(--bg-card);
    border: 3px solid var(--border-color);
}

[data-theme="dark"] .mission-card-description {
    color: var(--text-secondary);
}

/* Connecting Lines */
.mission-connector {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        #ff6b6b 0%, #ff6b6b 25%, 
        #4ecdc4 25%, #4ecdc4 75%, 
        #ffa726 75%, #ffa726 100%);
    border-radius: 2px;
    z-index: 1;
}

.mission-connector::before,
.mission-connector::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: inherit;
    border-radius: 50%;
    transform: translateY(-50%);
}

.mission-connector::before {
    left: 25%;
}

.mission-connector::after {
    left: 75%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-cards {
        flex-direction: column;
        gap: 60px;
    }
    
    .mission-card {
        width: 240px;
        height: 240px;
        padding: 30px 15px;
    }
    
    .mission-card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .mission-card-title {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 12px;
    }
    
    .mission-card-description {
        font-size: 12px;
        max-width: 180px;
        -webkit-line-clamp: 5;
    }
    
    .mission-connector {
        display: none;
    }
    
    .mission-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 16px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .mission-card {
        width: 200px;
        height: 200px;
        padding: 20px 10px;
    }
    
    .mission-card-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .mission-card-title {
        font-size: 11px;
        padding: 5px 10px;
        margin-bottom: 10px;
    }
    
    .mission-card-description {
        font-size: 11px;
        max-width: 150px;
        -webkit-line-clamp: 6;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .mission-title {
        font-size: 24px;
    }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}
.academy-container .hero-content {
    max-width: 94%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.academy-container .hero-title {
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.contact-item i {
    width: 20px;
    height: 20px;
}

/* Main Contact Section */
.contact-main {
    padding: 40px 0;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-column {
    height: 70%;
}

.contact-info-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info-content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 1rem;
    /* border: 0.5px solid var(--border-color); */
}

.contact-detail-item i {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-detail-item strong {
    color: var(--text-primary);
}

.support-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.support-link:hover {
    text-decoration: underline;
}

/* Contact Form Column */
.contact-form-column {
    display: flex;
    justify-content: center;
}

.contact-form-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 500px;
}

.contact-form-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 5fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}

/* .form-group input,
.form-group textarea,
.form-group select,  */
.input-group,
.form-group .input-group{
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
}

/* .form-group input:focus,
.form-group textarea:focus,
.form-group select:focus, */
    .form-group .input-group:focus-within{
    /* outline: none; */
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-color-alpha);
}

.input-with-icon {
    position: relative;
    padding-left: 1rem;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}

.form-group input{
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent;
    flex: 1;
}

/* Field Error Styling */
.field-error {
    color: #dc2626;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    position: absolute;
    gap: 0.25rem;
    right: 10px;
    bottom: -25px;
    display: none;
}

.field-error::before {
    content: "⚠";
    font-size: 1rem;
}

.input-with-icon input {
    padding-left: 1rem;
}

.phone-input {
    display: flex;
    gap: 0.5rem;
}

.country-code {
    width: 80px;
    flex-shrink: 0;
}

.phone-input input {
    flex: 1;
}

.char-counter {
    text-align: right;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.form-footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.form-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.map-container .map-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

.map-container .map-overlay .btn {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: black;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.875rem;
}

.map-container .map-overlay .btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.map-container .map-overlay .btn i {
    width: 16px;
    height: 16px;
}

.location-info-column {
    padding-left: 2rem;
}

.location-info-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.location-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.headquarters-info {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.headquarters-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.address-details p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.address-details p:first-child {
    color: var(--text-primary);
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

.faq-intro-column {
    padding-right: 2rem;
}

.faq-intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.faq-subtitle {
    font-weight: 500;
    color: var(--text-secondary);
}

.faq-see-more-btn{
    margin: auto;
}
.faq-email-signup {
    display: flex;
    gap: none;
    flex-direction: row;
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-email-signup .btn{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.faq-email-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-color-rgb), 0.1), transparent);
    transition: left 0.5s ease;
}

.faq-email-signup:hover::before {
    left: 100%;
}

.faq-email-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.faq-email-signup .input-with-icon {
    flex: 1;
    background: var(--bg-card);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.faq-email-signup input {
    width: 100%;
}

.faq-questions {
    display: flex;
    flex-direction: column;
}

.faq-item {
    background: var(--bg-primary);
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: var(--bg-card);
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item.active::before {
    transform: scaleY(1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-question:hover {
    background: rgba(var(--primary-color-rgb), 0.05);
}

.faq-question:active {
    transform: scale(0.98);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-secondary);
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-question:hover i {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: var(--primary-color);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-hover);
    opacity: 0;
    transform: translateY(-10px);
}

.faq-item.active .faq-answer {
    max-height: fit-content !important;
    opacity: 1;
    transform: translateY(0);
    display: block;
    visibility: visible;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 1.5rem;
    animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    color: var(--bg-primary);
    background: var(--text-primary);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 150px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid,
    .location-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-column,
    .location-info-column,
    .faq-intro-column {
        padding: 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .contact-info-content h2,
    .location-info-content h2,
    .faq-intro-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-main,
    .location-section,
    .faq-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-email-signup {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .contact-info-content h2,
    .location-info-content h2,
    .faq-intro-content h2 {
        font-size: 1.75rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .headquarters-info {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem;
    }
}


.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: var(--space-4) !important;
}