
.hero-section {
    position: relative;
    width: 100%;
    height: 450px; /* Adjust height as needed */
    background: url('/assets/img/index_header.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-section-product {
    position: relative;
    width: 100%;
    height: 450px; /* Adjust height as needed */
    background: url('/assets/img/product_header.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Adjust overlay darkness */
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-product {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Adjust overlay darkness */
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay .container {
    z-index: 2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Enhances text readability */
}

.overlay-product .container {
    z-index: 2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Enhances text readability */
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #FFD700; /* Gold text for branding */
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 15px auto;
}

.hero-section .btn {
    font-weight: bold;
    padding: 12px 25px;
}

.hero-section-product h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #FFD700; /* Gold text for branding */
}

.hero-section-product p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 15px auto;
}

.hero-section-product .btn {
    font-weight: bold;
    padding: 12px 25px;
}

.stats-section {
    background-color: #5E7490; /* Adjust to match branding */
    color: black;
}

.stats-section h3 {
    font-size: 2.5rem;
    font-weight: bold;
}

.stats-section p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.counter {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #141414;
}

.plus-sign, .percent-sign {
    font-size: 2.5rem;
    font-weight: bold;
    color: #141414;
    margin-left: 7px;
}

.box {
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5); 
  }