:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gradient: linear-gradient(135deg, #3498db, #2c3e50);
}

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
 
.swiper{
    margin-top: 95px;
    margin-bottom: 20px;
}


.brand-font {
    font-family: 'Merienda', cursive;
}

/* Glassmorphism Effect */
.glass-card {
    background: rgba(80, 72, 72, 0.137);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

/* Navbar */
.navbar {
    transition: all 0.4s ease;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
}

.nav-link {
    position: relative;
    padding: 8px 12px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgb(255, 255, 255));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: rgb(0, 0, 0);
    padding: 100px 0;
}

.hero-title {
    font-size: 3.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}



/* Approval Cards */
.approval-card {
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

.approval-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Notice Board */
.notice-board {
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.notice-board::-webkit-scrollbar {
    width: 5px;
}

.notice-board::-webkit-scrollbar-thumb {
    background-color: var(--secondary-color);
    border-radius: 10px;
}

.notice-item {
    border-left: 3px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.notice-item:hover {
    background-color: rgba(52, 152, 219, 0.05);
    transform: translateX(5px);
}

/* Course Cards */
.course-card {
    transition: all 0.4s ease;
    overflow: hidden;
    border: none;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.course-badge {
    background-color: rgba(52, 152, 219, 0.1);
    color: var(--secondary-color);
    margin-right: 5px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.course-badge:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Facilities */
.facility-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 32px;
    transition: all 0.3s ease;
}

.facility-item:hover .facility-icon {
    transform: rotateY(180deg);
}

/* Testimonials */
.testimonial-card {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


/* Contact Form */
.contact-form .form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

/* Footer */
footer {
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./assets/pattern.png');
    opacity: 0.05;
    z-index: 0;
}

.footer-link {
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: white !important;
    transform: translateX(5px);
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 100px 0;
        background-attachment: scroll;
    }
}
