:root {
            --primary-blue: #3C3E93;
            --accent-green: #728FC9;
            --light-gray: #ecf0f1;
            --dark-text: #2c3e50;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-text);
        }

        /* Top Bar */
        .top-bar {
            background-color: var(--primary-blue);
            color: white;
            padding: 10px 0;
            font-size: 14px;
        }

        /* Navigation */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
        }

        .navbar-brand {
            font-weight: bold;
            font-size: 24px;
            color: var(--primary-blue) !important;
        }

        .nav-link {
            color: var(--dark-text) !important;
            margin: 0 15px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--accent-green) !important;
        }

        .btn-contact {
            background-color: var(--accent-green);
            color: white;
            padding: 10px 25px;
            border-radius: 5px;
            border: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-contact:hover {
            background-color: #229954;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            /*position: relative;*/
            height: 500px;
            display: flex;
            align-items: center;
            background: var(--primary-blue);
            background-size: cover;
            background-position: center;
            color: white;
        }
        

        .hero-content {
            color: white;
        }

        .hero-content h1 {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .hero-image {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Feature Cards */
        .feature-card {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 10px;
            margin-top: -50px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-card i {
            font-size: 48px;
            color: var(--accent-green);
            margin-bottom: 15px;
        }

        /* About Section */
        .about-section {
            background-color: var(--primary-blue);
            color: white;
            padding: 80px 0;
        }

        .about-section h2 {
            color: var(--accent-green);
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .about-section h3 {
            font-size: 36px;
            margin-bottom: 30px;
        }

        /* Services Section */
        .services-section {
            padding: 80px 0;
            background-color: var(--light-gray);
        }

        .service-box {
            background: white;
            padding: 40px 30px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .service-box:hover {
            box-shadow: 0 5px 25px rgba(0,0,0,0.15);
            transform: translateY(-5px);
        }

        .service-box i {
            font-size: 40px;
            color: var(--accent-green);
            margin-bottom: 20px;
        }

        .service-box h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--primary-blue);
        }

        /* News Section */
        .news-section {
            padding: 80px 0;
        }

        .news-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            transition: transform 0.3s;
        }

        .news-card:hover {
            transform: translateY(-5px);
        }

        .news-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .news-card-body {
            padding: 20px;
        }

        .news-date {
            color: #7f8c8d;
            font-size: 14px;
            margin-bottom: 10px;
        }

        /* Quick Links */
        .quick-links {
            background-color: var(--primary-blue);
            color: white;
            padding: 50px 0;
        }

        .quick-link-item {
            background-color: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 20px;
            transition: background-color 0.3s;
        }

        .quick-link-item:hover {
            background-color: rgba(255,255,255,0.15);
        }

        .quick-link-item h5 {
            color: var(--accent-green);
        }

        /* Footer */
        footer {
            background-color: #3C3E93;
            color: white;
            padding: 40px 0;
            text-align: center;
        }

        /* CTA Button */
        .btn-register {
            background-color: var(--accent-green);
            color: white;
            padding: 15px 40px;
            font-size: 18px;
            font-weight: 600;
            border: none;
            border-radius: 5px;
            margin: 30px auto;
            display: block;
            transition: all 0.3s;
        }

        .btn-register:hover {
            background-color: #229954;
            transform: scale(1.05);
        }

        /* Modal Styles */
        .modal-header {
            background-color: var(--primary-blue);
            color: white;
            border-bottom: none;
        }

        .modal-header .btn-close {
            filter: brightness(0) invert(1);
        }

        .modal-body {
            padding: 30px;
        }

        .form-control:focus {
            border-color: var(--accent-green);
            box-shadow: 0 0 0 0.2rem rgba(39, 174, 96, 0.25);
        }

        .btn-submit {
            background-color: var(--accent-green);
            color: white;
            width: 100%;
            padding: 12px;
            font-weight: 600;
            border: none;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .btn-submit:hover {
            background-color: #229954;
        }

        .auth-switch {
            text-align: center;
            margin-top: 20px;
        }

        .auth-switch a {
            color: var(--accent-green);
            text-decoration: none;
            font-weight: 600;
        }

        .auth-switch a:hover {
            text-decoration: underline;
        }
        
        
        .hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--primary-blue);
}

.slider-container {
    position: relative;
    width: 100%;
}

.slides-wrapper {
    position: relative;
    width: 100%;
    height: 500px; /* Adjust based on your needs */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.slide-image {
    text-align: center;
    padding: 20px;
}

.slide-image img {
    max-width: 100%;
    max-height: 300px;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.default-image {
    width: 100%;
    height: 300px;
    background: #bdc3c7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #2c3e50;
    font-size: 18px;
    font-weight: bold;
}

.slide-content {
    padding: 20px;
}

.slide-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.slide-content .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: silver;
    line-height: 1.6;
}

.btn-contact {
    background: #3C3E93;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-contact:hover {
    background: #3C3E93;
}

/* Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .slides-wrapper {
        height: auto;
        min-height: 400px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

.btn-primary {
    background-color: var(--primary-blue) !important;
}