/* Main Section */
.structural-section {
    padding: 80px 10%;
    background-color: #fff;
}

/* Container Flex */
.structural-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Left Content */
.structural-content {
    flex: 1 1 50%;
    padding-right: 40px;
}

/* .structural-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
} */

.structural-content .highlight {
    color: #b78d65;
}

/* .structural-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
} */

.structural-btn {
    display: inline-block;
    background-color: #b78d65;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 15px 35px;
    border-radius: 0px;
    transition: 0.3s ease;
    text-decoration: none;
}

.structural-btn:hover {
    background-color: #ff875f;
}

/* Right Image */
.structural-image {
    flex: 1 1 45%;
    text-align: right;
}

.structural-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 0px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .structural-container {
        flex-direction: column;
        text-align: center;
    }

    .structural-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .structural-image {
        text-align: center;
    }

    .structural-content h2 {
        font-size: 36px;
    }

    .structural-content p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .structural-section {
        padding: 50px 20px;
    }

    .structural-content h2 {
        font-size: 28px;
    }

    .structural-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}


.project-slider-section {
    padding: 30px 0;
    /* pehle 50px tha â€” kam kar diya */
    margin-top: -30px;
    /* section ko upar uthata hai */
    text-align: center;
}

.swiper {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.swiper-wrapper {
    gap: 0 !important;
    /* Remove spacing between slides */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: 300px;
    /* Fix all images to same height */
    border-radius: 8px;
    object-fit: cover;
    /* Maintain aspect ratio and cover */
    transition: transform 0.3s ease;
}

.swiper-slide img:hover {
    transform: scale(1.03);
}

.swiper-button-next,
.swiper-button-prev {
    color: #b78d65;
}

.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #b78d65;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .swiper {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .swiper {
        width: 95%;
    }

    .swiper-slide img {
        width: 100%;
        height: 250px;
        /* Adjust height for mobile */
    }
}



/* ===== Section Wrapper ===== */
/* ===== Section Wrapper ===== */
.structural-features-section {
    padding: 100px 8%;
    background: #fafafa;
}

/* ===== Container Grid ===== */
.structural-features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
}

/* ===== Each Feature Box ===== */
.structural-feature-box {
    text-align: left;
    position: relative;
}

.structural-feature-box .checkmark {
    display: block;
    font-size: 42px;
    color: #b78d65;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.structural-feature-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.structural-feature-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .structural-features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .structural-features-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .structural-feature-box {
        text-align: center;
    }

    .structural-feature-box .checkmark {
        margin: 0 auto 10px;
    }
}


/* ðŸŒ† INFRASTRUCTURE SECTION */
.infra-services-section {
    padding: 100px 8%;
    background: #fff;
    font-family: "Poppins", sans-serif;
}

/* GRID LAYOUT */
.infra-grid-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

/* CARD CONTAINER */
.infra-item {
    position: relative;
    border-radius: 6px;
    overflow: visible;
}

.infra-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 0px;
    display: block;
    transition: transform 0.5s ease;
}

.infra-item:hover img {
    transform: scale(1.05);
}

