/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Top Bar */
.top-bar {
    background-color: #0c1e55;
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a, .email-link {
    color: white;
}

.social-icons a:hover, .email-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Navigation */
.navbar {
    background-color: #a1003e;
    padding: 12px 0;
}

.navbar-brand {
    color: white;
    padding: 0;
}

.logo {
    width: 50px;
    height: 50px;
}

.title-text {
    font-family: 'Montserrat', sans-serif;
    color: white;
    line-height: 1.2;
}

.title-top {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.title-bottom {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background-color: #0c1e55;
}

.dropdown-menu {
    background-color: #0c1e55;
    border: none;
    border-radius: 0;
    margin-top: 0;
}

.dropdown-item {
    color: white;
    padding: 8px 16px;
}

.dropdown-item:hover {
    background-color: #a1003e;
    color: white;
}

.navbar-toggler {
    color: white;
    border: none;
}

.nav-icons {
    display: flex;
    gap: 15px;
}

.nav-icon {
    color: white;
    font-size: 1.1rem;
}

.nav-icon:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Section */
.hero {
    background-image: url('https://images.unsplash.com/photo-1531415074968-036ba1b575da?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 550px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.4), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    color: white;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.btn-primary {
    background-color: #a1003e;
    border-color: #a1003e;
    font-weight: 600;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary:hover {
    background-color: #0c1e55;
    border-color: #0c1e55;
}

/* Sponsors Section */
.sponsors {
    padding: 50px 0;
    background-color: #fff;
}

.sponsor-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}

.sponsor-box img {
    max-height: 80px;
    width: auto;
}

/* Slick slider custom styling */
.slick-prev, .slick-next {
    width: 30px;
    height: 30px;
    background-color: #a1003e;
    border-radius: 50%;
    z-index: 1;
}

.slick-prev {
    left: -15px;
}

.slick-next {
    right: -15px;
}

.slick-prev:before, .slick-next:before {
    font-size: 20px;
    opacity: 1;
}

.slick-dots {
    bottom: -30px;
}

.slick-dots li button:before {
    font-size: 10px;
    color: #ddd;
}

.slick-dots li.slick-active button:before {
    color: #a1003e;
}

/* Featured Programs Section */
.featured-programs {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.program-card {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.program-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.program-card:hover img {
    transform: scale(1.05);
}

.program-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.program-content h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

/* Academy Section */
.academy-section {
    padding: 70px 0;
    background-color: #fff;
}

.academy-section h2 {
    color: #0c1e55;
    margin-bottom: 25px;
    font-weight: 700;
}

.academy-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.academy-img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Stats Counter */
.stats-counter {
    padding: 40px 0;
    background-color: #ededed;
    color: white;
    text-align: center;
}

.stat-item {
    padding: 20px 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #a1003e;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color:#000;
}
.fa-classic, .fa-regular, .fa-solid, .far, .fas {
    color: white;
}

/* Newsletter Subscription */
.newsletter-subscription {
    padding: 30px 0;
    background-color: #a1003e;
    color: white;
}

.newsletter-subscription h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
}

.newsletter-subscription .newsletter-form {
    display: flex;
}

.newsletter-subscription .form-control {
    border-radius: 4px 0 0 4px;
    border: none;
}

.newsletter-subscription .btn {
    border-radius: 0 4px 4px 0;
    background-color: #0c1e55;
    border-color: #0c1e55;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: #0c1e55;
    color: white;
    padding: 50px 0 20px;
}

footer h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #f2c75c;
}

footer p, footer address p {
    margin-bottom: 8px;
}

footer a {
    color: white;
}

footer a:hover {
    color: #f2c75c;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-links li, .footer-news li {
    margin-bottom: 12px;
    position: relative;
}

.footer-links a::before, .footer-news a::before {
    content: "›";
    margin-right: 8px;
    color: #f2c75c;
}

.social-links {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
    margin-top: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
}

.footer-sponsor {
    opacity: 0.8;
}

/* Media Queries */
@media (max-width: 992px) {
    .navbar-collapse {
        background-color: #0c1e55;
        padding: 15px;
        margin: 10px -12px -12px;
    }
    
    .nav-icons {
        margin-top: 15px;
        justify-content: center;
    }
    
    .hero {
        height: 450px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .sponsor-box {
        height: 120px;
    }
}