/* Custom CSS for IAS Vision - UPSC Interview Preparation */

/* Root Variables - Modern Light Theme */
:root {
    --primary-color: #6a3276;
    --secondary-color: #F97316;
    --accent-color: #3B82F6;
    --text-dark: #111827;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    --bg-main: #F9FAFB;
    --bg-section: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-hover: #F3F4F6;
    --bg-accent: #ECEFF1;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --glow-blue: 0 0 20px rgba(29, 78, 216, 0.3);
    --glow-coral: 0 0 20px rgba(249, 115, 22, 0.3);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-main);
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Navigation Styles */
.custom-navbar {
    background: var(--bg-section);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.custom-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
    color: var(--secondary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 0.5rem;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

/* Hero Banner */
.hero-banner {
    height: 300px;
    max-width: 1200px;
    margin: 2rem auto;
    margin-top: 6rem;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%),
                url('/banner1.webp?w=1920&h=1080&fit=crop') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(29, 78, 216, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
    animation: gradientShift 10s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color:#6a3276;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary {
    /* background: linear-gradient(135deg, var(--secondary-color) 0%, #FB923C 100%); */
    background-color: #6a32768a;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--glow-coral);
    background: linear-gradient(135deg, #FB923C 0%, var(--secondary-color) 100%);
    color: white;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

/* Section Styles */
.team-section,
.toppers-section,
.articles-section,
.query-section,
.current-affairs-section,
.blogs-section,
.refer-section {
    padding: 5rem 0;
    position: relative;
}

.team-section {
    background: var(--bg-section);
}

.toppers-section {
    background: var(--bg-main);
}

.articles-section {
    background: var(--bg-section);
}

.query-section {
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
}

.current-affairs-section {
    background: var(--bg-main);
}

.blogs-section {
    background: var(--bg-accent);
}

.refer-section {
    background: var(--bg-section);
}

/* Team Cards */
.team-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.team-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    /* border: 4px solid var(--secondary-color); */
    transition: all 0.3s ease;
}

.team-card:hover .team-image {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-designation {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Toppers Slider */
.toppers-slider-container {
    position: relative;
    margin: 2rem 0;
}

.toppers-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.toppers-slider {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding: 1rem 0;
    flex: 1;
}

.topper-slide {
    flex: 0 0 auto;
    width: 280px;
    transition: all 0.3s ease;
}

/* Topper Cards */
.topper-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    height: 100%;
}

.topper-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.topper-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #000000c7;
    transition: all 0.3s ease;
}

.topper-card:hover .topper-image {
    transform: scale(1.05);
    border-color: var(--secondary-color);
}

.topper-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.topper-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.topper-year {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.topper-quote {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Slider Navigation */
.slider-nav {
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.slider-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-lg), var(--glow-blue);
}

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

.slider-nav:disabled:hover {
    background: var(--bg-card);
    color: var(--primary-color);
    transform: none;
    box-shadow: var(--shadow-md);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Article List Layout */
.articles-list {
    max-width: 100%;
}

.article-list-item {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.article-list-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color:#6d247e;
}

.article-list-image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
}

.article-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.article-list-item:hover .article-list-image img {
    transform: scale(1.05);
}

.article-list-content {
    flex: 1;
    min-width: 0;
}

.article-list-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.article-list-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.article-list-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.article-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.article-read-more {
    color: white;
    background-color: #6a32768a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    /* border: 2px solid var(--accent-color); */
    border-radius: 25px;
    display: inline-block;
}

.article-read-more:hover {
    background: linear-gradient(135deg, #FB923C 0%, var(--secondary-color) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), var(--glow-blue);
    transition: 0.5s ease-in-out;
}

.btn-outline-primary {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), var(--glow-blue);
}

/* Query Form */
.query-form-container {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.query-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-hover);
    color: var(--text-dark);
}

.query-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.2);
    background: var(--bg-card);
}

/* Current Affairs List Layout */
.current-affairs-list {
    max-width: 100%;
}

.current-affairs-item {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.current-affairs-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: #6d247e;
}

.current-affairs-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.current-affairs-item:hover .current-affairs-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.current-affairs-content {
    flex: 1;
    min-width: 0;
}

.current-affairs-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.current-affairs-summary {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.current-affairs-date {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    background: var(--bg-hover);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    display: inline-block;
}

/* Register Section */
.register-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.register-section::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 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.register-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.register-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.btn-register {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #FB923C 100%);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.btn-register:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-xl), var(--glow-coral);
    background: linear-gradient(135deg, #FB923C 0%, var(--secondary-color) 100%);
    color: white;
}

/* Blogs Section */
.blog-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.blog-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    display: inline-block;
}

.blog-read-more:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), var(--glow-blue);
}

/* Refer Section */
.refer-link-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.refer-link {
    flex: 1;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    background: var(--bg-hover);
    color: var(--text-dark);
}

.social-share {
    margin-top: 2rem;
}

.social-buttons .btn {
    margin: 0.25rem;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background: var(--bg-section);
    color: var(--text-dark);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--border-color);
}

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

.footer-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-text {
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-divider {
    border-color: var(--border-color);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: var(--text-light);
    margin: 0;
    text-align: center;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-banner {
        height: 250px;
        margin: 1rem;
        border-radius: 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .team-card,
    .topper-card {
        margin-bottom: 2rem;
    }
    
    .query-form-container {
        padding: 2rem;
    }
    
    .register-title {
        font-size: 2rem;
    }
    
    .refer-link-container {
        flex-direction: column;
    }
    
    .social-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-buttons .btn {
        width: 200px;
        margin: 0.5rem 0;
    }
    
    /* Article List Mobile */
    .article-list-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .article-list-image {
        width: 100%;
        max-width: 300px;
        height: 200px;
    }
    
    .article-list-meta {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Current Affairs Mobile */
    .current-affairs-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .current-affairs-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    /* Toppers Slider Mobile */
    .topper-slide {
        width: 250px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .topper-card {
        padding: 1.5rem;
    }
    
    .topper-image {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        height: 200px;
        margin: 0.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-primary,
    .btn-outline-light {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Article List Small Mobile */
    .article-list-item {
        padding: 1rem;
    }
    
    .article-list-image {
        height: 150px;
    }
    
    .article-list-title {
        font-size: 1.1rem;
    }
    
    .article-list-excerpt {
        font-size: 0.9rem;
    }
    
    /* Current Affairs Small Mobile */
    .current-affairs-item {
        padding: 1rem;
    }
    
    .current-affairs-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .current-affairs-title {
        font-size: 1rem;
    }
    
    .current-affairs-summary {
        font-size: 0.85rem;
    }
    
    /* Blogs Small Mobile */
    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-content {
        padding: 1rem;
    }
    
    .blog-title {
        font-size: 1rem;
    }
    
    .blog-excerpt {
        font-size: 0.85rem;
    }
    
    /* Toppers Slider Small Mobile */
    .topper-slide {
        width: 220px;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .topper-card {
        padding: 1rem;
    }
    
    .topper-image {
        width: 70px;
        height: 70px;
    }
    
    .topper-name {
        font-size: 1rem;
    }
    
    .topper-year {
        font-size: 0.8rem;
    }
    
    .topper-quote {
        font-size: 0.8rem;
    }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.border-gradient {
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--primary-color), var(--accent-color)) 1;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Message Animation */
.alert-success {
    animation: slideInDown 0.5s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
