/* Sunrise Edu Group - Professional Education Website Styles */
/*
Color Scheme:
- Primary Blue: #1A237E - Used for main headings, primary buttons, and important elements
- Secondary Orange: #FF6B00 - Used for CTAs, highlights, and accent elements
- Gradients:
  - Blue Gradient: 135deg, #1A237E to #283593
  - Orange Gradient: 45deg, #FF6B00 to #FF8F00
  - Hero Gradient: Subtle mix of blue and orange at 5% opacity
*/

:root {
    /* Primary Colors */
    --primary: #1A237E;
    --secondary: #212121;
    
    /* UI Colors */
    --light: #F5F5F5;
    --dark: #212121;
    
    /* Gradients */
    --gradient-blue: linear-gradient(135deg, #1A237E, #283593);
    --gradient-orange: linear-gradient(45deg, #FF6B00, #FF8F00);
    --gradient-hero: linear-gradient(135deg, rgba(26, 35, 126, 0.05) 0%, rgba(255, 107, 0, 0.05) 100%);
    
    /* Text Colors */
    --body-color: #212121;
    --body-bg: #ffffff;
    --text-muted: #6c757d;
    --text-primary: #1A237E;
    --text-secondary: #FF6B00;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,.075);
    --shadow: 0 4px 12px rgba(0,0,0,.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,.15);
    
    --transition-base: all 0.3s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    --border-radius-sm: 4px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    
    --font-primary: 'Poppins', sans-serif;
    --font-headings: 'Merriweather', serif;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--body-color);
    background: #ffffff;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-align: center;
}

.section-subheading {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 3rem;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

p {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

a {
    transition: var(--transition-smooth);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Base styles */
body {
    font-family: var(--font-primary);
    color: var(--body-color);
    background: var(--body-bg);
    line-height: 1.6;
}

/* Update bar styles */
.update-bar {
    background: linear-gradient(90deg, rgb(116, 31, 221) 0%, rgb(100, 57, 231) 100%);
    color: white;
    font-size: 0.95rem;
    padding: 0.7rem 0;
    overflow: hidden;
    width: 100%;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 1020;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    padding-right: 50px;
}

.institution-tag {
    background-color: #e3f2fd;
    color: #0d47a1;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 5px;
    text-transform: uppercase;
    font-size: 0.85em;
}

.marquee-title {
    color: #f90707;
    font-weight: 600;
}

.marquee-description {
    color: #fff;
}

.marquee-separator {
    color: #f5f1f1;
    margin: 0 8px;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.update-bar:hover .marquee-content {
    animation-play-state: paused;
}

/* Mobile styles for update bar */
@media (max-width: 767.98px) {
    .update-bar {
        padding: 0.8rem 0;
        font-size: 0.85rem;
    }
}

/* Facility badge styles from screenshot */
.Facility {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.85rem;
    margin-right: 8px;
    color: white;
}

/* Course badge styles from screenshot */
.Course {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.85rem;
    margin-right: 8px;
    color: white;
}

/* Admission badge styles from screenshot */
.Admission {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.85rem;
    color: white;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    padding-left: 100%;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.section-spacing {
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.section-title {
    margin-bottom: 3rem;
    text-align: center;
    color: #1A237E;
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

/* Enhanced Indian Navigation */
.custom-navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    border-bottom: 3px solid #FF6B00;
}

.navbar-brand {
    color: #1A237E !important;
    font-weight: 700;
    font-size: 1.4rem;
}

.navbar-brand img {
    height: 40px;
    margin-right: 10px;
}

.custom-navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10"><path d="M0,5 Q25,0 50,5 T100,5" stroke="%23FFD700" stroke-width="0.5" fill="none" opacity="0.3"/></svg>') repeat-x;
    pointer-events: none;
}

.custom-navbar.scrolled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 248, 240, 0.98) 100%) !important;
    box-shadow: var(--shadow-deep);
    padding: 0.5rem 0;
}

/* Enhanced Indian Brand */
.indian-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-bounce);
}

.indian-brand:hover {
    transform: scale(1.05);
}

.brand-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-icon .fa-sun {
    font-size: 2.5rem;
    color: var(--gold);
    animation: sunRotate 20s linear infinite;
    filter: drop-shadow(2px 2px 4px rgba(255, 153, 51, 0.3));
}

.sun-rays {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px dashed var(--saffron);
    border-radius: 50%;
    animation: sunRays 15s linear infinite reverse;
    opacity: 0.6;
}

.brand-content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-main {
    font-family: var(--font-indian);
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gradient-saffron);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-sub {
    font-family: var(--font-headings);
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Custom Indian Toggler */
.indian-toggler {
    border: none;
    background: none;
    width: 40px;
    height: 30px;
    position: relative;
    cursor: pointer;
}

.indian-toggler span {
    display: block;
    width: 30px;
    height: 3px;
    background: #FF6B00;
    margin: 6px auto;
    transition: var(--transition-smooth);
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.indian-toggler:hover span {
    background: #1A237E;
}

/* Enhanced Navigation Links */
.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-primary) !important;
    margin: 0 0.25rem;
    padding: 0.75rem 1rem !important;
    border-radius: var(--border-radius);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-saffron);
    transition: var(--transition-smooth);
    z-index: -1;
    opacity: 0.1;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
    opacity: 0.2;
}

