:root {
    --primary-color: #1e3799;
    --secondary-color: #0c2461;
    --accent-color: #1e3799;
    --text-color: #1f2937;
    --light-bg: #f8fafc;
}

body {
    background-color: var(--light-bg);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    padding-top: 76px;
}

/* Enhanced Navbar Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
}

.navbar-brand img {
    height: 45px;
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(37, 99, 235, 0.1);
}

/* Hero Section */
.hero-section {
    background: white;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

#slider, #mobile-slider {
    position: relative;
    width: 100%;
    z-index: 1;
    border-radius: 0;
    overflow: hidden;
}

.carousel-item {
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.carousel-caption {
    bottom: auto !important;
    left: 50%;
    right: auto !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.carousel-caption .bg-dark {
    display: inline-block;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .carousel-caption h1 {
        font-size: 3rem;
    }
}












/* About Content */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    line-height: 1.6;
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(30, 55, 153, 0.03) 0%, transparent 70%);
    z-index: -1;
    animation: rotate 30s linear infinite;
}

.content-wrapper {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.content-wrapper:hover {
    transform: translateY(-5px);
}

.about-content .lead {
    font-size: 1.4rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
    /* padding-left: 20px;
    border-left: 4px solid var(--primary-color); */
}

.discipline-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 0;
    list-style: none;
    margin: 2rem 0;
}

.discipline-list li {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 2.5rem;
}

.discipline-list li::before {
    content: '⚬';
    position: absolute;
    left: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.discipline-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, white, #f8fafc);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
    letter-spacing: 0.3px;
}

.about-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
}

/* Footer Styles */
.footer {
    background-image: url('../resources/Footer\ Update_final.jpg');
    width: 100%;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.footer-column {
    padding: 15px;
    color: white;
}

.footer-column h5 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #f0f0f0;
}

.copyright-section {
    background-color: #0c2461;
    padding: 20px 0;
    /* margin-top: 20px; */
}

.copyright-section p {
    margin: 0;
    font-size: 14px;
    color: #a8b2d1;
    text-align: center;
}

.copyright-section a {
    color: #a8b2d1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-section a:hover {
    color: white;
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
    }
    
    .footer-column {
        padding: 10px;
    }
    
    .footer-column h5 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* Responsive Navbar */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 0.5rem 0;
    }
    
    .nav-item {
        margin: 0.5rem 0;
    }
    
    .btn-contact, .btn-login {
        display: inline-block;
        margin: 0.5rem 0;
        text-align: center;
    }
}
