

/* Banner Section */
.banner-3 {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 50px;
    /* Moves the banner slightly downward */
}

/* Ensure the image covers the entire banner */
.banner-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    /* Places image behind content */
}

/* Overlay for better readability */
.overlay.dark-overlay {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Banner Content */
.banner-content {
    color: white;
    text-align: center;
    padding: 20px;
    max-width: 90%;
    position: relative;
    z-index: 2;
}

/* Headings */
.banner-title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
}

/* Paragraph */
.banner-content p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Button */
.banner-content .btn {
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 50px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .banner-3 {
        height: 85vh;
        /* Adjust banner height */
        padding-top: 30px;
        /* Moves the banner down */
    }

    .banner-content {
        margin-top: -40px;
        /* top: 50%;  */
        transform: translate(5%, 5%);
        /* Moves the text up */
    }

    .banner-title {
        font-size: 2rem;
        /* Reduce title size */
    }

    .banner-content p {
        font-size: 1rem;
        /* Reduce paragraph size */
    }

    .banner-content .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .banner-3 {
        height: 80vh;
        padding-top: 20px;
        /* Moves the banner slightly down */
    }

    .banner-content {
        margin-top: 80px;
        /* Moves the text further up */
    }

    .banner-title {
        font-size: 1.5rem;
    }

    .banner-content p {
        font-size: 0.9rem;
    }

    .banner-content .btn {
        font-size: 0.8rem;
        padding: 8px 18px;
    }
}

@media (max-width: 768px) {
    .product-details .col-lg-6 {
        text-align: center;
    }
}

.lore {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    /* gap: 20px;  */
}

.service-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background: #efefef;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 20px 7px 30px 7px;
    margin-bottom: 40px;
    color: #000;
    min-height: 350px;
    height: 90%; /* Ensures all service boxes take the full height of the tallest one */
}

/* Hover effect */
.service-box:hover {
    transform: translateY(-18px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: #ffffff;
}

/* Ensure service-inner takes up space evenly */
.service-inner {
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
}

/* Service Title */
.service-box h4 {
    font-size: 30px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

/* Service Description */
.service-box p {
    font-size: 15px;
    color: #000;
    opacity: 0.9;
    flex-grow: 1;
}

/* Mobile-friendly adjustments */
@media (max-width: 768px) {
    .service-box {
        min-height: auto; /* Allow flexible height for mobile */
        margin: 20px 0;
    }
    .row {
        row-gap: 30px;
    }
}

#kt_footer {
    margin-top: auto; /* Pushes the footer to the bottom */
}