.nav-link:hover,
.nav-link.active {
    color: var(--maroon) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.nav-link i {
    font-size: 1.1rem;
    transition: var(--transition-bounce);
}

.nav-link:hover i {
    transform: scale(1.2) rotate(5deg);
}

.nav-link.active::after {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
}



/* Professional Hero Section */
.hero-section {
    background: var(--gradient-hero);
    padding: 2rem 0 4rem;
    min-height: 15vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 0;
    margin-top: -20px;
}

.gradient-text {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--secondary);
}

.gradient-text-blue {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary);
}

.bg-primary-soft {
    background-color: rgba(26, 35, 126, 0.1) !important;
}

.min-vh-75 {
    min-height: 75vh;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #151B60;
    border-color: #151B60;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%230d6efd" opacity="0.1"/></pattern></defs><rect width="200" height="200" fill="url(%23dots)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.welcome-badge {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.1) !important;
}

.hero-title {
    animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-title .display-4 {
    display: block;
    line-height: 1.2;
}

.hero-title .h4 {
    display: block;
    margin-top: 0.5rem;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.5s both;
    max-width: 90%;
    line-height: 1.6;
}

/* Professional Stats Cards */
.hero-stats {
    animation: fadeInUp 1s ease-out 0.7s both;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Professional Buttons */
.hero-buttons {
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-btn {
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    background: var(--gradient-primary);
    box-shadow: 0 2px 10px rgba(26, 35, 126, 0.2);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-btn.btn-primary {
    background-color: #1A237E;
    border-color: #1A237E;
}

.hero-btn.btn-primary:hover {
    background-color: #151B60;
    border-color: #151B60;
}

.hero-btn.btn-secondary {
    background-color: #FF6B00;
    border-color: #FF6B00;
}

.hero-btn.btn-secondary:hover {
    background-color: #E66000;
    border-color: #E66000;
}

.hero-btn.btn-outline-primary {
    color: #1A237E;
    border-color: #1A237E;
}

.hero-btn.btn-outline-primary:hover {
    background-color: #1A237E;
    color: white;
}

/* Professional Image Section */
.hero-image {
    position: relative;
    z-index: 2;
    animation: slideInRight 1s ease-out 0.6s both;
}

.image-container {
    position: relative;
}

.image-container img {
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.02);
}

.rounded-lg {
    border-radius: 16px !important;
}

/* Floating Cards - Professional Style */
.floating-cards {
    position: relative;
}

.floating-card {
    position: absolute;
    z-index: 3;
    animation-fill-mode: both;
}

.result-card {
    top: 10%;
    right: -10%;
    animation: floatGentle1 6s ease-in-out infinite 1s;
}

.achievement-card {
    top: 50%;
    left: -8%;
    animation: floatGentle2 6s ease-in-out infinite 2s;
}

.admission-card {
    bottom: 10%;
    right: -12%;
    animation: floatGentle3 6s ease-in-out infinite 3s;
}

.floating-card .card {
    border-radius: 12px;
    border: none;
    min-width: 200px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.floating-card .card:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.result-label {
    font-weight: 600;
    color: #495057;
}

.result-value {
    font-weight: 700;
}

/* Clean Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideInLeft {
    from { 
        opacity: 0; 
        transform: translateX(-50px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

@keyframes slideInRight {
    from { 
        opacity: 0; 
        transform: translateX(50px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

@keyframes floatGentle1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes floatGentle2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(-1deg); }
}

@keyframes floatGentle3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1.5deg); }
}

/* Namaste Welcome */
.welcome-namaste {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    animation: namasteFadeIn 1.5s ease-out;
}

.namaste-emoji {
    font-size: 2rem;
    animation: namasteBow 3s ease-in-out infinite;
}

.hindi-welcome {
    font-family: var(--font-indian);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--saffron);
    text-shadow: 2px 2px 4px rgba(255, 153, 51, 0.3);
}

.english-welcome {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
}




.animated-stat {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 248, 240, 0.8) 100%);
    padding: 1.5rem 1rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-warm);
    border: 2px solid transparent;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.animated-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-saffron);
    opacity: 0.1;
    transition: var(--transition-smooth);
}

