:root {
    /* Primary Colors */
    --primary: #BB2225;
    --primary-light: #D85558;
    --primary-dark: #901A1C;
    
    /* Secondary Colors */
    --secondary: #1C579A;
    --secondary-light: #4378B7;
    --secondary-dark: #0F3B6A;
    
    /* Accent Colors */
    --accent: #F8B400;
    --accent-light: #FFCC40;
    
    /* Neutral Colors */
    --light: #f5f5f5;
    --dark: #333;
    --neutral-gray: #6C757D;
    --neutral-light: #E9ECEF;
    
    /* Status Colors */
    --success: #28a745;
    --info: #17a2b8;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    /* Other Variables */
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
/* ===== Base styles ===== */
html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--dark);
}

section {
    padding: 100px 0;
    position: relative;
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#preloader .spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(187, 34, 37, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ===== Buttons ===== */
.btn {
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(187, 34, 37, 0.15);
}

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

.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(28, 87, 154, 0.15);
}

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

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
}

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

.btn-accent:hover, .btn-accent:focus {
    background-color: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(248, 180, 0, 0.15);
}

/* ===== Section Styles ===== */
.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
}

.section-description {
    font-size: 1.1rem;
    color: var(--neutral-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Navbar ===== */
bar {
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: transparent;
}



.apply-now-btn {
    animation: pulse 1.5s infinite;
}

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

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slider, .hero-slider .swiper-slide {
    height: 100%;
    width: 100%;
}

.hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slider .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--light);
    padding-top: 150px;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 5px 15px;
    border-radius: 30px;
}

.hero-content .title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-content .campus-title {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero-content .description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-btns {
    margin-top: 30px;
}

.stats-floating {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 2;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(50%);
    opacity: 0;
    transition: all 0.5s ease;
}

.stats-floating.show {
    transform: translateY(0);
    opacity: 1;
}

.counter-item {
    text-align: center;
}

.counter-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0;
}

.counter-item p {
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 0;
}

.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light);
    z-index: 2;
    text-align: center;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-down span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* ===== Campus Section ===== */
.campuses-section {
    position: relative;
}

.campus-cards {
    margin-top: 40px;
}

.campus-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    background-color: var(--light);
    transition: var(--transition);
}

.campus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.campus-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.campus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.campus-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
}

.campus-labels {
    position: absolute;
    top: 15px;
    left: 15px;
}

.campus-labels span {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 10px;
    margin-bottom: 10px;
}

.flagship {
    background-color: var(--primary);
    color: var(--light);
}

.urban {
    background-color: var(--secondary);
    color: var(--light);
}

.ranking {
    background-color: var(--accent);
    color: var(--dark);
}

.campus-content {
    padding: 30px;
}

.campus-header {
    margin-bottom: 20px;
}

.campus-header h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.location {
    color: var(--neutral-gray);
    font-size: 0.9rem;
}

.campus-features {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.feature {
    margin-right: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.feature i {
    color: var(--secondary);
    margin-right: 10px;
}

.campus-desc {
    color: var(--neutral-gray);
    margin-bottom: 25px;
}

.campus-cta {
    margin-top: 20px;
}

/* ===== Institutions Section ===== */
.institutions-section {
    padding: 120px 0;
}

.institutions-grid {
    margin-top: 50px;
}

.institution-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    background-color: var(--light);
    transition: var(--transition);
}

.institution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.institution-image {
    height: 200px;
    overflow: hidden;
}

.institution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.institution-content {
    padding: 25px;
    text-align: center;
}

.institution-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.institution-content p {
    color: var(--neutral-gray);
    margin-bottom: 20px;
}

.btn-link {
    color: var(--secondary);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.btn-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.btn-link:hover:after {
    width: 100%;
}

.btn-link:hover {
    color: var(--secondary-dark);
}

.btn-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* ===== Modern Testimonials Section - Gen-Z Style with Educational Formality ===== */

.testimonials-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2b5876 0%, #4e4376 100%);
    color: var(--light);
    padding: 120px 0;
}

/* Modern gradient overlay */
.testimonials-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(97, 69, 224, 0.2), transparent 70%),
                radial-gradient(circle at bottom left, rgba(244, 114, 182, 0.15), transparent 70%);
    z-index: 1;
}

