/* Header Start */
.carousel,
.carousel-inner,
.carousel-item {
    height: 100vh;
    /* Full screen height (same for all images) */
}

.carousel-img {
    height: 100%;
    /* Make image fill 100% height */
    width: 100%;
    /* Full width */
    object-fit: cover;
    /* Crop perfectly → no stretching */
}

.carousel-item {
    height: 600px;
}

.carousel-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Header End */

/* About */
.about-bg {
    position: relative;
}

.about {
    background: #fff;
    margin: 20px 0;
    padding: 50px 15px;
}

.main-title {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Poppins-bold';
    text-transform: uppercase;
    color: #212121;
}

.main-title span {
    color: #0066cc;
}

.about-img {
    text-align: center;
}

.about-img img {
    width: auto;
    height: 464px;
}

.about-para {
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Poppins-reg';
    color: #212121;
    width: 79%;
    line-height: 1.7rem;
}

.about-list {
    padding-left: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2px;
    width: 75%;
}

.about-list li {
    list-style-type: none;
    margin: 4px 0;
}

.about-list li .about-para-list {
    margin-top: 5px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins-semi';
    color: #212121;
}

.broucher-download {
    position: fixed;
    top: 10%;
    right: -10px;
    transform: rotate(-90deg);
    transform-origin: right bottom 0;
    z-index: 1;
}

.about-download {
    background: #0066cc;
    color: #000;
    width: 150px;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Poppins-reg';
    padding: 6px 20px;
    text-decoration: none;
    margin: 10px 0;
}

.about_bg_info {
    position: absolute;
    background: #0066cc;
    bottom: -25px;
    left: 0;
    width: 100%;
    height: 250px;
    z-index: -1;
    content: "";
}

.getintouch {
    margin: 30px 10px;
}

.getintouch form input {
    border: none;
    outline: none;
    padding: 5px 10px;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 400;
    font-family: "Poppins-reg";
}

.getintouch form .btn-get {
    color: #0066cc;
    background: #212121;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Poppins-reg';
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 2px;
    margin: 10px 0;
}

.quote-btn {
    display: inline-block;
    margin-top: 20px;
    background: #0a58ca;
    /* Blue button */
    color: #fff;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

/* Hover Effect */
.quote-btn:hover {
    background: #084298;
    color: #fff;
    transform: translateY(-2px);
}
/* About Ends */