.animated-stat:hover::before {
    left: 0;
}

.animated-stat:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    animation: iconBounce 2s ease-in-out infinite;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-royal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-indian);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.3;
}

/* Enhanced Indian Buttons */
.indian-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: buttonsSlideUp 1.5s ease-out 2s both;
}

.indian-btn-primary,
.indian-btn-outline,
.indian-btn-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem 1.8rem;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    min-width: 140px;
}

.indian-btn-primary {
    background: var(--gradient-saffron);
    color: white;
    border-color: var(--saffron);
    box-shadow: var(--shadow-warm);
}

.indian-btn-outline {
    background: transparent;
    color: var(--saffron);
    border-color: var(--saffron);
}

.indian-btn-success {
    background: var(--gradient-royal);
    color: white;
    border-color: var(--royal-blue);
    box-shadow: var(--shadow-deep);
}

.indian-btn-primary:hover,
.indian-btn-outline:hover,
.indian-btn-success:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-gold);
    color: white;
}

.indian-btn-outline:hover {
    background: var(--gradient-saffron);
}

.btn-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    animation: iconFloat 3s ease-in-out infinite;
}

.btn-text {
    font-family: var(--font-indian);
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.btn-text small {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Enhanced Indian Hero Image */
.indian-hero-image {
    position: relative;
    animation: imageSlideIn 1.5s ease-out 1s both;
}

.image-frame {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    background: var(--gradient-saffron);
    padding: 8px;
}

.main-image {
    width: 100%;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 153, 51, 0.1) 50%, transparent 100%);
    pointer-events: none;
}

.image-frame:hover .main-image {
    transform: scale(1.03);
}

/* Floating Cards */
.floating-cards {
    position: relative;
}

.floating-card {
    position: absolute;
    animation-fill-mode: both;
    z-index: 3;
}

.result-card {
    top: 5%;
    right: -15%;
    animation: floatCard1 4s ease-in-out infinite 2s;
}

.achievement-card {
    top: 45%;
    left: -10%;
    animation: floatCard2 4s ease-in-out infinite 3s;
}

.admission-card {
    bottom: 5%;
    right: -20%;
    animation: floatCard3 4s ease-in-out infinite 4s;
}

.indian-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 240, 0.9) 100%);
    border: 2px solid var(--gold);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-gold);
    backdrop-filter: blur(10px);
    transition: var(--transition-bounce);
}

.indian-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-deep);
}

.indian-card.pulsing {
    animation: cardPulse 2s ease-in-out infinite;
}

