: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: 40px 20px;
    line-height: 1.6;
}

.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: var(--primary-color);
}

/* 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;
    }
}
