/* =========================================
   LAL MIRI MISSION & VISION
========================================= */

.lalmiri-mission-vision {
    position: relative;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}


/* Soft Decorative Background */

.lalmiri-mission-vision::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -250px;
    top: 120px;
    background: #fff3f3;
    border-radius: 50%;
}

.lalmiri-mission-vision::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    right: -220px;
    bottom: 100px;
    background: #fff5f5;
    border-radius: 50%;
}


/* Row */

.mv-row {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    gap: 70px;

    margin-bottom: 70px;
}

.mv-row:last-child {
    margin-bottom: 0;
}


/* =========================================
   IMAGE
========================================= */

.mv-image-col {
    position: relative;
}

.mv-image-wrap {
    position: relative;
    height: 500px;

    overflow: hidden;

    border-radius: 180px 180px 12px 12px;

    box-shadow: 0 25px 55px rgba(80, 0, 0, .14);
}

.mv-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(80, 0, 0, .22),
        transparent 45%
    );

    pointer-events: none;
}

.mv-image-wrap img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .8s ease;
}

.mv-image-wrap:hover img {
    transform: scale(1.06);
}


/* Vision Image */

.vision-image {
    border-radius: 12px 12px 180px 180px;
}


/* Image Badge */

.mv-image-badge {
    position: absolute;

    left: 25px;
    bottom: 25px;

    z-index: 3;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;

    background: #fff;
    color: #d40000;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.mv-image-badge i {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #d40000;
    color: #fff;

    border-radius: 50%;
}


/* =========================================
   CONTENT
========================================= */

.mv-content {
    max-width: 570px;
}


/* Label */

.mv-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 12px;

    color: #d40000;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
}

.mv-label i {
    font-size: 13px;
}


/* Heading */
.mv-content h2 {
    margin: 0 0 8px;
    color: #251a1b;
    font-family: "Times New Roman", serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.15;
}

.mv-content h2 span {
    color: #d40000;
}


/* Paragraph */

.mv-content p {
    color: #75686a;

    font-size: 13px;

    line-height: 1.8;
}

.mv-content .mv-lead {
    margin-bottom: 8px;

    color: #332728;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================
   POINTS
========================================= */

.mv-points {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-top: 25px;

    padding-top: 22px;

    border-top: 1px solid #eee1e2;
}

.mv-point {
    display: flex;
    align-items: flex-start;

    gap: 12px;
}

.mv-point > span {
    min-width: 42px;
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff2f2;

    color: #d40000;

    border-radius: 50%;
}

.mv-point h4 {
    margin: 0 0 4px;

    color: #302526;

    font-size: 14px;
    font-weight: 600;
}

.mv-point p {
    margin: 0;

    color: #827678;

    font-size: 11px !important;

    line-height: 1.6 !important;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .lalmiri-mission-vision {
        padding: 65px 0;
    }

    .mv-row {
        gap: 45px;
        margin-bottom: 80px;
    }

    .mv-image-wrap {
        height: 450px;
    }

}


@media (max-width: 991px) {

    .mv-row {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 70px;
    }

    /*
       Keep Vision image after content
    */

    .vision-row .mv-image-col {
        order: 2;
    }

    .vision-row .mv-content-col {
        order: 1;
    }

    .mv-image-wrap,
    .vision-image {
        height: 480px;
        border-radius: 150px 150px 12px 12px;
    }

    .mv-content {
        max-width: 100%;
    }

}


@media (max-width: 767px) {

    .lalmiri-mission-vision {
        padding: 50px 0;
    }

    .mv-row {
        gap: 28px;
        margin-bottom: 55px;
    }

    .mv-image-wrap,
    .vision-image {
        height: 390px;
        border-radius: 110px 110px 10px 10px;
    }

    .mv-content h2 {
        font-size: 31px;
    }

    .mv-content .mv-lead {
        font-size: 14px;
    }

    .mv-content p {
        font-size: 12px;
    }

    .mv-points {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }

    .mv-image-badge {
        left: 15px;
        bottom: 15px;
        padding: 9px 13px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {

    .mv-image-wrap,
    .vision-image {
        height: 330px;
        border-radius: 90px 90px 8px 8px;
    }

    .mv-content h2 {
        font-size: 27px;
    }

    .mv-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

}
/* =========================================
   WHY CHOOSE LAL MIRI
========================================= */

.lalmiri-why-choose {
    position: relative;
    padding: 40px 0;
    background: #faf8f4;
    overflow: hidden;
}



/* Heading */

.lalmiri-section-heading {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 25px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d90000;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.section-label i {
    font-size: 13px;
}

.lalmiri-section-heading h2 {
    margin: 0 0 15px;
    color: #24140e;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 600;
}

.lalmiri-section-heading h2 span {
    color: #d90000;
}

.lalmiri-section-heading p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.8;
}


/* Card */

.lalmiri-why-card {
    position: relative;
    height: 100%;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #eee5dc;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 2;
}


/* Left Accent */

.lalmiri-why-card::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 0;
    left: 0;
    top: 0;
    background: #d90000;
    transition: height 0.4s ease;
}


/* Number */

.why-card-number {
    position: absolute;
    top: 22px;
    right: 25px;
    color: #eee8e2;
    font-size: 42px;
    line-height: 1;
    font-weight: 600;
    transition: all 0.4s ease;
}


/* Icon */

.why-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    background: #fff5f3;
    border: 1px solid #f1d7d2;
    border-radius: 50%;
    color: #d90000;
    font-size: 20px;
    transition: all 0.4s ease;
}

.why-card-icon i {
    transition: transform 0.4s ease;
}


/* Heading */

.lalmiri-why-card h3 {
    margin: 0 0 13px;
    color: #281710;
    font-size: 18px;
    font-weight: 600;
}


/* Description */

.lalmiri-why-card p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.8;
}