/* Container positioning */
.testimonials-section .container {
    position: relative;
    z-index: 5;
}

/* Floating elements */
.testimonials-float {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(20px);
    z-index: 0;
}

.float-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.float-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

/* Section header styling */
.testimonials-section .section-subtitle {
    color: var(--accent-light);
    font-weight: 700;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
}

.testimonials-section .section-title {
    color: white;
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.testimonials-section .section-title span {
    position: relative;
    display: inline-block;
}

.testimonials-section .section-title span:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    bottom: 8px;
    left: 0;
    background-color: rgba(248, 180, 0, 0.3);
    z-index: -1;
}

.testimonials-section .section-description {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Testimonials tabs */
.testimonials-tabs {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-top: 20px;
}

.tab-button {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-button:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: all 0.3s ease;
}

.tab-button.active {
    color: white;
}

.tab-button.active:after {
    width: 100%;
}

.tab-button:hover {
    color: white;
}

/* Modern testimonial cards */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    margin: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: all 0.6s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover:before {
    opacity: 1;
}

/* Quote styling */
.quote-mark {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 80px;
    font-family: 'Georgia', serif;
    opacity: 0.1;
    color: var(--accent);
    line-height: 1;
    transform: rotate(180deg);
}

/* Profile styling */
.testimonial-profile {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}

.profile-image {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 20px;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    transform: rotate(-3deg);
}

.testimonial-card:hover .profile-image {
    transform: rotate(0deg);
    border-color: var(--accent);
}

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

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

.profile-info h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.profile-info h4:after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.4s ease;
}

.testimonial-card:hover .profile-info h4:after {
    width: 100%;
}

/* Job title & batch styling */
.profile-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.profile-info .batch {
    font-size: 0.8rem;
    color: var(--accent-light);
    opacity: 0.9;
    margin-top: 3px;
    display: inline-block;
}

/* Rating stars */
.testimonial-rating {
    display: flex;
    margin-bottom: 15px;
}

.star {
    color: #ffc107;
    font-size: 18px;
    margin-right: 3px;
}

