* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.main-topbar {
    border-radius: 0px 0px 27px 27px;
    background: #ffffff;
    box-shadow: rgb(255 0 0 / 31%) 0px 4px 12px;
    padding: 19px;
}

.top-bar-wrapper {
    position: relative;
    background-color: rgb(0, 0, 0);
    background-image: url(../assets/images/banner-img.jpg);
    background-size: cover;
    background-position: center;
    height: 90vh;
    overflow: hidden;
}


.top-bar-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* black with 60% opacity */
    z-index: 1;
}

/* Optional: ensure content is above the overlay */
.top-bar-wrapper>* {
    position: relative;
    z-index: 2;
}

.banner-wrapper {}

.banner-wrapper h1 {
    color: #ffffff;
    font-size: 3rem;
    text-align: center;
    margin-top: 20vh;
}

.banner-wrapper p {
    color: #ffffff;
    font-size: 1rem;
    text-align: center;

}

.tlt h1 {
    padding: 14px;
    font-size: 1.5rem;
    color: #fff;
    background: #e3000f;
    border-radius: 6px;
    margin-top: -28px;

}

.whyus-box {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    padding: 60px;
}

.whyus-box1 img {}

/* Section headings */
h2 {
    font-weight: bold;
    color: #d60000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.8rem;
}

/* Card styles */
.card {
    border: none;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    color: #333;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Card headings (where applicable) */
.card h5 {
    font-size: 1.2rem;
    color: #d60000;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

/* Card body text */
.card p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive grid gap */
.row.g-4 {
    row-gap: 30px;
}

/* Trusted Industries section: center text */
.card-body.text-center p {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.card {
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.enquiry-section input,
.enquiry-section textarea {
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 14px;
    padding: 12px;
    border-radius: 5px;
}

.enquiry-section input:focus,
.enquiry-section textarea:focus {
    border-color: #d60000;
    box-shadow: none;
}

.enquiry-section h2 {
    font-size: 1.8rem;
    text-transform: uppercase;
}

.enquiry-section .btn-danger {
    border-radius: 30px;
}

.scroll-down-arrow {
    color: #fff;
    font-size: 2rem;
    animation: bounce 2s infinite;
    margin-top: 20px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(8px);
    }

    60% {
        transform: translateY(4px);
    }
}



.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    /* background: #444; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px dotted red;
}

@media (max-width: 576px) {
    .banner-wrapper h1 {
        color: #ffffff;
        font-size: 1rem;
        text-align: center;
        margin-top: 20vh;
    }
}