/* CONTENT BOX (Half Overlay) */
.infra-info {
    position: absolute;
    bottom: -100px;
    /* Half outside image */
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    background: #fff;
    border-radius: 0px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.infra-item:hover .infra-info {
    transform: translateX(-50%) translateY(-5px);
}

.infra-info h3 {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.infra-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* SPACING BELOW FOR OVERLAP */
.infra-item {
    margin-bottom: 100px;
    /* for overlap spacing */
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .infra-grid-box {
        grid-template-columns: 1fr;
    }

    .infra-item img {
        height: 360px;
    }

    .infra-info {
        width: 90%;
        bottom: -80px;
        padding: 30px 25px;
    }

    .infra-item {
        margin-bottom: 90px;
    }
}

@media (max-width: 600px) {
    .infra-services-section {
        padding: 60px 6%;
    }

    .infra-info h3 {
        font-size: 22px;
    }

    .infra-info p {
        font-size: 15px;
    }

    .infra-info {
        bottom: -70px;
    }
}





.process-section {
    padding: 0px 8%;
    /* pehle 80px tha â€” thoda kam kiya */
    margin-top: -40px;
    /* upar uth gaya section */
    background: #fff;
    font-family: "Poppins", sans-serif;
}

.process-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.process-container.reverse {
    flex-direction: row-reverse;
}

/* LEFT TEXT */
.process-content {
    flex: 1 1 50%;
    max-width: 50%;
}

.process-step {
    margin-bottom: 50px;
}

.process-step h2 {
    font-size: 38px;
    font-weight: 700;
    color: #d8d8d8;
    margin-bottom: 5px;
}

.process-step h3 {
    /* font-size: 22px; */
    color: #222;
    font-weight: 600;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* RIGHT IMAGE */
.process-image {
    flex: 1 1 45%;
    max-width: 45%;
    text-align: right;
}

.process-image img {
    width: 100%;
    height: auto;
    border-radius: 0px;
    border: 4px solid #d8d8d8;
    /* ðŸ‘ˆ Add your brand color border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: #948c85;
    /* Slightly darker border on hover */
}

/* âœ… TABLET VIEW (768pxâ€“1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
    .process-section {
        padding: 70px 6%;
    }

    .process-container {
        gap: 40px;
        margin-bottom: 70px;
    }

    .process-content,
    .process-image {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .process-content {
        text-align: left;
    }

    .process-image {
        text-align: center;
        margin-top: 10px;
    }

    .process-step h2 {
        font-size: 34px;
    }

    .process-step h3 {
        font-size: 20px;
    }

    .process-step p {
        font-size: 15px;
    }
}

/* âœ… MOBILE VIEW (Below 768px) */
@media (max-width: 768px) {

    .process-container,
    .process-container.reverse {
        flex-direction: column;
        text-align: left;
        gap: 25px;
        margin-bottom: 60px;
    }

    .process-content,
    .process-image {
        max-width: 100%;
    }

    .process-image {
        text-align: center;
        margin-top: 0;
    }

    .process-step {
        margin-bottom: 35px;
    }

    .process-step h2 {
        font-size: 30px;
    }

    .process-step h3 {
        font-size: 19px;
    }

    .process-step p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* âœ… SMALL MOBILE (Below 600px) */
@media (max-width: 600px) {
    .process-section {
        padding: 60px 5%;
    }

    .process-container {
        gap: 20px;
        margin-bottom: 50px;
    }

    .process-step {
        margin-bottom: 25px;
    }

    .process-step h2 {
        font-size: 26px;
    }

    .process-step h3 {
        font-size: 18px;
    }

    .process-step p {
        font-size: 14px;
        line-height: 1.6;
    }

    .process-image img {
        border-radius: 6px;
    }
}


/*Mission & Vision*/

.mv-flip-section {
    padding: 60px 20px;
}

.mv-flip-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* --- FIX: Prevent overlapping on flip --- */
.mv-flip-card {
    perspective: 1500px;
    width: 100%;
    height: 360px;  /* Fixed height so cards won't overlap */
}

.mv-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s ease-in-out;
    transform-style: preserve-3d;
}

/* Flip on hover */
.mv-flip-card:hover .mv-flip-inner {
    transform: rotateY(180deg);
}

/* --- FRONT / BACK SAME COLOR : FIXED --- */
.mv-flip-front,
.mv-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.08);
    background: #ffffff;   /* SAME COLOR — no change while flipping */
    padding: 40px 30px;
    backface-visibility: hidden; /* No mirror effect */
}

/* FRONT SIDE */
.mv-flip-front {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* BACK SIDE */
.mv-flip-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ICON */
.mv-flip-icon {
    width: 70px;
    margin-bottom: 15px;
}

/* TITLES & TEXT */
.mv-flip-title,
.mv-flip-title-back {
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #2d2d2d;
}

.mv-flip-text,
.mv-flip-text-back {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

/* ------------------- PERFECT RESPONSIVE ------------------- */

@media (max-width: 900px) {
    .mv-flip-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .mv-flip-card {
        height: 380px;
    }
}

@media (max-width: 600px) {
    .mv-flip-card {
        height: 420px;
    }

    .mv-flip-title,
    .mv-flip-title-back {
        font-size: 22px;
    }

    .mv-flip-text,
    .mv-flip-text-back {
        font-size: 14px;
    }

    .mv-flip-icon {
        width: 60px;
    }
}
