/* body {
    margin: 0;
    font-family: Arial, sans-serif;
} */
.hero-section {
    /* background: linear-gradient(135deg, #ff4500, #ff8c00, #40e0d0); */
    /* background-color: #007bff; */
    background: url("/static/images/website_background.svg") no-repeat center center/cover;
    /* height: 80vh; */
    margin: 114px -8px 0px -8px;
    padding: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}


.hero-overlay {
    background: linear-gradient(135deg, #ff4500, #ff8c00, #40e0d0);
    /* background: rgba(10, 25, 47, 0.9); */
    padding: 41px;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
    /* max-width: 850px; */
}

.-hero-overlay h1 {
    font-size: 38px;
    margin-bottom: 12px;
    color: #ffffff; /* Turquoise Heading */
}
.hero-overlay h2 {
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #ffeb3b; /* Yellow Heading */
    text-transform: uppercase;
    font-weight: bold;
}


.hero-overlay p {
    font-size: 20px;
    margin-bottom: 25px;
    color: #ffffff;
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}


.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #007bff, #32cd32); /* Blue → Green */
    padding: 16px;
    border-radius: 12px;
    width: 168px;
    transition: 0.4s;
    color: #ffffff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.feature-item:hover {
    background: linear-gradient(135deg, #ff8c00, #ff4500); /* Orange → Red on Hover */
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(255, 69, 0, 0.5);
}

.feature-item i {
    font-size: 42px;
    margin-bottom: 10px;
    color: #ffeb3b; /* Bright Yellow Icon */
}

.feature-item span {
    font-size: 17px;
    font-weight: bold;
}
