body {
    font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;

    font-style: normal;
}

nav {
    border: 0.5px solid whitesmoke;
}

.hero-section {
    background-image: url('../images/slider01-slide-02.jpg');
    /* Replace with your image path */
    background-size: cover;
    background-position: center;
    height: 100vh;
    /* Full screen height */
    position: relative;
    color: white;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

@media (min-width: 768px) {
    .hero-text {
        /* top: auto; */
        bottom: 50px;
        left: 50px;
        transform: none;
        text-align: left;
    }
}

.nav-item .nav-link {

    font-size: 18px;
    color: whitesmoke;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section>* {
    position: relative;
    z-index: 2;
    /* Keep text above shadow */
}

.img1 img {

    border-radius: 10px;
}

.txt-blue {
    color: #1476d2;
}

.fa-check {
    color: blue;
    padding: 5px;
    font-weight: bold;
}

.txt-para {
    line-height: 2rem;
}

.bg-footer {
    background-color: #444b44;
    color: white;
}

.hero-section-aboutus {
    background-image: url('../images/aboutus.webp');
    /* Replace with your image */
    background-size: cover;
    background-position: center;
    height: 500px;
    position: relative;
    color: white;
}

.hero-section-aboutus .hero-text {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* Optional: dark overlay for readability */
.hero-section-aboutus::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    /* semi-transparent overlay */
    z-index: 1;
}

.hero-section-aboutus>* {
    position: relative;
    z-index: 2;
    /* above overlay */
}



.service-btn p {
    padding: 5px;
    line-height: 1.5rem;
    letter-spacing: 2px;
}

.fa-arrow-right {
    font-size: 16px;
    padding: 5px;
}

.img-service {
    border: 1px solid rgb(129, 127, 127);
    border-radius: 10px;
}

.hero-section-service {
    background-image: url('../images/servicepage.jpg');
    /* Replace with your image */
    background-size: cover;
    background-position: center;
    height: 500px;
    position: relative;
    color: white;
}

.hero-section-service.hero-text {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* Optional: dark overlay for readability */
.hero-section-service::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* semi-transparent overlay */
    z-index: 1;
}

.hero-section-service>* {
    position: relative;
    z-index: 2;
    /* above overlay */
}

.service-image img {
    border-radius: 15px;
}

.hero-section-contact {
    background-image: url('../images/contacuts.jpg');
    /* Replace with your image */
    background-size: cover;
    background-position: center;
    height: 500px;
    position: relative;
    color: white;
}

.hero-section-contact.hero-text {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* Optional: dark overlay for readability */
.hero-section-contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* semi-transparent overlay */
    z-index: 1;
}

.hero-section-contact>* {
    position: relative;
    z-index: 2;
    /* above overlay */
}

.add-icon {
    color: blue;
    padding: 10px;
}