/* Base styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
}

/* Carousel styles */
.carousel-slide {
    transition: transform 0.7s ease-in-out;
}

/* Gallery hover effects */
.gallery-item {
    transition: all 0.3s ease;
}

/* Program card hover effects */
.program-card:hover {
    transform: translateY(-5px);
}

/* Faculty card hover effects */
.faculty-card:hover {
    transform: translateY(-5px);
}

/* Timeline styles */
@media (min-width: 768px) {
    .timeline-line {
        content: '';
        position: absolute;
        left: 50%;
        height: 100%;
    }
    
    .timeline-item:nth-child(odd) .timeline-date {
        order: 1;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        order: 2;
    }
}

/* Form styles */
input:focus, select:focus {
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.3);
}

/* Animation classes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}