.card-title {
    font-family: var(--font-indian);
    color: var(--maroon);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-icon {
    font-size: 1.2rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.result-label {
    font-weight: 600;
    color: var(--text-primary);
}

.result-value {
    font-family: var(--font-indian);
    color: var(--saffron);
    font-weight: 700;
}

/* Footer styles */
.footer {
    background: var(--dark);
    color: var(--light);
}

.footer a {
    color: var(--light);
    opacity: 0.8;
    transition: var(--transition-base);
}

.footer a:hover {
    opacity: 1;
    color: var(--primary);
}



/* Button Styles */
.btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0.025em;
}

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

.btn-primary:hover {
    background: var(--gradient-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
    border-color: var(--primary);
}

.btn-outline-primary {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--gradient-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
    border-color: var(--secondary);
}

.btn-light {
    background: white;
    border-color: white;
    color: var(--primary-orange);
}

.btn-light:hover {
    background: var(--light-gray);
    border-color: var(--light-gray);
    color: var(--primary-orange);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    border-color: white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    border-color: white;
    color: var(--primary-orange);
    transform: translateY(-2px);
}

/* About Section Styling */
.about-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

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

.about-stat {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    min-width: 120px;
}

.about-stat h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-stat p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

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

/* Achievers Section */
.achievers-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.achiever-card {
    transition: all 0.3s ease;
}

.achiever-card:hover {
    transform: translateY(-10px);
}

.achievement-badges .badge {
    margin: 0.25rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

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

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

/* Excellence Section */
.excellence-section {
    padding: 5rem 0;
}

.achievement-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.achievement-item i {
    font-size: 2rem;
    margin-right: 1rem;
}

.achievement-item h5 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.achievement-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Campus Section */
.campus-section {
    padding: 5rem 0;
}

.facility-card {
    transition: var(--transition);
    cursor: pointer;
}

.facility-card:hover {
    transform: translateY(-5px);
}

.facility-card img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.facility-card:hover img {
    box-shadow: var(--shadow-lg);
}

.facility-card h5 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Nurturing Section */
.nurturing-section {
    background: var(--gradient-blue);
    padding: 5rem 0;
}

.achievement-badge {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    backdrop-filter: blur(10px);
}

/* Institutions Section */
.institutions-section {
    padding: 5rem 0;
}

.institution-card {
    height: 100%;
    transition: var(--transition);
}

.institution-card:hover {
    transform: translateY(-5px);
}

.institution-card .card {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.institution-card .card:hover {
    box-shadow: var(--shadow-lg);
}

.institution-card .card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.institution-card .card-text {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.institution-card .btn {
    margin-top: auto;
}

/* Difference Section */
.difference-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.feature-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-card h5 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

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

.testimonial-card {
    height: 100%;
}

.testimonial-card .card {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

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

.testimonial-card .card-body {
    padding: 2rem;
}

.stars {
    margin-bottom: 1rem;
}

.stars i {
    margin-right: 0.25rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-blue);
    padding: 5rem 0;
}

.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: #D1D5DB;
    padding: 4rem 0 2rem;
}

.footer h5, .footer h6 {
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer a {
    color: #9CA3AF;
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--saffron);
}

.footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 0.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
}

.contact-info p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    width: 20px;
    margin-right: 0.75rem;
}

.text-light-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-card {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .marquee-text {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .achievement-item {
        text-align: center;
        flex-direction: column;
    }
    
    .achievement-item i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F1F5F9;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 4px;
}

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

/* Utility Classes */
.text-orange {
    color: var(--primary-orange) !important;
}

.text-saffron {
    color: var(--saffron) !important;
}

.bg-orange {
    background-color: var(--primary-orange) !important;
}

.border-orange {
    border-color: var(--primary-orange) !important;
}

.shadow-custom {
    box-shadow: var(--shadow-lg);
}

.rounded-custom {
    border-radius: var(--border-radius-lg);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 60px;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

/* Milestone styles */
.milestone-year {
    color: rgba(255, 255, 255, 0.9);
}

/* Loading Animation */
.loading {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loaded {
    opacity: 1;
}