/* Desktop Default */
.banner__item-title {
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
}

.des {
    font-size: 18px;
    line-height: 28px;
}

/* Tablet */
@media (max-width: 992px) {
    .banner__item-title {
        font-size: 38px;
        line-height: 46px;
    }
    .des {
        font-size: 16px;
        line-height: 26px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .banner__item-content {
        text-align: center !important;
    }
    .banner__item-title {
        font-size: 28px !important;
        line-height: 36px !important;
    }
    .des {
        font-size: 14px !important;
        line-height: 22px !important;
    }
    .rr-btn {
        margin-top: 10px;
        padding: 10px 20px;
        font-size: 14px;
    }
    .banner__item-bg {
        background-position: center !important;
        background-size: cover !important;
    }
}

/* Default responsive image behavior */
.about-us-2__thumb-1 img,
.about-us-2__thumb-2 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .about-us-2__media {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .about-us-2__thumb-1,
    .about-us-2__thumb-2 {
        position: relative !important;
        width: 100% !important;
        max-width: 350px;
        margin: 0 auto;
        top: 0 !important;
        left: 0 !important;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .about-us-2__thumb-1,
    .about-us-2__thumb-2 {
        max-width: 100%;
    }
}

/* Base image responsiveness */
.about-us-2__thumb-1 img,
.about-us-2__thumb-2 img {
    width: 100%;
    height: 670px;
    object-fit: cover;
    border-radius: 10px;
}

/* Container responsiveness */
.about-us-2__media {
    position: relative;
}

/* Shapes responsive */
.about-us-2__star-shape img,
.about-us-2__left-shape img,
.about-us-2__right-shape img,
.about-us-2__bottom-shape img {
    max-width: 60px;
    height: auto;
}

/* MOBILE RESPONSIVE FIX */
@media (max-width: 768px) {

    /* Stack both images clean */
    .about-us-2__media {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }

    .about-us-2__thumb-1,
    .about-us-2__thumb-2 {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        max-width: 350px;
        margin: 10px auto;
    }

    /* Shapes small for mobile */
    .about-us-2__star-shape,
    .about-us-2__left-shape,
    .about-us-2__right-shape,
    .about-us-2__bottom-shape {
        display: none !important;
    }

    /* Content alignment fix */
    .about-us-2__content {
        text-align: center !important;
    }

    /* Heading responsive */
    .about-us-2__content h3 {
        font-size: 24px !important;
        line-height: 32px !important;
    }

    .about-us-2__content p {
        font-size: 15px !important;
        line-height: 24px !important;
    }

    /* Awards section on mobile */
    .about-us-2__award {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .about-us-2__award__item {
        background: #ffffff20;
        padding: 12px 20px;
        border-radius: 10px;
    }

    /* Button fix */
    .about-us-2__btn-box {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .about-us-2__thumb-1,
    .about-us-2__thumb-2 {
        max-width: 100%;
    }
}


/* Make all cards same height */
.contact-us__info-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s ease;
}

/* Icon fixed size */
.contact-us__icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* Hover Animation */
.contact-us__info-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Make inner container full height */
.contact-us .col-md-6.col-lg-4 {
    margin-bottom: 30px;
    display: flex;
}

.contact-us .col-md-6.col-lg-4 > div {
    flex: 1;
}

.blog__item {
    height: 80%;
    display: flex;
    flex-direction: column;
}

.blog__item-media img {
    width: 100%;
    height: 220px;      /* same image height for all cards */
    object-fit: cover;  /* image crop ho kar perfect fit hogi */
}

.blog__item-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.swiper-slide {
    height: auto !important;
}


/* Sticky Sidebar */
.sidebar-rr-sticky {
    /* position: sticky; */
    top: 100px;
    background: aliceblue;
}

/* FAQ Wrapper */
.faq-widget .faq-item {
    border-bottom: 1px solid #e3e3e3;
    padding: 12px 0;
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* + / - Icon */
.faq-question .icon {
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

/* FAQ Answer Hidden By Default */
.faq-answer {
    display: none;
    overflow: hidden;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    padding-top: 10px;
    animation: fadeIn 0.3s ease;
}

/* Animation for smooth open */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}


.latest-project__item-thumb {
    width: 100%;
    height: 250px; 
    overflow: hidden;
    border-radius: 10px;
}

.latest-project__item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.latest-project__item-thumb img {
    transition: 0.4s ease;
}

.latest-project__item-thumb:hover img {
    transform: scale(1.05);
}
