/* Hero Section */
.hero-section {
    position: relative;
    height: 65vh;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 68vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: slideshow 25s infinite;
}

/* Define slideshow images */
@keyframes slideshow {
    0% {
        background-image: url('../img/banner/1.webp');
    }

    20% {
        background-image: url('../img/banner/2.webp');
    }

    40% {
        background-image: url('../img/banner/3.webp');
    }

    60% {
        background-image: url('../img/banner/4.webp');
    }

    80% {
        background-image: url('../img/banner/5.webp');
    }

    100% {
        background-image: url('../img/banner/1.webp');
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 11, 11, 0.6);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    box-sizing: border-box;
}

.hero-content {
    text-align: left;
    max-width: 800px;
    padding: 20px;
    z-index: 2;
    margin-left: 10%;
}

.hero-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-family: "Outfit", Sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.5em;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-section {
        height: 70vh;
    }

    .hero-content {
        padding: 20px;
        margin-left: 5%;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }

    .hero-content {
        padding: 15px;
        margin-left: 5%;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content h3 {
        font-size: 0.9rem;
    }

    .hero-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 50vh;
    }

    .hero-content {
        padding: 10px;
        margin-left: 3%;
    }

    .hero-content h1 {
        font-size: 24px;
        line-height: 1.3em;
    }

    .hero-content h3 {
        font-size: 0.85rem;
    }

    .hero-content p {
        font-size: 0.8rem;
    }
}


/* Text Highlight Colors */
/* .highlight { */
    /* color: #4caf50; */
/* } */

.highlight-green {
    color: #e5be5f;
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: flex-start;
    /* Align buttons to the left */
    gap: 20px;
    /* Add spacing between buttons */
}

.btn {
       color: #ffffff;
    font-family: "Outfit", Sans-serif;
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #000000;
    padding: 20px 25px;
    border: 1px solid white;
}

.btn-blue {
    background-color: #5fcd5b;
    color: white;
    border: 1px solid white;
}

.btn-blue:hover {
    background-color: #000;
    color: white;
}

.btn-green {
    background-color: #daa520;
    color: white;
    border: 1px solid white;
}

.btn-green:hover {
    background-color: black;
    color: white;
}

.txtcl {
    color: white;
}

.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0px;
}

.feature-card {
    display: flex;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 300px;
    width: 100%;
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 80px; */
    width: 125%;
    min-height: 100px;
    color: #fff;
    font-size: 2rem;
}

.green-bg {
    background-color: #28a745;
}

.blue-bg {
    background-color: #424dc1;
}

.content {
    padding: 15px;
}

.content h3 {
    font-size: 1.2rem;
    margin: 0 0 10px;
    font-weight: 800;
}

.content p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

.BG-F {
    BACKGROUND-COLOR: #f6f2e87a;
    COLOR: BLACK;
}

.FS-S {
    FONT-SIZE: 18PX;
    FONT-WEIGHT: 800;
}