:root {
    --primary: #1a365d;
    --secondary: #d4af37;
    --light: #f8f9fa;
    --dark: #343a40;
    --accent: #2c5282;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Premium Header Styles */
    .premium-header {
        background: linear-gradient(135deg, var(--primary) 0%, #2d3748 100%);
        color: white;
        padding: 8px 0;
        border-bottom: 3px solid var(--secondary);
        font-size: 0.9rem;
    }

    .premium-contact i {
        color: var(--secondary);
        margin-right: 8px;
    }

    .social-icons a {
        color: white;
        margin-left: 15px;
        font-size: 1.1rem;
        transition: all 0.3s;
    }

    .social-icons a:hover {
        color: var(--secondary);
        transform: translateY(-3px);
    }


    /* Navigation */
    .navbar {
        background-color: white !important;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        padding: 12px 0;
        transition: all 0.3s ease;
        align-items: center;
    }

    .navbar.scrolled {
        padding: 8px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .navbar-brand {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 1.8rem;
        color: var(--primary) !important;
        margin-right: 3rem;
        display: flex;
        align-items: center;
        padding: 0;
    }

    .navbar-brand span {
        color: var(--secondary);
    }

    .navbar-nav {
        gap: 0.5rem;
        align-items: center;
    }

    .nav-link {
        color: var(--dark) !important;
        font-weight: 500;
        padding: 0.6rem 1.2rem !important;
        border-radius: 25px;
        transition: all 0.3s ease;
        position: relative;
        margin: 0 2px;
        display: flex;
        align-items: center;
    }

    .nav-link:hover {
        color: var(--primary) !important;
        background: rgba(26, 54, 93, 0.05);
        transform: translateY(-2px);
    }

    /* Active Page Indicator */
    .nav-link.active {
        color: var(--secondary) !important;
        font-weight: 600;
        background: rgba(212, 175, 55, 0.1);
    }

    .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 50%;
        transform: translateX(-50%);
        width: 70%;
        height: 2px;
        background: var(--secondary);
        border-radius: 2px;
    }

    /* News Ticker */
/* News Ticker - Instant & Perfect Speed */
.news-ticker-section {
    background: var(--dark) !important;
    border-bottom: 3px solid #dc3545;
    padding: 8px 0;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.ticker-label {
    font-size: 0.75rem;
    white-space: nowrap;
    background: #dc3545 !important;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    text-align: center;
}

.ticker-container {
    height: 32px;
    position: relative;
    overflow: hidden;
}

.ticker-wrapper {
    display: flex;
    animation: ticker-scroll 60s linear infinite;
    white-space: nowrap;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1 !important;
    visibility: visible !important;
    animation-delay: 0s !important;
    animation-play-state: running !important;
}

.ticker-item {
    padding: 0 3rem;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Perfect Speed Animation - 120 seconds for complete loop */
@keyframes ticker-scroll {
    0% { 
        transform: translateX(0);
    }
    100% { 
        transform: translateX(-100%);
    }
}

/* Force immediate rendering */
.news-ticker-section,
.ticker-container,
.ticker-wrapper {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

    /* Mobile Header Fixes - Only Alignment Issues */
    @media (max-width: 991.98px) {
        .navbar {
            padding: 10px 0;
        }
        
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 0 15px;
        }
        
        .navbar-brand {
            font-size: 1.4rem !important;
            margin: 0 !important;
            line-height: 1.2;
            max-width: 70%;
            white-space: normal;
        }
        
        .navbar-toggler {
            padding: 8px 12px;
            border: 2px solid var(--secondary);
            margin: 0;
        }
        
        .navbar-collapse {
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-top: 10px;
        }
        
        .navbar-nav {
            gap: 0;
            width: 100%;
        }
        
        .nav-link {
            padding: 10px 15px !important;
            margin: 2px 0;
            border-radius: 5px;
            text-align: left;
            width: 100%;
        }
        
        .nav-link.active::after {
            bottom: 5px;
            width: 50px;
        }
    }

    @media (max-width: 768px) {
        /* Premium Contact Hidden on Mobile */
        .premium-contact {
            display: none !important;
        }
        
        .premium-header .col-md-6 {
            width: 100%;
            flex: 0 0 100%;
            text-align: center !important;
            padding: 0;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 0;
        }
        
        .social-icons a {
            margin: 0 !important;
        }
        
        .navbar-brand {
            font-size: 1.5rem;
            margin-right: 1rem;
        }
        
        .premium-header {
            font-size: 0.8rem;
        }
    }

    @media (max-width: 576px) {
        .navbar-brand {
            font-size: 1.2rem !important;
            max-width: 65%;
        }
        
        .social-icons {
            gap: 12px;
        }
        
        .social-icons a {
            font-size: 1rem;
        }
    }

    @media (max-width: 375px) {
        .navbar-brand {
            font-size: 1rem !important;
        }
        
        .navbar-toggler {
            padding: 6px 10px;
        }
    }

.live-stats {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        .news-ticker {
            background: #f8f9fa;
            border-left: 4px solid #007bff;
        }
        .quick-links-card {
            transition: transform 0.3s ease;
        }
        .quick-links-card:hover {
            transform: translateY(-5px);
        }
/* 3 section css  */
/* Professional Stats Bar */
.professional-stats .stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.professional-stats .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.stat-icon {
    opacity: 0.9;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.stat-growth {
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

/* Quick Links Section */
.quick-link-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef !important;
}

.quick-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    border-color: #007bff !important;
}

.icon-circle {
    width: 80px;
    height: 80px;
}

/* Additional Colors */
.bg-purple { background-color: #6f42c1 !important; }
.btn-purple { background-color: #6f42c1; border-color: #6f42c1; color: white; }
.btn-outline-purple { border-color: #6f42c1; color: #6f42c1; }
.btn-outline-purple:hover { background-color: #6f42c1; color: white; }

.bg-teal { background-color: #20c997 !important; }
.btn-teal { background-color: #20c997; border-color: #20c997; color: white; }
.btn-outline-teal { border-color: #20c997; color: #20c997; }
.btn-outline-teal:hover { background-color: #20c997; color: white; }

/* Link Buttons */
.link-buttons .btn {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
}



/* Hero Section
.hero-section {
    position: relative;
    height: 90vh;
    overflow: hidden;
    color: white;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 54, 93, 0.8), rgba(26, 54, 93, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-heading {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.btn-premium {
    background-color: var(--secondary);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-premium:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
} */

/* ======= PROFESSIONAL HERO SECTION - COMPLETELY FIXED ======= */
.professional-hero {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.hero-slide.active {
    opacity: 1;
    position: relative;
}

.hero-content {
    padding: 1rem 0;
    width: 100%;
}

.center-content {
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.15);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

/* ======= MAZEDAR BUTTONS - COMPLETELY FIXED ======= */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-btn {
    padding: 1.1rem 2.2rem;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 220px;
    text-align: center;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0,123,255,0.4);
    border: 2px solid #007bff;
}

.hero-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.hero-btn-warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #212529;
    box-shadow: 0 8px 25px rgba(255,193,7,0.4);
    border: 2px solid #ffc107;
    font-weight: 800;
}

.hero-btn-info {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(23,162,184,0.4);
    border: 2px solid #17a2b8;
}

.hero-btn-success {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(40,167,69,0.4);
    border: 2px solid #28a745;
}

/* Button Hover Effects - MAZEDAR & WORKING */
.hero-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    text-decoration: none;
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    box-shadow: 0 15px 35px rgba(0,123,255,0.6);
    border-color: #0056b3;
}

.hero-btn-outline:hover {
    background: white;
    color: #007bff;
    border-color: white;
    box-shadow: 0 15px 35px rgba(255,255,255,0.4);
}

.hero-btn-warning:hover {
    background: linear-gradient(135deg, #e0a800 0%, #c69500 100%);
    box-shadow: 0 15px 35px rgba(255,193,7,0.6);
    border-color: #e0a800;
    color: #212529;
}

.hero-btn-info:hover {
    background: linear-gradient(135deg, #138496 0%, #117a8b 100%);
    box-shadow: 0 15px 35px rgba(23,162,184,0.6);
    border-color: #138496;
}

.hero-btn-success:hover {
    background: linear-gradient(135deg, #1e7e34 0%, #155724 100%);
    box-shadow: 0 15px 35px rgba(40,167,69,0.6);
    border-color: #1e7e34;
}

.hero-btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* Button Ripple Effect */
.hero-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-btn:hover::after {
    width: 300px;
    height: 300px;
}

/* ======= HERO CARD - COMPLETELY FIXED ======= */
.hero-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.3);
    max-width: 100%;
    margin: 0 auto;
}

.hero-card .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.hero-card .card-header h4 {
    margin: 0;
    font-weight: 700;
    font-size: 1.5rem;
}

.hero-card .card-header p {
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
    font-size: 1rem;
}

.hero-card .card-body {
    padding: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-item i {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,123,255,0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.info-item div strong {
    display: block;
    color: #333;
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-weight: 700;
}

.info-item div p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Campus Highlights */
.campus-highlight {
    text-align: center;
    color: white;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    margin: 0.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.campus-highlight:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.25);
}

.campus-highlight i {
    margin-bottom: 1rem;
}

.campus-highlight h4 {
    margin: 1rem 0 0.5rem 0;
    font-weight: 700;
    font-size: 1.3rem;
}

.campus-highlight p {
    opacity: 0.9;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Achievement Stats */
.achievement-stats {
    display: flex;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.achievement-stats .stat {
    text-align: center;
    color: white;
    background: rgba(255,255,255,0.15);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    min-width: 120px;
    flex: 1;
    transition: all 0.3s ease;
}

.achievement-stats .stat:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.25);
}

.achievement-stats .stat h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.achievement-stats .stat p {
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hero Controls */
.hero-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
    z-index: 10;
}

.hero-prev, .hero-next {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    font-size: 1.2rem;
}

.hero-prev:hover, .hero-next:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.hero-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-dots .dot.active {
    background: #fff;
    transform: scale(1.3);
    box-shadow: 0 4px 15px rgba(255,255,255,0.5);
}

.hero-dots .dot:hover {
    background: #fff;
    transform: scale(1.2);
}

/* ======= COMPLETE RESPONSIVE FIXES ======= */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-card {
        max-width: 350px;
    }
}

@media (max-width: 992px) {
    .hero-slide {
        min-height: auto;
        padding: 4rem 0;
        height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-card {
        max-width: 400px;
        margin: 2rem auto 0 auto;
    }
    
    .achievement-stats {
        gap: 1.5rem;
    }
    
    .achievement-stats .stat {
        min-width: 100px;
        padding: 1.2rem 0.8rem;
    }
    
    .achievement-stats .stat h3 {
        font-size: 2rem;
    }
    
    .hero-controls {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .hero-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 200px;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .feature-item {
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: 280px;
    }
    
    .achievement-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .achievement-stats .stat {
        width: 150px;
    }
    
    .campus-highlight {
        margin: 0.5rem 0;
        padding: 1.5rem 1rem;
    }
    
    .hero-card .card-body {
        padding: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .info-item i {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        padding: 3rem 0;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1.2rem;
    }
    
    .hero-card {
        margin: 1.5rem auto 0 auto;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        min-width: 180px;
    }
    
    .feature-item {
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .hero-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 160px;
    }
    
    .achievement-stats .stat {
        width: 120px;
        padding: 1rem 0.5rem;
    }
    
    .achievement-stats .stat h3 {
        font-size: 1.8rem;
    }
}
/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: #f9fafc;
}

.section-title {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--secondary);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(-1.1);
    background-color: #3f4349;
    color: white;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* Testimonials */
.testimonial-section {
    padding: 100px 0;
    background: linear-gradient(to right, var(--primary), var(--accent));
    color: white;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
}

/* News Section */
.news-section {
    padding: 100px 0;
}

.news-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: var(--primary);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Fee Structure Section */
.fee-section {
    padding: 100px 0;
    background-color: #f9fafc;
}

.fee-table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fee-table thead {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
}

.fee-table th {
    padding: 20px;
    text-align: center;
    font-weight: 600;
}

.fee-table td {
    padding: 15px 20px;
    text-align: center;
    vertical-align: middle;
}

.fee-table tbody tr:nth-child(even) {
    background-color: rgba(26, 54, 93, 0.05);
}

.fee-table tbody tr:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

.concession-note {
    background-color: var(--secondary);
    color: var(--primary);
    padding: 15px;
    border-radius: 10px;
    margin-top: 30px;
    font-weight: 600;
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: white;
    padding: 70px 0 30px;
}

.footer-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.footer-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 50px;
    text-align: center;
}

/* Animations */
.animate-up {
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease;
}

.animate-up.appear {
    transform: translateY(0);
    opacity: 1;
}

/* Enhanced animations */
.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 1s ease forwards;
}

.animate-slide-in-right {
    animation: slideInRight 1s ease forwards;
}

.animate-scale-in {
    animation: scaleIn 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}


        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--secondary);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 999;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: white;
            transform: translateY(-5px);
        }

        /* WhatsApp Button */
        .whatsapp-button {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #25D366;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            z-index: 999;
            font-size: 28px;
        }

        .whatsapp-button:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            color: white;
            box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
        }


        
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { 
        transform: translateX(-50px);
        opacity: 0;
    }
    to { 
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from { 
        transform: translateX(50px);
        opacity: 0;
    }
    to { 
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from { 
        transform: scale(0.9);
        opacity: 0;
    }
    to { 
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .fee-table {
        font-size: 0.9rem;
    }
    
    .nav-item {
        text-align: center;
        padding: 10px 0;
    }
}

@media (max-width: 768px) {
    .fee-table {
        display: block;
        overflow-x: auto;
    }
    
    .hero-heading {
        font-size: 2rem;
    }
}