/* Bottom Line */
.why-card-line {
    display: block;
    width: 38px;
    height: 1px;
    margin-top: 12px;
    background: #d90000;
    transition: width 0.4s ease;
}

/* Hover */

.lalmiri-why-card:hover {
    transform: translateY(-8px);
    border-color: #e5c7c1;
    box-shadow: 0 18px 45px rgba(44, 22, 12, 0.10);
}

.lalmiri-why-card:hover::before {
    height: 100%;
}

.lalmiri-why-card:hover .why-card-icon {
    background: #d90000;
    border-color: #d90000;
    color: #fff;
    transform: translateY(-3px);
}

.lalmiri-why-card:hover .why-card-icon i {
    transform: scale(1.12);
}

.lalmiri-why-card:hover .why-card-number {
    color: #f5dddd;
}

.lalmiri-why-card:hover .why-card-line {
    width: 75px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .lalmiri-why-choose {
        padding: 30px 0;
    }

    .lalmiri-section-heading h2 {
        font-size: 23px;
    }

}


@media (max-width: 767px) {

    .lalmiri-why-choose {
        padding: 25px 0;
    }

    .lalmiri-section-heading {
        margin-bottom: 20px;
    }

    .lalmiri-section-heading h2 {
        font-size: 22px;
    }

    .lalmiri-section-heading p {
        font-size: 14px;
    }

   

    .why-card-number {
        font-size: 28px;
    }

}
/* ================================
   LAL MIRI VALUES SECTION
================================ */

.lalmiri-values-sec {
    padding: 40px 0;
    background: #fff;
    position: relative;
}


/* Section Heading */

.lalmiri-section-heading {
    max-width: 750px;
    margin: 0 auto 25px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d90000;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.section-label i {
    font-size: 14px;
}
.lalmiri-section-heading h2 {
    font-size: 32px;
    line-height: 1.15;
    font-weight: 600;
    color: #20130e;
    margin-bottom: 18px;
}

.lalmiri-section-heading h2 span {
    color: #d90000;
}

.lalmiri-section-heading p {
    font-size: 14px;
    line-height: 1.8;
    color: #777;
    margin: 0;
}


/* Value Card */

.value-card {
    height: 100%;
    padding: 20px 30px;
    text-align: center;
    background: #fff;
    border: 1px solid #eee;
    position: relative;
    transition: all .35s ease;
    overflow: hidden;
}


/* Red Top Line */

.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #d90000;
    transition: all .35s ease;
}

.value-card:hover::before {
    width: 100%;
}


/* Icon */
.value-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff4f4;
    color: #d90000;
    font-size: 21px;
    transition: all .35s ease;
}

.value-card:hover .value-icon {
    background: #d90000;
    color: #fff;
    transform: translateY(-5px);
}


/* Content */

.value-card h3 {
    font-size: 21px;
    font-weight: 600;
    color: #21150f;
    margin-bottom: 10px;
}

.value-card p {
    color: #777;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}


/* Hover */

.value-card:hover {
    transform: translateY(-8px);
    border-color: #f0d4d4;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}


/* Responsive */

@media (max-width: 991px) {

    .lalmiri-values-sec {
        padding: 75px 0;
    }

    .lalmiri-section-heading h2 {
        font-size: 38px;
    }

}


@media (max-width: 575px) {

    .lalmiri-values-sec {
        padding: 60px 0;
    }

    .lalmiri-section-heading {
        margin-bottom: 35px;
    }

    .lalmiri-section-heading h2 {
        font-size: 32px;
    }

    .lalmiri-section-heading p {
        font-size: 14px;
    }

    .value-card {
        padding: 32px 25px;
    }

}