.navbar {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #2c3e50;
    display: flex;
    flex-direction: row;
    align-content: space-around;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    width: 230px;
    height: auto;
    margin-left: 10px;
}
.hero {
    height: 70vw;
    background: linear-gradient(135deg,#1a237e00,#000000),var(--wpr-hero-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: 100%;
}
.hero {
    --wpr-hero-bg: url(../../../../assets/images/main-header-car.jpg);
}
.hero img {
    filter: brightness(0.5);
}
/*
.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("images/main-header.jpg");
    opacity: 0.2;


}*/

@keyframes slide {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(-30%) translateY(-30%);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}


/* Enhanced Division Section Styles */

.divisions {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #ff1212;
    font-size: 2.5rem;
    font-weight: 900;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e02a2a, #8d0000);
    border-radius: 2px;
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.division-card {
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid rgba(26, 35, 126, 0.1);
}

.division-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #950b0b, #c92222);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.division-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.15);
}

.division-card:hover::before {
    opacity: 1;
}

.division-icon {
    position: relative;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #b61010, #da2f2f);
    padding: 1.8rem;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(26, 35, 126, 0.2);
    transition: all 0.4s ease;
    z-index: 2;
    width: 90px;
    height: 90px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.division-card:hover .division-icon {
    transform: scale(1.1) translateY(-5px);
    background: white;
    color: #a81e1e;
}

.division-title {
    position: relative;
    font-size: 1.5rem;
    color: #a81e1e;
    margin-bottom: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    z-index: 2;
}

.division-description {
    position: relative;
    font-size: 1rem;
    color: #bebebe;
    line-height: 1.6;
    transition: all 0.3s ease;
    z-index: 2;
}

.division-card:hover .division-title,
.division-card:hover .division-description {
    color: white;
}


/* Add a subtle gradient background to the entire section */

#divisions {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

#divisions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26, 35, 126, 0.03) 0%, rgba(57, 73, 171, 0.03) 100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .divisions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    .division-card {
        padding: 2rem 1.5rem;
    }
}


/* Add subtle animation for cards on scroll */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.division-card[data-aos="fade-up"] {
    animation: fadeInUp 0.6s ease-out forwards;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .divisions-grid {
        grid-template-columns: 1fr;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #a81e1e;
    font-size: 2rem;
    font-weight: 900;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: #a81e1e;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2
}

.cta-button:hover {
    background: #a81e1e;
    color: white;
    transform: scale(1.05);
}
