
: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);
    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;
    font-size: small;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(37, 99, 235, 0.1);
}

/* Enhanced Hero Section */
.hero-section {
    background: white;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

/* Slider styles for all devices */
#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 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    align-items: center;
    justify-content: center;
    justify-items: center;
    z-index: 3;
    color: white;
    background: none;
    padding: 2rem;
    border-radius: 10px;
    max-width: 80%;
    width: 100%;
}

/* Responsive Breakpoints */
@media (min-width: 1200px) {
    .carousel-caption h1 {
        font-size: 3rem;
    }
    
    .carousel-caption p {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        padding-bottom: 2rem;
    }
    
    .carousel-item {
        height: 60vh;
    }
    
    .carousel-caption {
        padding: 0.75rem;
        max-width: 95%;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 60vh;
    }
    
    .carousel-item {
        height: 70vh;
    }
    
    .carousel-caption {
        padding: 0.75rem;
        max-width: 95%;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 25px;
        height: 25px;
    }
}

/* Mobile slider caption adjustment */
@media (max-width: 768px) {
    #mobile-slider .carousel-caption {
        position: absolute;
        bottom: 20%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 500px;
        border-radius: 10px;
        padding: 15px;
        background: none;
    }
}





