.align-item-center {
    display: flex;
    align-items: center;    /* Centers items vertically (cross axis) */
    justify-content: center; /* Centers items horizontally (main axis) */
}

.top-bar1 {
    background: yellow;
    color: red;
    font-weight: 600;
    padding: 10px 15px;
}
.why-sec {
    padding: 70px 40px;
}

.as_servicedetail_wrapper {
    padding-top: 50px;
    padding-bottom: 70px;
    padding-right: 50px;
    padding-left: 50px;
}
.as_heading {
    color: #001633;
    font-weight: 600;
    padding-top: 30px;
}

/*=============== Header Section Start ===============*/
.top-bar {
        flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #0b4089e6, #001734);
    padding: 10px 15px;
    color: yellow;
    display: block;
    display: flex;
}
.contact-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
}
.contact-btn {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 8px 6px;
    border-radius: 11px;
    text-decoration: none;
    font-weight: bold;
}
.contact-btn img {
    width: 18px;
    height: 18px;
}
.slide-container {
    overflow: hidden;
    white-space: nowrap;
    flex: 1 1 100%;
    margin-top: 8px;
}
.slide-text {
    display: inline-block;
    animation: slide-left 25s linear infinite;
    color: yellow;
    font-size: 20px;
    font-weight: bolder;
}
@keyframes slide-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (min-width: 600px) {
    .slide-container {
        margin-top: 0;
    }
}

/*=============== Header Section End ===============*/

/*=============== Welcome text Section Start ===============*/
.about-section {
    display: flex;
    flex-wrap: wrap;
    padding: 70px 40px;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    gap: 10px;
}

.left {
    flex: 1 1 350px;
}

.right {
    flex: 1 1 500px;
    padding-right: 20px;
}

.title-banner {
    background-color: #c00;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.image-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.badge {
    background: white;
    padding: 10px 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-weight: bold;
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.badge.red {
    color: #c00;
}

.badge-icon {
    width: 25px;
}

.badge-years {
    top: 10%;
    left: 0;
}

.badge-safe {
    bottom: 10%;
    right: 10%;
}

.right h2 {
    color: #19427a;
    font-size: 35px;
    margin-bottom: 10px;
    font-weight: 700;
}

.right p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 16px;
    color: #000;
    text-align: justify;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-item {
    background: white;
    padding: 5px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #111;
    font-weight: bold;
    border: 1px solid #eee;
}

.feature-item::before {
    content: "✔️";
    color: #c00;
}

@media (max-width: 768px) {
    .section {
        flex-direction: column;
    }
    .image-grid {
        grid-template-columns: 1fr;
    }
    .right {
        padding-right: 0px;
    }
}
/*=============== Welcome text Section End ===============*/

/*=============== Service 1 Section Start ===============*/
.heading {
    margin-bottom: 40px;
}
.services-section {
    background: linear-gradient(to right, #0b4089e6, #001734);
    padding: 70px 40px;
    text-align: center;
}
.sub-header {
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
}
.services-section h2 {
        color: #ffd700;
    font-size: 40px;
    /* margin-bottom: 40px; */
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}

.service-box {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box img {
    width: 100%;
    /* height: 200px;
    object-fit: cover; */
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    color: #19427a;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.service-content p {
        font-size: 16px;
    color: #000;
    margin-bottom: 15px;
}

.buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.buttons a {
    flex: 1;
    text-align: center;
    padding: 10px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
}

.call-btn {
    background-color: #d80000 !important;
}

.whatsapp-btn {
    background-color: #28a745;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
/*=============== Service 1 Section End ===============*/

/*=============== What We Offer Section Start ===============*/
.section {
    text-align: center;
    padding: 0px 163px;
    background-color: red;
}

.section {
    /* display: flex;
    flex-wrap: wrap; */
    padding: 70px 40px;
    background-color: white;
    gap: 1px;
    flex-direction: row;
}

.section h2 {
    font-size: 2.5rem;
    color: #d30000;
    margin-bottom: 10px;
    font-weight: bolder;
}

.section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
}

.services {
    /* display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; */
}

.service-card {
    background: #fff;
    border: 1px solid #ffcccc;
    border-radius: 12px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.service-card h3 {
    margin: 15px 0 10px;
    font-size: 1.1rem;
    color: #111;
}

.call-btn {
    display: inline-block;
    background: #fcd307;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    /* margin-top: 10px; */
}

.call-btn::before {
    content: '';
    margin-right: 8px;
}

@media (max-width: 768px) {
    .service-card {
        width: 90%;
    }
}
/*=============== What We Offer Section End ===============*/

/*=============== Testimonial Section Start ===============*/
.testimonial-section {
    padding: 70px 70px;
    text-align: center;
    background-color: antiquewhite;
}

.testimonial-section h2 {
    font-size: 40px;
    color: red;
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-section p.subtitle {
    color: #000000;
    margin-bottom: 30px;
    font-weight: 600;
}

.testimonials {
    /* display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; */
}

.testimonial-card {
    background: linear-gradient(to right, #0b4089e6, #001734)red;
    color: white;
    border-radius: 20px;
    padding: 20px;
    /* width: 300px; */
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        margin: 60px 10px 10px 10px;
}

.testimonial-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: -35px;
    left: 20px;
    border: 3px solid white;
}

.testimonial-card p {
    margin-top: 40px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.testimonial-name {
    font-weight: bold;
    color: #fcd307;
    margin-top: 10px;
}

.testimonial-location {
    font-size: 0.9rem;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 100%;
    }
    .testimonial-section {
        padding: 70px 40px;
    }
}
/*=============== Testimonial Section End ===============*/

/*=============== Footer Section Start ===============*/

.footer-section {
    padding: 40px 20px 20px;
    background: linear-gradient(to right, #0b4089e6, #001734);
    text-align: left;
    font-weight: bolder;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-column {
    flex: 1 1 220px;
}

.footer-column h3 {
    color: yellow;
    border-bottom: 2px solid yellow;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #ffffff;
}

.footer-column ul li a {
    color: #fff;
}

.footer-column ul li i {
    color: yellow;
    margin-right: 8px;
}

.disclaimer {
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    /* margin-top: 30px; */
    padding: 0 20px;
    /* max-width: 900px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
    background-color: transparent;
    font-weight: bolder;
}

.dec-p {
        padding-top: 10px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.dec-p a{
        color: yellow;
}

.footer-last {
    background: #ba2727;
    padding: 20px 20px;
}

.footer-last .disclaimer a {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        text-align: center;
    }
    .footer-column {
        flex: 1 1 100%;
    }
    .footer-column h3 {
        text-align: center;
    }
}
/*=============== Footer Section End ===============*/

/*=============== Awards Section Start ===============*/
.awards-section {
        padding: 18px 20px;
        text-align: center;
        background-color: rgb(255, 255, 255);
    }

    .awards-section h2 {
        color: #00123a;
        background-color: #fff;
        display: inline-block;
        padding: 10px 25px;
        border-radius: 5px;
        font-size: 4rem;
        margin-bottom: 40px;
        font-weight: bold;
    }

    .award-images {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 40px;
    }

    .award-images img {
        width: 300px;
        height: auto;
        border: 10px solid transparent;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
    }

    .award-images img:hover {
        transform: scale(1.05);
    }
/*=============== Awards Section End ===============*/