:root {
    --primary-color: #007bff; /* Medical Blue */
    --secondary-color: #6c757d;
    --accent-color: #ffc107;
    --pastel-blue: #e3f2fd;
    --pastel-pink: #fce4ec;
    --pastel-yellow: #fff9c4;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-light-blue { background-color: #f0f8ff; }

/* Header */
.glass-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 80px;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 50, 100, 0.6); /* Blue tint overlay */
    z-index: 1;
}

.text-shadow {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.text-gradient-main {
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    font-weight: 800;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
}

/* Buttons */
.hover-scale {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hover-scale:hover {
    transform: scale(1.05);
}

.pulse-btn {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 123, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); }
}

/* Cards (Why Us) */
.hover-card {
    transition: all 0.3s ease;
}
.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.15)!important;
}

.icon-3d {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: #fff;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1), -5px -5px 15px rgba(255,255,255,0.8);
}
.bg-soft-primary { background-color: #e3f2fd; }
.bg-soft-success { background-color: #e8f5e9; }
.bg-soft-warning { background-color: #fff8e1; }
.bg-soft-danger { background-color: #ffebee; }

/* Story Cards (Majors) */
.story-card {
    cursor: pointer;
}
.transition-zoom {
    transition: transform 0.6s ease;
}
.story-card:hover .transition-zoom {
    transform: scale(1.1);
}
.overlay-gradient {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}
.reveal-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.story-card:hover .reveal-btn {
    opacity: 1;
    transform: translateY(0);
}
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.snap-x {
    scroll-snap-type: x mandatory;
}
.snap-center {
    scroll-snap-align: center;
}

/* Timeline */
.timeline-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}
.timeline-steps .timeline-step {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 1rem;
    z-index: 2;
}
.timeline-steps .timeline-step .inner-circle {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 2;
    position: relative;
}

/* Real Talk */
.counter {
    font-weight: 800;
}

/* Life at School (Masonry) */
.hover-zoom img {
    transition: transform 0.5s ease;
}
.hover-zoom:hover img {
    transform: scale(1.1);
}
.overlay-text {
    position: absolute;
    color: white;
    padding: 1rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    width: 100%;
}
.bottom-left {
    bottom: 0;
    left: 0;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar a {
    text-decoration: none;
    color: white;
    text-align: center;
    font-size: 1.1rem;
}
.mobile-sticky-bar {
    border-top: 1px solid #ddd;
}

/* Lucky Wheel */
@keyframes spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.animate-spin-slow {
    animation: spin-slow 5s linear infinite;
}

/* General */
.ls-2 { letter-spacing: 2px; }
