/* HERO SECTION */
.services-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    font-family: "Montserrat", sans-serif;
}

/* OVERLAY */
.services-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* CONTENT */
.services-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.services-content h1 {
    font-size: 56px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.services-content p {
    font-size: 18px;
    color: #ddd;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .services-content h1 {
        font-size: 36px;
    }

    .services-content p {
        font-size: 16px;
    }

    .services-hero {
        height: 50vh;
    }
}


/* =========================
   INTRO SECTION
========================= */

.intro-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    /* align-items: center; */
}

.intro-content {
    max-width: 650px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;

    background: #f4f4f4;
    border: 1px solid rgba(0, 0, 0, .08);

    border-radius: 100px;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    margin-bottom: 28px;
}

.intro-content h2 {
    font-size: 42px;
    line-height: 1.08;
    font-weight: 700;
    color: #111;

    margin-bottom: 28px;

    max-width: 700px;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.5;
    color: #666;

    max-width: 600px;

    margin-bottom: 35px;
}

/* FEATURES */

.intro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 16px;
    margin-bottom: 40px;
}

.intro-features div {
    background: #fafafa;

    border: 1px solid rgba(0, 0, 0, .08);

    padding: 18px 22px;

    border-radius: 16px;

    font-weight: 600;

    transition: .3s;
}

.intro-features div:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
}

/* BUTTON */

.buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-red {
    position: relative;
    display: inline-block;
    padding: 14px 30px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    /* IMPORTANT */
    z-index: 1;
    background: #242424;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid #242424;
}

.btn-red::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    /* niche theke start */
    width: 100%;
    height: 0%;
    /* initially hidden */

    background: #fff;

    z-index: -1;

    transition: height 0.4s ease;
}


.btn-red:hover::before {
    height: 100%;
}

.btn-red:hover {
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15),
        0 2px 5px rgba(0, 0, 0, 0.1);
    color: #242424;
}

/* IMAGE */

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;

    max-width: 520px;

    height: 420px;

    object-fit: cover;

    border-radius: 30px;

    display: block;
    margin-left: auto;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .15);
}

/* floating accent */

.intro-image::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    background: #f3f3f3;

    border-radius: 30px;

    left: -40px;
    top: -40px;

    z-index: -1;
}

/* MOBILE */

@media(max-width:991px) {

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .intro-content {
        max-width: 100%;
    }

    .intro-content h2 {
        font-size: 36px;
    }

    .intro-image img {
        max-width: 100%;
        height: 380px;
        margin: auto;
    }

    .intro-features {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .intro-section {
        padding: 70px 0;
    }

    .intro-content h2 {
        font-size: 34px;
    }

    .intro-content p {
        font-size: 16px;
    }

    .intro-image img {
        height: 300px;
    }

    .intro-grid {

        gap: 10px;
    }
}

/* gallery */

.gallery-slider {
    /* padding: 80px 0; */
    overflow: hidden;
}

.concreteSwiper {
    width: 100%;
}

.concreteSwiper .swiper-slide {
    height: auto;
}

.concreteSwiper .swiper-slide img,
.concreteSwiper .swiper-slide video {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    display: block;

    cursor: pointer;
    transition: .3s;
}

.concreteSwiper .swiper-slide img:hover {
    transform: scale(1.03);
}

.video-slide video {
    cursor: default;
}

.image-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition: .35s ease;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.image-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    backdrop-filter: blur(4px);
}

.image-modal-content {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 1200px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.image-modal-content img {
    width: 100%;
    max-height: 90vh;

    object-fit: contain;

    border-radius: 14px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .4);
}

.image-modal-close {
    position: absolute;

    top: -55px;
    right: 0;

    width: 45px;
    height: 45px;

    background: #fff;
    color: #111;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    font-size: 20px;
    transition: .3s;
}

.image-modal-close:hover {
    transform: rotate(90deg);
}

@media (max-width:768px) {

    .image-modal-content {
        width: 95%;
    }

    .image-modal-close {
        top: -50px;
        right: 10px;
    }

}

/* FAQ section */

/* FAQ SECTION */

.services-faq-section {
    padding: 60px 0;
    background:
        linear-gradient(135deg,
            #f7f7f7 0%,
            #ffffff 100%);
    position: relative;
}


.services-faq-wrapper {
    max-width: 950px;
    margin: auto;
}

.services-faq-item {
    background: #fff;
    border-radius: 20px;
    margin-bottom: 10px;
    overflow: hidden;

    border: 1px solid rgba(0, 0, 0, .08);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .05);

    transition: .4s;
}

.services-faq-item:hover {
    transform: translateY(-4px);
}

.services-faq-question {
    width: 100%;
    border: none;
    background: none;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 15px;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;
    text-align: left;
}

.services-faq-question span {
    width: 32px;
    height: 32px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #111;
    color: #fff;

    flex-shrink: 0;
}

.services-faq-answer {
    max-height: 0;
    overflow: hidden;

    opacity: 0;

    transition:
        max-height .45s ease,
        opacity .35s ease;
}

.services-faq-answer p {
    padding: 0 35px 30px;
    color: #666;
    line-height: 1.5;
}

.services-faq-item.active .services-faq-answer {
    max-height: 300px;
    opacity: 1;
}

.services-faq-item.active .services-faq-question span {
    transform: rotate(45deg);
    transition: .3s;
}