/* Content styling */
.testimonial-content {
    position: relative;
    padding-bottom: 10px;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

/* Badge styling */
.campus-badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(248, 180, 0, 0.15);
    color: var(--accent);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 15px;
    border: 1px solid rgba(248, 180, 0, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .campus-badge {
    background: var(--accent);
    color: var(--dark);
}

/* Video testimonial button */
.video-btn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.video-btn i {
    font-size: 16px;
}

.testimonial-card:hover .video-btn {
    background: var(--accent);
    opacity: 1;
    transform: scale(1.1);
}

/* Social verification */
.verification-badge {
    display: flex;
    align-items: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.verification-badge i {
    color: #1DA1F2;
    margin-right: 5px;
}

.linkedin-verify {
    margin-left: 15px;
}

.linkedin-verify i {
    color: #0077B5;
}

/* Custom navigation */
.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}



.testimonial-pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
    opacity: 1;
    margin: 0 5px;
}

.swiper-pagination-bullet-active {
    width: 30px;
    background: var(--accent);
}

/* View All Button */
.view-all-wrapper {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-view-all:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-view-all:hover {
    color: var(--dark);
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-view-all:hover:before {
    width: 100%;
}

.btn-view-all i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

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

.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.3s; }
.testimonial-card:nth-child(3) { animation-delay: 0.5s; }

/* Responsive styles */
@media (max-width: 991px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-section .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-section .section-title {
        font-size: 2rem;
    }
    
    .tab-button {
        padding: 8px 15px;
        font-size: 13px;
    }
}

/* ===== Contact Section ===== */
.contact-section {
    background-color: var(--light);
    position: relative;
}

.contact-info {
    padding-right: 30px;
}

.contact-details {
    margin-top: 40px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background-color: rgba(187, 34, 37, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-item .content h5 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-item .content p {
    margin-bottom: 0;
    color: var(--neutral-gray);
    font-size: 0.95rem;
}

.social-links {
    margin-top: 30px;
    display: flex;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--neutral-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    margin-right: 15px;
    transition: var(--transition);
}

.social-link.facebook:hover {
    background-color: #3b5999;
    color: var(--light);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--light);
}

.social-link.twitter:hover {
    background-color: #1da1f2;
    color: var(--light);
}

.social-link.linkedin:hover {
    background-color: #0077b5;
    color: var(--light);
}

.social-link.youtube:hover {
    background-color: #ff0000;
    color: var(--light);
}

.contact-form-wrapper {
    background-color: var(--light);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form-wrapper h3 {
    margin-bottom: 25px;
    font-size: 1.8rem;
    text-align: center;
    position: relative;
}

.contact-form-wrapper h3:after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    border-radius: var(--border-radius);
    padding: 0 20px;
    font-size: 0.95rem;
    border: 1px solid var(--neutral-light);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
}

textarea.form-control {
    height: auto;
    padding: 15px 20px;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-block {
    width: 100%;
}

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

.footer-top {
    padding: 80px 0 50px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
}

.about-widget p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    margin-right: 10px;
    transition: var(--transition);
}

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

.widget-title {
    font-size: 1.3rem;
    color: var(--light);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
}

.footer-links a:before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition);
}

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

.footer-links a:hover:before {
    opacity: 1;
    transform: translateX(0);
}

.contact-info .contact-item {
    margin-bottom: 15px;
}

.contact-info .contact-item i {
    color: var(--primary);
    margin-right: 10px;
    width: 18px;
    text-align: center;
}

.contact-info .contact-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* GSAP animations */
.gsap-reveal {
    opacity: 0;
    visibility: hidden;
}

/* Media queries for responsive design */
@media (max-width: 1199.98px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-content .title {
        font-size: 3.5rem;
    }
    
    .hero-content .campus-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    section {
        padding: 80px 0;
    }
    

    
    .header-btns {
        display: flex;
        justify-content: center;
    }
    
    .hero-content .title {
        font-size: 3rem;
    }
    
    .hero-content .campus-title {
        font-size: 2rem;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .footer-widget {
        margin-bottom: 40px;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-content .title {
        font-size: 2.5rem;
    }
    
    .hero-content .campus-title {
        font-size: 1.8rem;
    }
    
    .hero-content .description {
        font-size: 1.1rem;
    }
    
    .counter-item h3 {
        font-size: 2rem;
    }
    
    .counter-item p {
        font-size: 0.85rem;
    }
    
    .campus-card, .institution-card {
        margin-bottom: 30px;
    }
    
    .copyright, .footer-bottom-links {
        text-align: center !important;
    }
    
    .footer-bottom-links {
        margin-top: 10px;
    }
    
    .footer-bottom-links a {
        margin: 0 10px;
    }
}

@media (max-width: 575.98px) {
    .hero-content .title {
        font-size: 2.2rem;
    }
    
    .hero-content .campus-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .campus-features {
        flex-direction: column;
    }
    
    .feature {
        margin-right: 0;
    }
    
    .testimonial-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .contact-form-wrapper h3 {
        font-size: 1.5rem;
    }
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Apply Now Modal */
.apply-modal {
    padding: 0 !important;
}

.apply-modal .modal-dialog {
    max-width: 900px;
    margin: 30px auto;
}

.apply-modal .modal-content {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.apply-modal .modal-header {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    padding: 20px 30px;
}

.apply-modal .modal-title {
    font-weight: 600;
    color: var(--light);
}

.apply-modal .modal-header .btn-close {
    color: var(--light);
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    opacity: 0.8;
}

.apply-modal .modal-body {
    padding: 30px;
}

.apply-modal .campus-option {
    border: 2px solid var(--neutral-light);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 20px;
    height: 100%;
}

.apply-modal .campus-option:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.apply-modal .campus-option.selected {
    border-color: var(--primary);
    background-color: rgba(187, 34, 37, 0.05);
}

.apply-modal .campus-option img {
    max-width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: calc(var(--border-radius) - 2px);
    margin-bottom: 15px;
}

.apply-modal .campus-option h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.apply-modal .campus-option p {
    color: var(--neutral-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}


/* ===== Stats Section ===== */
.stats-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    z-index: 0;
}

.stats-section .section-header,
.stats-section .stats-row {
    position: relative;
    z-index: 1;
}

.stats-section .section-subtitle,
.stats-section .section-title,
.stats-section .section-description {
    color: var(--light);
}

.stats-section .text-accent {
    color: var(--accent);
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    margin-bottom: 15px;
}

.stat-icon i {
    color: var(--accent);
    font-size: 2.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 5px;
    line-height: 1;
    font-family: var(--font-secondary);
}

.stat-title {
    color: var(--light);
    font-size: 1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.stat-bg {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    z-index: -1;
}


/* ===== Quick Links Section ===== */
.quick-links-section {
    padding: 80px 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.quick-links-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(187, 34, 37, 0.03), transparent 70%),
                radial-gradient(circle at bottom left, rgba(248, 180, 0, 0.03), transparent 70%);
    z-index: 0;
}

.quick-links-container {
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

.quick-links-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.quick-links-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    transition: height 0.4s ease;
}

.quick-links-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.quick-links-card:hover:before {
    height: 100%;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.quick-links-card:hover .icon-wrapper {
    transform: rotate(0deg);
}

.icon-wrapper i {
    font-size: 22px;
    color: white;
}

.card-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: var(--dark);
}

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

.quick-links-list li {
    margin-bottom: 12px;
}

.quick-links-list li:last-child {
    margin-bottom: 0;
}

.quick-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    color: var(--dark);
    text-decoration: none;
    position: relative;
}

.quick-link i:first-child {
    color: var(--primary);
    margin-right: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.quick-link span {
    flex-grow: 1;
    font-weight: 500;
    font-size: 15px;
}

.quick-link i.fa-arrow-right {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    font-size: 12px;
    color: var(--accent);
}

.quick-link:hover {
    background-color: rgba(187, 34, 37, 0.05);
    transform: translateX(5px);
}

.quick-link:hover i:first-child {
    color: var(--accent);
}

.quick-link:hover i.fa-arrow-right {
    opacity: 1;
    transform: translateX(0);
}

/* Quick Actions */
.quick-actions, .contact-social {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.quick-actions:before, .contact-social:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(187, 34, 37, 0.05), transparent);
    border-radius: 50%;
    z-index: 0;
}

.quick-actions h3, .contact-social h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
    position: relative;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
}

.action-btn {
    flex: 1 0 calc(50% - 16px);
    margin: 8px;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.action-btn i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.action-btn span {
    font-weight: 500;
    font-size: 14px;
}

.action-btn:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.action-btn:hover i {
    color: white;
}

/* Contact and Social */
.contact-info {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background-color: rgba(187, 34, 37, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
}

.contact-item span {
    font-weight: 500;
    font-size: 15px;
    color: var(--dark);
}

.social-links {
    display: flex;
    align-items: center;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 991px) {
    .quick-links-card {
        margin-bottom: 30px;
    }
    
    .quick-actions, .contact-social {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .action-btn {
        flex: 1 0 calc(100% - 16px);
    }
}