/* Hero Section Styling */
.hero-section {
    background-color: #004771; 
    color: white;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7CFC00;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.hero-buttons .btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    position: relative;
    transition: all 0.3s ease-in-out;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
}

.hero-buttons .btn-primary {
    background-color: #7CFC00;
    color: #004771;
}

.hero-buttons .btn-outline-light {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.hero-buttons .btn:hover {
    transform: translateY(-5px);
}

.hero-buttons .btn-primary:hover {
    background-color: #004771;
    color: #7CFC00;
}

.hero-buttons .btn-outline-light:hover {
    background-color: white;
    color: #004771;
}


.hero-section img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.hero-section img:hover {
    transform: scale(1.05);
}

/* Responsive Styling */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons .btn {
        padding: 10px 30px;
        font-size: 1rem;
    }a

    .hero-section {
        padding: 40px 0;
    }
}
