
.lalmiri-hero {
    position: relative;
    overflow: hidden;
}

.lalmiriHeroSlider {
    width: 100%;
}

.hero-slide {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgb(52 12 12 / 78%) 0%, rgba(0, 0, 0, .50) 45%, rgb(75 16 16 / 20%) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 28px 0 27px;
    color: #fff;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-subtitle i {
    color: #d8a84e;
}

.hero-content h1,
.hero-content h2 {
    margin: 0 0 20px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(44px, 6vw, 32px);
    font-weight: 600;
    line-height: 1.05;
}

.hero-content h1 span,
.hero-content h2 span {
    /* display: block; */
    color: #d8a84e;
}

.hero-content p {
    max-width: 620px;
    margin-bottom: 32px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .88);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: #b01a1a;
    border: 1px solid #961d1d;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all .3s ease;
    border-radius: 6px;
}

.hero-btn:hover {
    background: #fff;
    border-color: #fff;
    color: #151515;
}

.hero-btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, .7);
    color: #fff;
}

.hero-btn-outline:hover {
    background: #fff;
    border-color: #fff;
    color: #151515;
}


/* Navigation */

.lalmiri-prev,
.lalmiri-next {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.45);
    background: rgba(0,0,0,.25);
    transition: all .3s ease;
}

.lalmiri-prev {
    left: 30px;
}

.lalmiri-next {
    right: 30px;
}

.lalmiri-prev:after,
.lalmiri-next:after {
    font-size: 16px;
    color: #fff;
}

.lalmiri-prev:hover,
.lalmiri-next:hover {
    background: #e82f2f;
    border-color: #e82f2f;
}


/* Pagination */

.lalmiri-pagination {
    bottom: 105px !important;
}

.lalmiri-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #fff;
    opacity: .5;
}

.lalmiri-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 10px;
    opacity: 1;
    background: #e82f2f;
}

@media (max-width: 768px) {
    .navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 145px;
}
}
/* Quick Actions */

.hero-quick-actions {
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    bottom: 0;
}
.quick-action-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fbf7f2;
    border-top: 1px solid rgb(244 244 244 / 40%);
    border-radius: 10px;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 80px;
    padding: 12px 21px;
    color: #040404;
    text-decoration: none;
    border-right: 1px solid rgba(255,255,255,.1);
    transition: all .3s ease;
}

.quick-action:last-child {
    border-right: 0;
}

.quick-action:hover {
    background: #f9e3e3d6;
    color: #151515;
}

.quick-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #e82f2f;
    color: #e82f2f;
    border-radius: 50%;
}

.quick-action:hover .quick-icon {
    border-color: #151515;
    color: #151515;
}

.quick-action small {
    display: block;
    margin-bottom: 3px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .65;
}

.quick-action strong {
    display: block;
    font-size: 14px;
}


/* Responsive */

@media (max-width: 991px) {

    .hero-slide {
        min-height: 680px;
    }

    .hero-content {
        padding: 100px 0 130px;
    }

    .quick-action-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-action {
        min-height: 75px;
    }

    .quick-action:nth-child(2) {
        border-right: 0;
    }

    .quick-action:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

}


@media (max-width: 767px) {

    .hero-slide {
        min-height: 650px;
        background-position: center;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 25px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-buttons {
        gap: 10px;
    }

  
    .lalmiri-prev,
    .lalmiri-next {
        display: none;
    }

    .lalmiri-pagination {
        bottom: 115px !important;
    }

    .quick-action-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-action {
        padding: 12px 14px;
        gap: 10px;
        min-height: 70px;
    }

    .quick-icon {
        width: 38px;
        height: 38px;
    }

    .quick-action strong {
        font-size: 12px;
    }

    .quick-action small {
        font-size: 9px;
    }

}
/* =================================
   Lal Miri About Section
================================= */

.lalmiri-about {
    position: relative;
    padding: 40px 0px;
    background: #fff;
    overflow: hidden;
}


/* Soft Background Shape */

.lalmiri-about::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -280px;
    top: 100px;
    background: #fff2f2;
    border-radius: 50%;
    z-index: 0;
}


/* Visual */

.about-visual {
    position: relative;
    min-height: 500px;
    z-index: 1;
}
/* Main Image */
.about-main-image {
    position: absolute;
    top: 0;
    left: -10px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 180px 180px 12px 12px;
    box-shadow: 0 25px 60px rgba(80, 0, 0, .15);
}

.about-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.about-main-image:hover img {
    transform: scale(1.06);
}


/* Small Food Image */
.about-small-image {
    position: absolute;
    right: 23px;
    bottom: 35px;
    width: 175px;
    height: 175px;
    padding: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 20px 45px rgba(80, 0, 0, .18);
    z-index: 3;
}

.about-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}


/* Experience */

.about-experience {
    position: absolute;
    left: 0;
    bottom: 55px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: #d40000;
    color: #fff;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(120, 0, 20, .25);
    z-index: 4;
}

.experience-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 50%;
    font-size: 17px;
}

.about-experience strong,
.about-experience small {
    display: block;
}

.about-experience strong {
    font-family: Georgia, serif;
    font-size: 18px;
}

.about-experience small {
    margin-top: 2px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: .8;
}


/* Decorative Circle */

.about-circle {
    position: absolute;
    right: 55px;
    top: 35px;
    width: 75px;
    height: 75px;
    border: 1px solid #b52a38;
    border-radius: 50%;
    opacity: .35;
}

.about-circle::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid #b52a38;
    border-radius: 50%;
}


/* Content */

.about-content {
    position: relative;
    z-index: 2;
}


/* Subtitle */

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: #d40000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.subtitle-line {
    width: 32px;
    height: 1px;
    background: #a52231;
}


/* Heading */

.about-content h2 {
    /* max-width: 600px; */
    margin: 0 0 9px;
    color: #24191a;
   font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.12;
}

.about-content h2 span {
    color: #d40000;
    /* font-style: italic; */
}


/* Text */

.about-lead {
    margin-bottom: 5px;
    color: #2d2727;
    font-size: 16px;
    line-height: 1.75;
}

.about-content > p:not(.about-lead) {
    color: #75686a;
    font-size: 13px;
    line-height: 1.75;
}


/* Highlights */

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 3px 0;
    padding: 8px 0;
    border-top: 1px solid #eee1e2;
    border-bottom: 1px solid #eee1e2;
}

.about-highlight {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-highlight > span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d40000;
    background: #fff2f2;
    border-radius: 50%;
}

.about-highlight h4 {
    margin: 0 0 5px;
    color: #2b2021;
    font-size: 14px;
    font-weight: 600;
}

.about-highlight p {
    margin: 0;
    color: #827678;
    font-size: 12px;
    line-height: 1.6;
}


/* Bottom */

.about-bottom {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
}


/* Button */

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 8px 16px;
    background: #d40000;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: all .3s ease;
    border-radius: 8px;
}

.about-btn:hover {
    background: #7d1421;
    color: #fff;
    transform: translateY(-2px);
}

.about-btn i {
    transition: transform .3s ease;
}

.about-btn:hover i {
    transform: translateX(5px);
}


/* Location */

.about-location {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-location > i {
    color: #d40000;
    font-size: 18px;
}

.about-location small,
.about-location strong {
    display: block;
}

.about-location small {
    margin-bottom: 2px;
    color: #999;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-location strong {
    color: #332728;
    font-size: 13px;
}


/* =================================
   Responsive
================================= */

@media (max-width: 1199px) {

    .about-visual {
        min-height: 530px;
    }

    .about-main-image {
        height: 450px;
    }

    .about-small-image {
        width: 150px;
        height: 150px;
    }

    .about-content {
        padding-left: 10px;
    }

}


@media (max-width: 991px) {

    .lalmiri-about {
        padding: 30px 0;
    }

    .about-visual {
        max-width: 650px;
        margin: 0 auto 0px;
    }

    .about-content {
        padding-left: 0;
    }

}


@media (max-width: 767px) {

    .lalmiri-about {
        padding: 24px 0;
    }

    .about-visual {
        min-height: 430px;
    }

   .about-main-image {
    left: 0px;
    width: 100%;
    height: 370px;
    border-radius: 120px 120px 10px 10px;
}

    .about-small-image {
        right: 0;
        bottom: 10px;
        width: 145px;
        height: 145px;
    }

    .about-experience {
        left: 0;
        bottom: 35px;
        padding: 10px 15px;
    }

    .experience-icon {
        width: 35px;
        height: 35px;
    }

    .about-circle {
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .section-subtitle {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-lead {
        font-size: 14px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .about-highlight {
        flex-direction: row;
        align-items: flex-start;
    }

    .about-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

}

/* =================================
   Lal Miri Signature Collection
================================= */

.lalmiri-signature {
    position: relative;
    padding: 40px 0;
    background: #faf8f8c7;
    overflow: hidden;
}

/* Soft Background */

.lalmiri-signature::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -280px;
    top: 120px;
    background: #fff2f2;
    border-radius: 50%;
}


/* =================================
   Heading
================================= */

.signature-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
}

.signature-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 9px 30px;

    background: #fff;
    color: #d40000;

    border-radius: 30px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;

    box-shadow: 0 10px 30px rgba(60, 0, 0, .06);
}

.signature-heading h2 {
    margin: 10px 0 5px;

    color: #151515;
    /* font-family: "Playfair Display", serif; */

    font-size: clamp(30px, 4vw, 26px);
    font-weight: 500;
    line-height: 1.12;
}

.signature-heading h2 span {
    color: #d40000;
}

.signature-heading p {
    max-width: 780px;

    margin: 0 auto;

    color: #75686a;

    font-size: 13px;
    line-height: 1.7;
}


/* =================================
   Main Layout
================================= */

.signature-layout {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns: 1.25fr 1fr;

    gap: 36px;

    align-items: stretch;
}


/* =================================
   Left Image
================================= */

.signature-image {
    position: relative;

    height: 100%;

    overflow: hidden;

    border-radius: 35px 35px 35px 8px;

    background: #eee;

    box-shadow:
        0 20px 50px rgba(70, 0, 0, .12);
}

.signature-image img {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    object-fit: cover;

    transition: transform .8s ease;
}

.signature-image:hover img {
    transform: scale(1.05);
}


/* Image Overlay */

.signature-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 35%,
            rgba(0,0,0,.72) 100%
        );
}


/* Image Content */

.signature-image-content {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 28px;

    color: #fff;
}

.signature-image-content > span {
    display: block;

    margin-bottom: 7px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;
}

.signature-image-content h3 {
    margin: 0 0 6px;
   /* font-family: "Playfair Display", serif; */
    font-size: 25px;
    font-weight: 400;
    line-height: 1.05;
}

.signature-image-content h3 strong {
    color: #ffdddd;
    font-weight: 500;
}

.signature-image-content a {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    padding: 9px 15px;

    background: #d40000;

    color: #fff;

    border-radius: 5px;

    font-size: 11px;
    font-weight: 600;

    text-decoration: none;

    transition: all .3s ease;
}

.signature-image-content a:hover {
    background: #fff;
    color: #d40000;
}

.signature-image-content a i {
    transition: transform .3s ease;
}

.signature-image-content a:hover i {
    transform: translateX(4px);
}


/* =================================
   Right Items
================================= */

.signature-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Item */
.signature-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 80px;
    padding: 10px 22px;
    background: #fff;
    border: 1px solid #f0dede;
    border-radius: 25px;
    transition: all .35s ease;
}

.signature-item:hover {
    border-color: #ffbaba;

    transform: translateX(-5px);

    box-shadow:
        0 15px 35px rgba(90, 0, 0, .08);
}


/* Icon */

.signature-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    margin-right: 22px;

    background: #fff5f5;

    color: #d40000;

    border-radius: 18px;

    font-size: 20px;
}

.signature-item:hover .signature-icon {
    background: #d40000;
    color: #fff;
}


/* Content */

.signature-item-content {
    flex: 1;

    padding-right: 10px;
}

.item-number {
    display: block;

    margin-bottom: 2px;

    color: #d40000;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.signature-item-content h3 {
    margin: 0 0 5px;

    color: #181414;

   /* font-family: "Playfair Display", serif; */

    font-size: 18px;
    font-weight: 500;
}

.signature-item-content p {
    max-width: 370px;

    margin: 0;

    color: #4c4546;

    font-size: 12px;

    line-height: 1.65;
}


/* Badge */
.signature-badge {
    flex-shrink: 0;
    padding: 3px 8px;
    background: #d40000;
    color: #fff;
    border-radius: 25px;
    font-size: 9px;
    font-weight: 500;
    white-space: nowrap;
}


/* =================================
   Bottom Menu Link
================================= */

.signature-view-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 15px 5px 4px;

    border-bottom: 1px solid #eadede;

    color: #d40000;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: all .3s ease;
}

.signature-view-menu i {
    transition: transform .3s ease;
}

.signature-view-menu:hover {
    color: #a00000;
}

.signature-view-menu:hover i {
    transform: translateX(6px);
}


/* =================================
   Tablet
================================= */

@media (max-width: 991px) {

    .lalmiri-signature {
        padding: 30px 0;
    }

    .signature-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .signature-image {
        min-height: 430px;
    }

    .signature-items {
        gap: 5px;
    }

}


/* =================================
   Mobile
================================= */

@media (max-width: 767px) {

    .lalmiri-signature {
        padding: 24px 0;
    }

    .signature-heading {
        margin-bottom: 20px;
    }

    .signature-label {
        padding: 8px 20px;

        font-size: 9px;
        letter-spacing: 2.5px;
    }

    .signature-heading h2 {
        margin-top: 8px;
        font-size: 22px;
    }

    .signature-heading p {
        font-size: 12px;
    }

    .signature-image {
        height: 100%;
        border-radius: 25px 25px 25px 5px;
    }

    .signature-image-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .signature-image-content h3 {
        font-size: 21px;
    }

    .signature-item {
        min-height: auto;

        padding: 13px;

        border-radius: 18px;
    }

  .signature-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border-radius: 13px;
    font-size: 15px;
}
    .signature-item-content h3 {
        font-size: 18px;
    }

    .signature-item-content p {
        font-size: 11px;
        line-height: 1.5;
    }

    .signature-badge {
        display: none;
    }

    .item-number {
        font-size: 8px;
    }

}
/* =================================
   Lal Miri Experience Section
================================= */

.lalmiri-experience {
    position: relative;
    padding: 40px 0;
    background: #fff;
    overflow: hidden;
}
/* Soft Decorative Background */

.lalmiri-experience::before {
    content: "";
    position: absolute;

    width: 350px;
    height: 350px;

    left: -280px;
    top: 180px;

    background: #fff0f06e;

    border-radius: 50%;
}

.lalmiri-experience::after {
    content: "";
    position: absolute;

    width: 350px;
    height: 350px;

    right: -220px;
    bottom: 50px;

    background: #fff1f15c;

    border-radius: 50%;
}


/* =================================
   Heading
================================= */

.experience-heading {
    position: relative;
    z-index: 2;

    margin-bottom: 15px;
}

.experience-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 30px;

    background: #fff;

    color: #d40000;

    border-radius: 30px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3.5px;

    box-shadow: 0 8px 25px rgba(70, 0, 0, .06);
}

.experience-heading h2 {
    margin: 4px 0 4px;

    color: #171313;

   /* font-family: "Playfair Display", serif; */

    font-size: 32px;

    font-weight: 500;

    line-height: 1.1;
}

.experience-heading h2 span {
    color: #d40000;
}

.experience-line {
    width: 112px;
    height: 3px;

    margin: 4px auto 4px;

    background: #d40000;

    border-radius: 5px;
}

.experience-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: #000;

    font-size: 13px;

    line-height: 1.7;
}


/* =================================
   Main Layout
================================= */

.experience-layout {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 340px 1fr;

    align-items: center;

    gap: 28px;
}


/* =================================
   Feature Columns
================================= */

.experience-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.experience-left {
    padding-right: 5px;
}

.experience-right {
    padding-left: 5px;
}


/* Feature */

.experience-feature {
    display: flex;
    align-items: flex-start;

    gap: 18px;
}

.experience-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #fff5f5;

    color: #d40000;

    border-radius: 50%;

    font-size: 20px;

    transition: all .3s ease;
}

.experience-feature:hover .experience-icon {
    background: #d40000;
    color: #fff;

    transform: translateY(-3px);

    box-shadow:
        0 10px 22px rgba(212, 0, 0, .18);
}


/* Content */

.experience-feature-content {
    padding-top: 1px;
}

.experience-feature-content h3 {
    margin: 0 0 5px;

    color: #171414;

   /* font-family: "Playfair Display", serif; */

    font-size: 21px;

    font-weight: 600;

    line-height: 1.2;
}

.experience-feature-content p {
    max-width: 270px;

    margin: 0;

    color: #75686a;

    font-size: 12px;

    line-height: 1.7;
}


/* =================================
   Center Circle
================================= */

.experience-center {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 390px;
}

.experience-circle {
    position: relative;

    width: 330px;
    height: 330px;

    padding: 9px;

    background: #fff;

    border: 1px solid #f3dddd;

    border-radius: 50%;

    box-shadow:
        0 20px 50px rgba(80, 0, 0, .10);

    overflow: hidden;
}

.experience-circle img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;

    transition: transform .7s ease;
}

.experience-center:hover .experience-circle img {
    transform: scale(1.05);
}


/* Circle Overlay */

.experience-circle-overlay {
    position: absolute;

    inset: 9px;

    border-radius: 50%;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 40%,
            rgba(80,0,0,.55) 100%
        );
}


/* Center Badge */

.experience-center-badge {
    position: absolute;

    left: 50%;
    bottom: 35px;

    transform: translateX(-50%);

    min-width: 150px;

    padding: 11px 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    background: #d40000;

    color: #fff;

    border-radius: 30px;

    box-shadow:
        0 10px 25px rgba(100,0,0,.25);

    white-space: nowrap;
}

.experience-center-badge i {
    font-size: 14px;
}

.experience-center-badge span {
    display: flex;
    flex-direction: column;

    font-size: 10px;

    line-height: 1.2;

    text-align: left;
}

.experience-center-badge strong {
    font-size: 13px;
}


/* =================================
   Decorative Dots
================================= */

.experience-dot {
    position: absolute;

    width: 9px;
    height: 9px;

    background: #d40000;

    border-radius: 50%;
}

.dot-one {
    top: 28px;
    right: 28px;
}

.dot-two {
    bottom: 30px;
    left: 20px;

    width: 6px;
    height: 6px;

    background: #e9a5a5;
}

.dot-three {
    top: 80px;
    left: 25px;

    width: 5px;
    height: 5px;

    background: #e9a5a5;
}


/* =================================
   Responsive
================================= */

@media (max-width: 1199px) {

    .experience-layout {
        grid-template-columns: 1fr 290px 1fr;

        gap: 20px;
    }

    .experience-circle {
        width: 285px;
        height: 285px;
    }

    .experience-center {
        min-height: 340px;
    }

    .experience-feature {
        gap: 13px;
    }
.experience-icon {
    width: 40px;
    height: 40px;
    font-size: 14px;
}

    .experience-feature-content h3 {
        font-size: 18px;
    }

}


@media (max-width: 991px) {

    .lalmiri-experience {
        padding: 30px 0;
    }

    .experience-layout {
        grid-template-columns: 1fr 1fr;

        gap: 25px;
    }

    .experience-center {
        grid-column: 1 / -1;
        grid-row: 1;

        min-height: 350px;
    }

    .experience-left {
        grid-column: 1;
        grid-row: 2;
    }

    .experience-right {
        grid-column: 2;
        grid-row: 2;
    }

    .experience-circle {
        width: 300px;
        height: 300px;
    }

}


@media (max-width: 767px) {

    .lalmiri-experience {
        padding: 24px 0;
    }

    .experience-heading {
        margin-bottom: 20px;
    }

    .experience-label {
        padding: 8px 20px;

        font-size: 9px;
        letter-spacing: 2.5px;
    }

    .experience-heading h2 {
        font-size: 22px;
    }

    .experience-heading p {
        font-size: 12px;
    }

    .experience-layout {
        display: flex;
        flex-direction: column;

        gap: 20px;
    }

    .experience-center {
        order: 1;

        min-height: auto;

        width: 100%;
    }

    .experience-left {
        order: 2;
        width: 100%;
    }

    .experience-right {
        order: 3;
        width: 100%;
    }

    .experience-circle {
        width: 270px;
        height: 270px;
    }

    .experience-feature {
        gap: 12px;
    }

    .experience-icon {
        width: 50px;
        height: 50px;

        font-size: 17px;
    }

    .experience-feature-content h3 {
        font-size: 17px;
    }

    .experience-feature-content p {
        max-width: none;

        font-size: 11px;
    }

    .experience-center-badge {
        bottom: 28px;

        min-width: 135px;

        padding: 9px 15px;
    }

}
/* =================================
   Lal Miri Menu Favourites
================================= */

.lalmiri-favourites {
    position: relative;
    padding: 40px 0;
    background: #f6f3e74d;
    overflow: hidden;
}

.lalmiri-favourites::before {
    content: "";
    position: absolute;

    width: 380px;
    height: 380px;

    left: -250px;
    bottom: 20px;

    background: #fff2f2;

    border-radius: 50%;
}


/* Heading */

.favourite-heading {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 24px;
}

.favourite-heading h2 {
    margin: 0;

    color: #24191a;

   /* font-family: "Playfair Display", serif; */

    font-size: clamp(34px, 4vw, 41px);

    font-weight: 500;
    line-height: 1.1;
}

.favourite-heading h2 span {
    display: block;
    color: #d40000;
}

.favourite-intro {
    max-width: 420px;
}

.favourite-intro p {
    margin: 0 0 10px;

    color: #75686a;

    font-size: 13px;
    line-height: 1.7;
}

.favourite-menu-btn {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: #d40000;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;
}

.favourite-menu-btn i {
    transition: transform .3s ease;
}

.favourite-menu-btn:hover {
    color: #a00000;
}

.favourite-menu-btn:hover i {
    transform: translateX(5px);
}


/* =================================
   Food Card
================================= */

.favourite-card {
    position: relative;

    height: 100%;

    background: #fff;

    border: 1px solid #f0dddd;

    border-radius: 18px;

    overflow: hidden;

    transition: all .35s ease;
}

.favourite-card:hover {
    transform: translateY(-6px);

    border-color: #e9bcbc;

    box-shadow:
        0 18px 40px rgba(80, 0, 0, .10);
}


/* Image */

.favourite-image {
    position: relative;

    height: 225px;

    overflow: hidden;

    background: #f5eeee;
}

.favourite-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}

.favourite-card:hover .favourite-image img {
    transform: scale(1.07);
}


/* Tag */

.favourite-tag {
    position: absolute;

    top: 13px;
    left: 13px;

    padding: 6px 11px;

    background: rgba(255,255,255,.94);

    color: #d40000;

    border-radius: 20px;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.2px;
}


/* Content */

.favourite-content {
    position: relative;

    padding: 17px 18px 18px;
}

.favourite-number {
    display: block;

    margin-bottom: 3px;

    color: #d40000;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.favourite-content h3 {
    margin: 0 0 4px;
    color: #24191a;
   /* font-family: "Playfair Display", serif; */
    font-size: 20px;
    font-weight: 600;
    line-height: 1.15;
}

.favourite-content p {
    min-height: 55px;

    margin: 0 0 13px;

    color: #75686a;

    font-size: 11px;

    line-height: 1.65;
}

.favourite-content a {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #d40000;

    font-size: 11px;
    font-weight: 600;

    text-decoration: none;
}

.favourite-content a i {
    transition: transform .3s ease;
}

.favourite-content a:hover i {
    transform: translateX(5px);
}


/* Bottom */

.favourite-bottom {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 20px;
    padding-top: 14px;

    border-top: 1px solid #eee1e2;
}

.favourite-bottom span {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #75686a;

    font-size: 11px;
}

.favourite-bottom span i {
    color: #d40000;
}

.favourite-bottom a {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #d40000;

    font-size: 11px;
    font-weight: 600;

    text-decoration: none;
}

.favourite-bottom a i {
    transition: transform .3s ease;
}

.favourite-bottom a:hover i {
    transform: translateX(5px);
}


/* =================================
   Responsive
================================= */

@media (max-width: 991px) {

    .lalmiri-favourites {
        padding: 30px 0;
    }

    .favourite-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 10px;
    }

    .favourite-intro {
        max-width: 650px;
    }

    .favourite-image {
        height: 210px;
    }

}


@media (max-width: 767px) {

    .lalmiri-favourites {
        padding: 24px 0;
    }

    .favourite-heading {
        margin-bottom: 18px;
    }

    .favourite-heading h2 {
        font-size: 30px;
    }

    .favourite-intro p {
        font-size: 12px;
    }

    .favourite-image {
        height: 230px;
    }

    .favourite-content {
        padding: 15px;
    }

    .favourite-content h3 {
        font-size: 20px;
    }

    .favourite-content p {
        min-height: auto;
    }

    .favourite-bottom {
        align-items: flex-start;
        flex-direction: column;

        gap: 9px;
    }

}
/* =================================
   Lal Miri CTA Section
================================= */

.lalmiri-cta {
    position: relative;

    padding: 16px 0;

    background: #fff;

    overflow: hidden;
}


/* Main CTA */
.lalmiri-cta-inner {
    position: relative;
    padding: 15px 23px 15px;
    text-align: center;
    background: linear-gradient(135deg, #721a1a 0%, #980e0e 45%, #741313 100%);
    border: 1px solid #d6aa50;
    border-radius: 16px;
    box-shadow: 0 14px 35px rgba(80, 0, 0, .18);
    overflow: hidden;
}

/* =================================
   Subtle Pattern
================================= */

.lalmiri-cta-inner::before {
    content: "";

    position: absolute;

    inset: 0;

    opacity: .13;

    background-image:
        linear-gradient(
            135deg,
            transparent 45%,
            #f2d18a 46%,
            #f2d18a 50%,
            transparent 51%
        );

    background-size: 55px 55px;

    pointer-events: none;
}


/* Inner Glow */

.lalmiri-cta-inner::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    background:
        radial-gradient(
            circle,
            rgba(255,220,150,.12),
            transparent 65%
        );

    pointer-events: none;
}


/* =================================
   Decorative Corners
================================= */

.cta-corner {
    position: absolute;

    width: 32px;
    height: 32px;

    z-index: 3;
}

.cta-corner::before,
.cta-corner::after {
    content: "";

    position: absolute;

    background: #f1d38b;
}


/* Top Left */

.cta-corner-tl {
    top: 17px;
    left: 18px;
}

.cta-corner-tl::before {
    width: 32px;
    height: 1px;

    left: 0;
    top: 0;
}

.cta-corner-tl::after {
    width: 1px;
    height: 32px;

    left: 0;
    top: 0;
}


/* Top Right */

.cta-corner-tr {
    top: 17px;
    right: 18px;
}

.cta-corner-tr::before {
    width: 32px;
    height: 1px;

    right: 0;
    top: 0;
}

.cta-corner-tr::after {
    width: 1px;
    height: 32px;

    right: 0;
    top: 0;
}


/* Bottom Left */

.cta-corner-bl {
    bottom: 17px;
    left: 18px;
}

.cta-corner-bl::before {
    width: 32px;
    height: 1px;

    left: 0;
    bottom: 0;
}

.cta-corner-bl::after {
    width: 1px;
    height: 32px;

    left: 0;
    bottom: 0;
}


/* Bottom Right */

.cta-corner-br {
    bottom: 17px;
    right: 18px;
}

.cta-corner-br::before {
    width: 32px;
    height: 1px;

    right: 0;
    bottom: 0;
}

.cta-corner-br::after {
    width: 1px;
    height: 32px;

    right: 0;
    bottom: 0;
}


/* =================================
   Label
================================= */

.cta-label {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    margin-bottom: 10px;

    color: #f4d68e;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 4px;
}

.cta-label i {
    font-size: 11px;

    transform: rotate(-15deg);
}


/* =================================
   Heading
================================= */

.lalmiri-cta h2 {
    position: relative;
    z-index: 2;

    margin: 0 auto 4px;

    color: #f6d78d;

   /* font-family: "Playfair Display", serif; */

    font-size:26px;

    font-weight: 600;

    line-height: 1.1;
}

.lalmiri-cta h2 span {
    color: #fff;

    margin-left: 5px;
}


/* =================================
   Description
================================= */

.lalmiri-cta p {
    position: relative;
    z-index: 2;

    max-width: 700px;

    margin: 0 auto 10px;

    color: rgba(255,255,255,.88);

    font-size: 13px;

    line-height: 1.65;
}


/* =================================
   Buttons
================================= */

.cta-buttons {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;
}


.cta-primary,
.cta-secondary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 6px 20px;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    transition: all .3s ease;
}


/* Primary */

.cta-primary {
    background: #fff;

    color: #171313;

    box-shadow:
        0 8px 20px rgba(0,0,0,.16);
}

.cta-primary:hover {
    color: #d40000;

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(0,0,0,.22);
}


/* Secondary */

.cta-secondary {
    border: 1px solid rgba(255,255,255,.65);

    color: #fff;

    background: rgba(255,255,255,.06);
}

.cta-secondary:hover {
    color: #fff;

    background: rgba(255,255,255,.15);

    transform: translateY(-2px);
}


/* =================================
   Bottom Information
================================= */

.cta-info {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    margin-top: 8px;

    color: rgba(255,255,255,.75);

    font-size: 10px;
}

.cta-info span {
    display: flex;

    align-items: center;

    gap: 6px;
}

.cta-info i {
    color: #f3cf80;
}

.cta-divider {
    width: 1px;
    height: 13px;

    background: rgba(255,255,255,.35);
}


/* =================================
   Responsive
================================= */

@media (max-width: 767px) {

    .lalmiri-cta {
        padding: 12px 0;
    }

    .lalmiri-cta-inner {
        padding: 28px 18px 24px;

        border-radius: 12px;
    }

    .cta-label {
        gap: 8px;

        font-size: 8px;

        letter-spacing: 2.5px;
    }

    .cta-label i {
        font-size: 8px;
    }

   .lalmiri-cta h2 {
    font-size: 20px;
    line-height: 1.2;
}

    .lalmiri-cta h2 span {
        display: block;

        margin: 2px 0 0;
    }

    .lalmiri-cta p {
        font-size: 11px;

        margin-bottom: 14px;
    }

    .cta-buttons {
        flex-direction: column;

        gap: 8px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;

        max-width: 240px;
    }


    .cta-divider {
        display: none;
    }

    .cta-corner {
        width: 22px;
        height: 22px;
    }

    .cta-corner-tl,
    .cta-corner-tr {
        top: 12px;
    }

    .cta-corner-bl,
    .cta-corner-br {
        bottom: 12px;
    }

    .cta-corner-tl,
    .cta-corner-bl {
        left: 12px;
    }

    .cta-corner-tr,
    .cta-corner-br {
        right: 12px;
    }

}
/* =================================
   Lal Miri Reviews
================================= */

.lalmiri-reviews {
    position: relative;

    padding: 40px 0;

    background: #ffffff;

    overflow: hidden;
}


/* Soft Background */

.lalmiri-reviews::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -270px;
    top: 80px;

    background: #fff0f0;

    border-radius: 50%;
}


/* =================================
   Heading
================================= */

.reviews-heading {
    position: relative;
    z-index: 1;

    margin-bottom: 30px;
}

.reviews-label {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 10px 27px;

    background: #fff;

    border-radius: 30px;

    color: #d40000;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3.5px;

    box-shadow:
        0 8px 25px rgba(70, 0, 0, .06);
}

.reviews-heading h2 {
    margin: 8px 0 6px;

    color: #171313;

   /* font-family: "Playfair Display", serif; */

    font-size: 32px;

    font-weight: 500;

    line-height: 1.1;
}

.reviews-heading h2 span {
    color: #d40000;
}

.reviews-heading p {
    max-width: 760px;

    margin: auto;

    color: #75686a;

    font-size: 12px;

    line-height: 1.7;
}


/* =================================
   Rating Summary
================================= */
.review-summary {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: center;
    gap: 40px;
    max-width: 1020px;
    margin: 0 auto 15px;
    padding: 14px 30px;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(80, 0, 0, .08);
}

/* Overall Rating */

.overall-rating {
    text-align: center;

    padding-right: 30px;

    border-right: 1px solid #eee3e3;
}

.overall-rating strong {
    display: block;

    color: #d40000;

    font-size: 40px;

    font-weight: 600;

    line-height: 1;
}

.rating-stars {
    margin: 0px;

    color: #f5a400;

    font-size: 18px;

    letter-spacing: 2px;
}

.overall-rating p {
    margin: 0;

    color: #75686a;

    font-size: 11px;
}


/* =================================
   Rating Breakdown
================================= */

.rating-breakdown {
    display: flex;

    flex-direction: column;

    gap: 16px;
}

.rating-row {
    display: grid;

    grid-template-columns: 165px 1fr 40px;

    align-items: center;

    gap: 10px;
}

.rating-title {
    color: #211a1b;

    font-size: 12px;

    font-weight: 600;
}

.rating-progress {
    height: 11px;

    overflow: hidden;

    background: #f8dddd;

    border-radius: 20px;
}

.rating-progress span {
    display: block;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            #c90000,
            #ff5c5c
        );

    border-radius: 20px;
}

.rating-row > strong {
    color: #d40000;

    font-size: 11px;

    text-align: right;
}


/* =================================
   Review Cards
================================= */

.review-cards {
    position: relative;
    z-index: 1;
}

.review-card {
    position: relative;

    height: 100%;

    padding: 12px 18px;

    background: #fff;

    border: 1px solid #f2caca;

    border-radius: 20px;

    transition: all .35s ease;
}

.review-card:hover {
    transform: translateY(-5px);

    border-color: #e9aaaa;

    box-shadow:
        0 15px 35px rgba(80, 0, 0, .08);
}


/* Quote */
.review-quote {
    height: 25px;
    color: #eb5858;
    font-family: Georgia, serif;
    font-size: 59px;
    line-height: 43px;
}

/* Stars */

.review-stars {
    margin: 0px;

    color: #f5a400;

    font-size: 15px;

    letter-spacing: 1px;
}


/* Text */
.review-card > p {
    min-height: 75px;
    margin: 0 0 8px;
    color: #484041;
    font-size: 14px;
    line-height: 1.75;
}

/* User */

.review-user {
    display: flex;

    align-items: center;

    gap: 12px;
}

.review-avatar {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #fff;

    color: #fff;

    border-radius: 50%;

    font-size: 16px;

    font-weight: 600;
}

.review-user h4 {
    margin: 0 0 2px;

    color: #191515;

    font-size: 15px;

    font-weight: 700;
}

.review-user span {
    color: #8a7e80;

    font-size: 10px;
}


/* =================================
   Bottom
================================= */

.reviews-bottom {
    position: relative;
    z-index: 1;

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 18px;

    padding-top: 13px;

    border-top: 1px solid #eee0e0;
}

.reviews-bottom span {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #75686a;

    font-size: 11px;
}

.reviews-bottom span i {
    color: #d40000;

    font-size: 15px;
}

.reviews-bottom a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #d40000;

    font-size: 11px;

    font-weight: 600;

    text-decoration: none;
}

.reviews-bottom a i {
    transition: transform .3s ease;
}

.reviews-bottom a:hover i {
    transform: translateX(5px);
}


/* =================================
   Responsive
================================= */

@media (max-width: 991px) {

    .lalmiri-reviews {
        padding: 30px 0;
    }

    .review-summary {
        grid-template-columns: 220px 1fr;

        gap: 25px;

        padding: 20px;
    }

    .overall-rating {
        padding-right: 20px;
    }

    .rating-row {
        grid-template-columns: 125px 1fr 38px;
    }

}


@media (max-width: 767px) {

    .lalmiri-reviews {
        padding: 24px 0;
    }

    .reviews-heading {
        margin-bottom: 20px;
    }

    .reviews-label {
        padding: 8px 20px;

        font-size: 8px;

        letter-spacing: 2.5px;
    }

    .reviews-heading h2 {
        font-size: 22px;
    }

    .reviews-heading p {
        font-size: 11px;
    }

  .review-summary {
    display: block;
    margin-bottom: 13px;
    padding: 12px;
    border-radius: 20px;
}

    .overall-rating {
        padding: 0 0 15px;

        margin-bottom: 15px;

        border-right: 0;

        border-bottom: 1px solid #eee3e3;
    }

    .overall-rating strong {
        font-size: 32px;
    }

    .rating-breakdown {
        gap: 13px;
    }

    .rating-row {
        grid-template-columns: 115px 1fr 35px;

        gap: 7px;
    }

    .rating-title {
        font-size: 10px;
    }

    .rating-progress {
        height: 8px;
    }

    .rating-row > strong {
        font-size: 10px;
    }

    .review-card {
        padding: 16px;
    }

    .review-card > p {
        min-height: auto;

        font-size: 11px;
    }

    .reviews-bottom {
        align-items: flex-start;

        flex-direction: column;

        gap: 8px;
    }

}
/* =================================
   Lal Miri Service Area
================================= */

.lalmiri-service-area {
    position: relative;

    padding: 42px 0;

    background: #fff;

    overflow: hidden;
}


/* Decorative Circle */
.lalmiri-service-area::after {
    content: "";
    position: absolute;
    width: 268px;
    height: 268px;
    right: -149px;
    top: -96px;
    border-radius: 50%;
    background: #fff1f178;
    z-index: 0;
}

/* =================================
   Heading
================================= */

.service-heading {
    position: relative;

    z-index: 1;

    margin-bottom: 30px;
}

.service-label {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 10px 25px;

    background: #fff;

    border-radius: 30px;

    color: #d40000;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    box-shadow:
        0 8px 25px rgba(70, 0, 0, .06);
}

.service-heading h2 {
    margin: 8px 0 7px;

    color: #171313;

   /* font-family: "Playfair Display", serif; */

    font-size: 32px;

    font-weight: 500;

    line-height: 1.1;
}

.service-heading h2 span {
    color: #d40000;
}

.service-heading p {
    max-width: 760px;

    margin: auto;

    color: #75686a;

    font-size: 12px;

    line-height: 1.7;
}


/* =================================
   Main Service Box
================================= */

.service-box {
    position: relative;

    z-index: 1;

    max-width: 1020px;

    margin: 0 auto;

    padding: 24px 35px;

    background: #fff;

    border: 1px solid #f1eeee;

    border-radius: 38px;

    box-shadow:
        0 18px 45px rgba(80, 0, 0, .08);
}


/* =================================
   Top Area
================================= */

.service-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.service-title-wrap {
    display: flex;

    align-items: center;

    gap: 18px;
}

/* Icon */
.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff2f2;
    border-radius: 20px;
    color: #d40000;
    font-size: 20px;
}
.service-title-wrap h3 {
    margin: 0 0 4px;

    color: #171313;

    font-size: 22px;

    font-weight: 600;
}

.service-title-wrap p {
    margin: 0;

    color: #75686a;

    font-size: 12px;
}


/* =================================
   Delivery Badge
================================= */

.delivery-badge {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 12px 22px;

    background: #d40000;

    color: #fff;

    border-radius: 30px;

    font-size: 11px;

    font-weight: 600;

    white-space: nowrap;

    box-shadow:
        0 8px 20px rgba(212, 0, 0, .18);
}

.delivery-badge i {
    font-size: 13px;
}


/* =================================
   Divider
================================= */

.service-divider {
    height: 1px;

    margin: 15px 0 18px;

    background: #eee3e3;
}


/* =================================
   Areas
================================= */

.service-areas {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 12px;
}

.service-areas span {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 8px 12px;

    background: #fffafa;

    border: 1px solid #f3dada;

    border-radius: 25px;

    color: #211a1b;

    font-size: 11px;

    font-weight: 600;

    text-align: center;

    transition: all .3s ease;
}

.service-areas span:hover {
    background: #d40000;

    border-color: #d40000;

    color: #fff;

    transform: translateY(-2px);

    box-shadow:
        0 7px 15px rgba(212, 0, 0, .15);
}


/* =================================
   Tablet
================================= */

@media (max-width: 991px) {

    .lalmiri-service-area {
        padding: 35px 0;
    }

    .service-box {
        padding: 22px 25px;

        border-radius: 28px;
    }

    .service-areas {
        grid-template-columns:
            repeat(4, 1fr);
    }

}


/* =================================
   Mobile
================================= */

@media (max-width: 767px) {

    .lalmiri-service-area {
        padding: 28px 0;
    }

    .service-heading {
        margin-bottom: 20px;
    }

    .service-label {
        padding: 8px 20px;

        font-size: 8px;

        letter-spacing: 2.5px;
    }

    .service-heading h2 {
        font-size: 29px;
    }

    .service-heading p {
        font-size: 11px;
    }

    .service-box {
        padding: 18px;

        border-radius: 22px;
    }

    .service-top {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }

    .service-title-wrap {
        gap: 12px;
    }

    .service-icon {
        width: 48px;
        height: 48px;

        border-radius: 15px;

        font-size: 19px;
    }

    .service-title-wrap h3 {
        font-size: 17px;
    }

    .service-title-wrap p {
        font-size: 10px;

        line-height: 1.5;
    }

    .delivery-badge {
        padding: 9px 16px;

        font-size: 10px;
    }

    .service-divider {
        margin: 15px 0;
    }

    .service-areas {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 8px;
    }

    .service-areas span {
        min-height: 38px;

        padding: 7px 8px;

        font-size: 10px;
    }

}
/* =================================
   Review Swiper
================================= */

.reviewSwiper {
    position: relative;

    overflow: hidden;

    padding: 5px 3px 55px;
}

.reviewSwiper .swiper-slide {
    height: auto;

    display: flex;
}

.reviewSwiper .review-card {
    width: 100%;

    display: flex;
    flex-direction: column;
}


/* Keep User At Bottom */

.reviewSwiper .review-user {
    margin-top: auto;
}


/* =================================
   Review Navigation
================================= */

.review-navigation {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    z-index: 5;
}

.review-prev,
.review-next {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff;

    border: 1px solid #f0caca;

    border-radius: 50%;

    color: #d40000;

    font-size: 12px;

    cursor: pointer;

    transition: all .3s ease;
}

.review-prev:hover,
.review-next:hover {
    background: #d40000;

    border-color: #d40000;

    color: #fff;

    transform: translateY(-2px);
}


/* Pagination */

.review-pagination {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    width: auto !important;
}

.review-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;

    margin: 0 !important;

    background: #e8baba;

    opacity: 1;

    transition: all .3s ease;
}

.review-pagination .swiper-pagination-bullet-active {
    width: 22px;

    border-radius: 10px;

    background: #d40000;
}


/* =================================
   Avatar Image
================================= */

.review-avatar {
    overflow: hidden;

    flex-shrink: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;
}


/* =================================
   Responsive
================================= */

@media (max-width: 767px) {

    .reviewSwiper {
        padding-bottom: 50px;
    }

    .review-navigation {
        gap: 10px;
    }

    .review-prev,
    .review-next {
        width: 32px;
        height: 32px;

        font-size: 10px;
    }

}
/* =================================
   Lal Miri Simple CTA
================================= */

.lalmiri-simple-cta {
    padding: 30px 0;

    background: #fff;
}

.simple-cta-box {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 28px 35px;

    background: #fff7f7;

    border: 1px solid #f2d5d5;

    border-radius: 18px;

    overflow: hidden;
}


/* Decorative Circle */

.simple-cta-box::after {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    right: -70px;
    top: -80px;

    border: 1px solid #edcccc;

    border-radius: 50%;

    opacity: .7;
}


/* =================================
   Content
================================= */

.simple-cta-content {
    position: relative;

    z-index: 1;
}

.simple-cta-label {
    display: inline-block;

    margin-bottom: 5px;

    color: #d40000;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;
}

.simple-cta-content h2 {
    margin: 0 0 5px;

    color: #211a1b;

    font-family: "Times New Roman", serif;

    font-size: 29px;

    font-weight: 500;

    line-height: 1.2;
}

.simple-cta-content h2 span {
    color: #d40000;
}

.simple-cta-content p {
    max-width: 600px;

    margin: 0;

    color: #75686a;

    font-size: 11px;

    line-height: 1.6;
}


/* =================================
   Action
================================= */

.simple-cta-action {
    position: relative;

    z-index: 1;

    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}


/* Phone */

.cta-phone {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 9px 15px;

    background: #fff;

    border: 1px solid #f0dada;

    border-radius: 10px;

    color: #211a1b;

    text-decoration: none;

    transition: all .3s ease;
}

.cta-phone:hover {
    border-color: #d40000;

    color: #d40000;
}

.cta-phone > i {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff1f1;

    color: #d40000;

    border-radius: 50%;

    font-size: 13px;
}

.cta-phone small,
.cta-phone strong {
    display: block;
}

.cta-phone small {
    margin-bottom: 2px;

    color: #999;

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.cta-phone strong {
    color: #211a1b;

    font-size: 12px;
}


/* Contact Button */

.cta-contact-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 20px;

    background: #d40000;

    color: #fff;

    border-radius: 9px;

    font-size: 11px;

    font-weight: 600;

    text-decoration: none;

    transition: all .3s ease;
}

.cta-contact-btn:hover {
    background: #9d0000;

    color: #fff;

    transform: translateY(-2px);
}

.cta-contact-btn i {
    transition: transform .3s ease;
}

.cta-contact-btn:hover i {
    transform: translateX(4px);
}


/* =================================
   Tablet
================================= */

@media (max-width: 991px) {

    .lalmiri-simple-cta {
        padding: 25px 0;
    }

    .simple-cta-box {
        padding: 25px;
    }

    .simple-cta-content h2 {
        font-size: 25px;
    }

    .simple-cta-action {
        flex-direction: column;

        align-items: stretch;
    }

    .cta-phone,
    .cta-contact-btn {
        justify-content: center;
    }

}


/* =================================
   Mobile
================================= */

@media (max-width: 767px) {

    .lalmiri-simple-cta {
        padding: 20px 0;
    }

    .simple-cta-box {
        flex-direction: column;

        align-items: flex-start;

        gap: 18px;

        padding: 22px 18px;

        border-radius: 15px;
    }

    .simple-cta-content h2 {
        font-size: 24px;
    }

    .simple-cta-content p {
        font-size: 10px;
    }

    .simple-cta-action {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }

    .cta-phone,
    .cta-contact-btn {
        width: 100%;

        justify-content: center;
    }

}
/* =================================
   Lal Miri Booking Section
================================= */

.lalmiri-booking-sec {
    position: relative;

    padding: 30px 0;

    background: #fffafa;

    overflow: hidden;
}


/* Soft Background Shape */

/* =================================
   Left Content
================================= */

.booking-content {
    position: relative;

    z-index: 1;

    padding-right: 25px;
}

.booking-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 25px;
    margin-bottom: 4px;
    background: #fff;
    color: #d40000;
    border-radius: 30px;
    box-shadow: 0 8px 30px rgba(80, 0, 0, .06);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
}
.booking-content h2 {
    margin: 0 0 2px;
    color: #21191a;
    /* font-family: "Times New Roman", serif; */
    font-size: 30px;
    font-weight: 500;
    line-height: 1.1;
}
.booking-content h2 span {
    color: #d40000;
}

.booking-intro {
    max-width: 570px;

    margin: 0 0 8px;

    color: #75686a;

    font-size: 14px;

    line-height: 1.75;
}


/* =================================
   Points
================================= */

.booking-points {
    display: flex;

    flex-direction: column;

    gap: 13px;

    margin-bottom: 25px;
}


.booking-point {
    display: flex;

    align-items: center;

    gap: 13px;

    color: #2c2324;

    font-size: 14px;

    font-weight: 600;
}


.booking-point i {
    width: 22px;
    height: 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #fff0f0;

    color: #d40000;

    border-radius: 50%;

    font-size: 10px;
}


/* =================================
   Contact Buttons
================================= */

.booking-contact {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}

.booking-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 6px 12px;
    background: #188b4b;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all .3s ease;
}

.booking-call-btn:hover {
    background: #116b39;

    color: #fff;

    transform: translateY(-2px);
}


.booking-call-btn i {
    font-size: 13px;
}


.booking-call-btn strong {
    font-weight: 700;
}


.booking-contact-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 6px 12px;

    background: #d40000;

    color: #fff;

    border-radius: 30px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    transition: all .3s ease;
}


.booking-contact-btn:hover {
    background: #a00000;

    color: #fff;

    transform: translateY(-2px);
}


.booking-contact-btn i {
    transition: transform .3s ease;
}


.booking-contact-btn:hover i {
    transform: translateX(4px);
}


/* =================================
   Booking Form Box
================================= */

.booking-form-box {
    position: relative;

    z-index: 1;

    padding: 15px 18px;

    background: #fff;

    border: 1px solid #f0dddd;

    border-radius: 28px;

    box-shadow: 0 20px 60px rgba(70, 0, 0, .08);
}


/* Form Heading */

.booking-form-head {
    margin-bottom: 20px;
}


.booking-form-head > span {
    display: block;

    margin-bottom: 5px;

    color: #d40000;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;
}


.booking-form-head h3 {
    margin: 0 0 5px;

    color: #21191a;

    font-family: "Times New Roman", serif;

    font-size: 29px;

    font-weight: 500;
}


.booking-form-head h3 strong {
    color: #d40000;

    font-weight: 500;
}

.booking-form-head p {
    margin: 0;
    color: #817476;
    font-size: 12px;
}

/* =================================
   Inputs
================================= */

.booking-input {
    position: relative;

    display: flex;

    align-items: center;

    min-height: 42px;

    background: #fff8f8;

    border: 1px solid #f0dddd;

    border-radius: 12px;

    transition: all .3s ease;
}


.booking-input:focus-within {
    background: #fff;

    border-color: #d40000;

    box-shadow: 0 5px 20px rgba(212, 0, 0, .07);
}


.booking-input > i {
    width: 48px;

    text-align: center;

    color: #d40000;

    font-size: 14px;
}


.booking-input input,
.booking-input select {
    width: 100%;

    height: 42px;

    padding: 0 12px 0 0;

    border: 0;

    outline: 0;

    background: transparent;

    color: #312829;

    font-family: inherit;

    font-size: 12px;
}


.booking-input input::placeholder {
    color: #817476;
}


.booking-input select {
    cursor: pointer;
}


/* =================================
   Textarea
================================= */

.booking-textarea {
    position: relative;

    display: flex;

    align-items: flex-start;

    padding: 14px 0;

    background: #fff8f8;

    border: 1px solid #f0dddd;

    border-radius: 12px;

    transition: all .3s ease;
}


.booking-textarea:focus-within {
    background: #fff;

    border-color: #d40000;

    box-shadow: 0 5px 20px rgba(212, 0, 0, .07);
}


.booking-textarea > i {
    width: 48px;

    padding-top: 3px;

    text-align: center;

    color: #d40000;

    font-size: 14px;
}


.booking-textarea textarea {
    width: 100%;

    padding: 0 15px 0 0;

    border: 0;

    outline: 0;

    resize: none;

    background: transparent;

    color: #312829;

    font-size: 12px;

    line-height: 1.6;
}


.booking-textarea textarea::placeholder {
    color: #817476;
}


/* =================================
   Submit
================================= */

.booking-submit {
    width: 30%;

    display: flex;
margin: auto;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 42px;

    border: 0;

    border-radius: 30px;

    background: linear-gradient(
        90deg,
        #d40000,
        #ef2727
    );

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition: all .3s ease;
}


.booking-submit:hover {
    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(212, 0, 0, .20);
}


.booking-submit i {
    transition: transform .3s ease;
}


.booking-submit:hover i {
    transform: translateX(5px);
}


/* =================================
   Tablet
================================= */



/* =================================
   Mobile
================================= */

@media (max-width: 767px) {

    .lalmiri-booking-sec {
        padding: 10px 0;
    }

    .booking-content h2 {
        font-size: 22px;
    }

    .booking-intro {
        font-size: 13px;
    }

    .booking-point {
        font-size: 12px;
    }

    .booking-contact {
    /* flex-direction: column; */
    align-items: stretch;
    gap: 4px;
}

    .booking-call-btn,
    .booking-contact-btn {
        justify-content: center;
    }

    .booking-form-box {
        padding: 22px 18px;

        border-radius: 20px;
    }

    .booking-form-head h3 {
        font-size: 22px;
    }

    .booking-form-head p {
        font-size: 11px;
    }
    .booking-submit {
    width: 60%;
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 34px;
    border: 0;
    border-radius: 30px;
    background: linear-gradient(
        90deg,
        #d40000,
        #ef2727
    );
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
}

}
/* =================================
   Lal Miri Location Section
================================= */

.lalmiri-location-sec {
    position: relative;

    padding: 40px 0;

    background: #fff;

    overflow: hidden;
}


/* Soft Background */

.lalmiri-location-sec::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 290px;

    right: -200px;
    top: -180px;

    background: #fcfff3a1;

    border-radius: 50%;

    z-index: 0;
}


/* =================================
   Heading
================================= */

.location-heading {
    position: relative;

    z-index: 1;

    max-width: 850px;

    margin: 0 auto 25px;
}


.location-label {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 11px 27px;

    margin-bottom: 8px;

    background: #fff;

    color: #d40000;

    border-radius: 30px;

    box-shadow: 0 8px 30px rgba(80, 0, 0, .06);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 4px;
}

.location-heading h2 {
    margin: 0 0 8px;
    color: #21191a;
    font-family: "Times New Roman", serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.15;
}
.location-heading h2 span {
    color: #d40000;
}


.location-heading p {
    max-width: 760px;

    margin: 0 auto;

    color: #75686a;

    font-size: 12px;

    line-height: 1.7;
}


/* =================================
   Main Row
================================= */

.location-row {
    position: relative;

    z-index: 1;
}


/* =================================
   Information
================================= */

.location-info {
    display: flex;

    flex-direction: column;

    gap: 13px;
}
@media (max-width:768px) {
    .location-info {
    display: flex;

    flex-direction: column;

    gap: 5px;
}
}

/* Information Card */
.location-info-card {
    display: flex;
    align-items: center;
    gap: 17px;
    min-height: 98px;
    padding: 12px 18px;
    background: #fff;
    border: 1px solid #f0e4e4;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(70, 0, 0, .05);
    transition: all .3s ease;
}

.location-info-card:hover {
    border-color: #edcccc;

    transform: translateY(-3px);

    box-shadow: 0 16px 40px rgba(70, 0, 0, .08);
}


/* Icon */
.location-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff1f1;
    color: #d40000;
    border-radius: 50%;
    font-size: 13px;
}

/* Content */

.location-info-content {
    flex: 1;
}


.location-info-content span {
    display: block;

    margin-bottom: 6px;

    color: #d40000;

    font-size: 11px;

    font-weight: 600;
}


.location-info-content p {
    margin: 0;

    color: #342b2c;

    font-size: 14px;

    line-height: 1.65;
}


.location-info-content a {
    color: #342b2c;

    text-decoration: none;

    font-weight: 600;

    transition: color .3s ease;
}


.location-info-content a:hover {
    color: #d40000;
}


/* =================================
   Google Map Button
================================= */
.location-map-btn {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 20px;
    background: #d40000;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all .3s ease;
}


.location-map-btn:hover {
    background: #a50000;

    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(212, 0, 0, .18);
}


.location-map-btn i:last-child {
    transition: transform .3s ease;
}


.location-map-btn:hover i:last-child {
    transform: translateX(5px);
}


/* =================================
   Map
================================= */

.location-map {
    position: relative;

    height: 500px;

    overflow: hidden;

    background: #f8f8f8;

    border: 1px solid #eee4e4;

    border-radius: 28px;

    box-shadow: 0 20px 55px rgba(60, 0, 0, .08);
}


.location-map iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}


/* =================================
   Tablet
================================= */

@media (max-width: 991px) {

    .lalmiri-location-sec {
        padding: 50px 0;
    }

    .location-heading {
        margin-bottom: 30px;
    }

    .location-map {
        height: 420px;
    }

}


/* =================================
   Mobile
================================= */

@media (max-width: 767px) {

    .lalmiri-location-sec {
        padding: 5px 0;
    }

    .location-heading {
        margin-bottom: 15px;
    }

    .location-label {
        padding: 9px 20px;

        font-size: 8px;

        letter-spacing: 3px;
    }

    .location-heading h2 {
        font-size: 23px;
    }

    .location-heading p {
        font-size: 11px;
    }

    .location-info-card {
        min-height: auto;
        padding: 10px;
        border-radius: 17px;
    }

    .location-icon {
        width: 33px;
        height: 33px;

        font-size: 11px;
    }

    .location-info-content span {
        font-size: 10px;
    }

    .location-info-content p {
        font-size: 11px;
    }

    .location-map {
        height: 330px;

        border-radius: 20px;
    }

}
/* =================================
   Lal Miri Blog Section
================================= */

.lalmiri-blog {
    position: relative;
    padding: 30px 0;
    background: #fffafa;
    overflow: hidden;
}


/* Soft Decorative Circle */
.lalmiri-blog::before {
    content: "";
    position: absolute;
    width: 302px;
    height: 251px;
    right: -220px;
    top: -5px;
    background: #fff0f091;
    border-radius: 50%;
    z-index: 0;
}


/* Section Heading */

.lalmiri-blog .section-heading {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto 20px;
}


.lalmiri-blog .section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;

    color: #d40000;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
}


.lalmiri-blog .subtitle-line {
    width: 28px;
    height: 1px;
    background: #d40000;
}


.lalmiri-blog .section-heading h2 {
    margin: 0 0 10px;

    color: #24191a;
    font-family: "Times New Roman", serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.15;
}


.lalmiri-blog .section-heading h2 span {
    color: #d40000;
}


.lalmiri-blog .section-heading p {
    max-width: 700px;
    margin: auto;

    color: #75686a;
    font-size: 14px;
    line-height: 1.7;
}


/* =================================
   Blog Card
================================= */

.lalmiri-blog-card {
    height: 100%;
    background: #fff;

    border: 1px solid #f1dede;
    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 12px 35px rgba(90, 0, 0, .06);

    transition: all .35s ease;
}


.lalmiri-blog-card:hover {
    transform: translateY(-7px);

    border-color: #e9b5b5;

    box-shadow: 0 20px 45px rgba(90, 0, 0, .12);
}


/* Image */

.blog-image {
    position: relative;

    height: 245px;

    overflow: hidden;
}


.blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}


.lalmiri-blog-card:hover .blog-image img {
    transform: scale(1.07);
}


/* Category */

.blog-category {
    position: absolute;

    left: 18px;
    bottom: 16px;

    padding: 7px 14px;

    background: #d40000;
    color: #fff;

    border-radius: 30px;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .5px;
}


/* =================================
   Blog Content
================================= */

.blog-content {
    padding:14px 12px 14px;
}


.blog-meta {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 10px;

    color: #9a8587;

    font-size: 11px;
}


.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: #d40000;
}

.blog-content h3 {
    margin: 0 0 4px;

    color: #292021;

    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;

    transition: color .3s ease;
}


.lalmiri-blog-card:hover .blog-content h3 {
    color: #d40000;
}


.blog-content p {
    margin: 0 0 4px;
    color: #76696b;
 font-size: 14px;
    line-height: 1.7;
}

/* Read More */

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #d40000;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition: all .3s ease;
}


.blog-read-more i {
    transition: transform .3s ease;
}


.blog-read-more:hover {
    color: #8f111b;
}


.blog-read-more:hover i {
    transform: translateX(5px);
}


/* View All */

.blog-view-all {
    margin-top: 10px;
}


.blog-view-all .about-btn {
    padding: 7px 19px;
}


/* =================================
   Responsive
================================= */

@media (max-width: 991px) {

    .lalmiri-blog {
        padding: 55px 0;
    }

    .lalmiri-blog .section-heading {
        margin-bottom: 30px;
    }

    .blog-image {
        height: 220px;
    }

}


@media (max-width: 767px) {

    .lalmiri-blog {
        padding: 10px 0;
    }

    .lalmiri-blog .section-heading h2 {
        font-size: 22px;
    }

    .lalmiri-blog .section-heading p {
        font-size: 13px;
    }

    .blog-image {
        height: 220px;
    }

    .blog-content {
        padding: 18px;
    }

    .blog-content h3 {
        font-size: 20px;
    }

    .blog-content p {
        font-size: 12px;
    }

    .blog-meta {
        gap: 10px;
        flex-wrap: wrap;
    }

}
/* ============================================
   LAL MIRI SIMPLE CTA
============================================= */

.lalmiri-simple-cta {
    position: relative;
    padding: 20px 0;
    background: #fff8f8;
    overflow: hidden;
}

/* Soft Decorative Circle */

.lalmiri-simple-cta::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    left: -140px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffeaea;
    border-radius: 50%;
}

.lalmiri-simple-cta::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -100px;
    top: -100px;
    border: 1px solid #f3caca;
    border-radius: 50%;
}


/* Main Box */

.simple-cta-inner {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 16px 28px;

    background: #ffffff;

    border: 1px solid #f1dddd;

    border-radius: 18px;

    box-shadow: 0 15px 45px rgba(90, 0, 0, .07);
}


/* Content */

.simple-cta-content {
    max-width: 680px;
}


/* Label */

.simple-cta-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 9px;

    color: #d40000;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;
}

.simple-cta-label span {
    width: 24px;
    height: 1px;

    background: #d40000;
}


/* Heading */

.simple-cta-content h2 {
    margin: 0 0 2px;

    color: #24191a;

    font-family: "Times New Roman", serif;

    font-size: 30px;

    font-weight: 500;

    line-height: 1.15;
}

.simple-cta-content h2 span {
    color: #d40000;
}


/* Description */

.simple-cta-content p {
    max-width: 650px;

    margin: 0;

    color: #75686a;

    font-size: 14px;

    line-height: 1.7;
}


/* Action */

.simple-cta-action {
    display: flex;
    align-items: center;
    gap: 14px;

    flex-shrink: 0;
}


/* Phone */
.cta-phone {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 5px 6px;
    color: #332728;
    text-decoration: none;
    border: 1px solid #ead7d8;
    border-radius: 8px;
    transition: all .3s ease;
}
.cta-phone:hover {
    color: #d40000;

    border-color: #d40000;

    transform: translateY(-2px);
}

.cta-phone > i {
    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #d40000;

    background: #fff1f1;

    border-radius: 50%;

    font-size: 10px;
}

.cta-phone small {
    display: block;

    margin-bottom: 2px;

    color: #999;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.cta-phone strong {
    display: block;

    color: #292020;

    font-size: 13px;

    font-weight: 600;
}


/* Contact Button */

.cta-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 6px 10px;

    background: #d40000;

    color: #fff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    border-radius: 8px;

    transition: all .3s ease;
}

.cta-contact-btn:hover {
    background: #9f0000;

    color: #fff;

    transform: translateY(-2px);
}

.cta-contact-btn i {
    transition: transform .3s ease;
}

.cta-contact-btn:hover i {
    transform: translateX(4px);
}


/* ============================================
   RESPONSIVE
============================================= */

@media (max-width: 991px) {

    .lalmiri-simple-cta {
        padding: 40px 0;
    }

    .simple-cta-inner {
        padding: 28px;
    }

    .simple-cta-action {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-phone,
    .cta-contact-btn {
        justify-content: center;
    }

}


@media (max-width: 767px) {

    .lalmiri-simple-cta {
        padding: 30px 0;
    }

    .simple-cta-inner {
        flex-direction: column;

        align-items: flex-start;

        padding: 14px 10px;

        gap: 22px;

        border-radius: 14px;
    }

    .simple-cta-content {
        max-width: 100%;
    }

    .simple-cta-label {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .simple-cta-content h2 {
        font-size: 22px;
    }

    .simple-cta-content p {
        font-size: 13px;
    }

    .simple-cta-action {
        width: 100%;

        flex-direction: row;

        gap: 10px;
    }

    .cta-phone,
    .cta-contact-btn {
        width: 100%;

        justify-content: center;
    }

}
/* =================================
   Lal Miri FAQ Section
================================= */

.lalmiri-faq {
    position: relative;

    padding: 30px 0;

    background: #fff;

    overflow: hidden;
}

.faq-visual {
    position: relative;

    min-height: 500px;

    z-index: 1;
}


/* Main Image */

.faq-main-image {
    position: absolute;

    left: 25px;
    top: 0;

    width: 95%;
    height: 100%;

    overflow: hidden;

    border-radius: 170px 170px 15px 15px;

    box-shadow: 0 25px 60px rgba(80, 0, 0, .14);

    z-index: 2;
}


.faq-main-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}


.faq-main-image:hover img {
    transform: scale(1.05);
}


/* Decorative Circle */

.faq-circle {
    position: absolute;

    right: 5px;
    top: 45px;

    width: 90px;
    height: 90px;

    border: 1px solid #d40000;

    border-radius: 50%;

    opacity: .35;

    z-index: 1;
}


.faq-circle::after {
    content: "";

    position: absolute;

    inset: 12px;

    border: 1px solid #d40000;

    border-radius: 50%;
}


/* Badge */

.faq-badge {
    position: absolute;

    right: 0;
    bottom: 45px;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 13px 20px;

    background: #d40000;

    color: #fff;

    border-radius: 5px;

    box-shadow: 0 15px 35px rgba(120, 0, 0, .25);

    z-index: 4;
}


.faq-badge > i {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.5);

    border-radius: 50%;

    font-size: 15px;
}


.faq-badge strong,
.faq-badge small {
    display: block;
}


.faq-badge strong {
    font-family: Georgia, serif;

    font-size: 17px;
}


.faq-badge small {
    margin-top: 2px;

    color: rgba(255,255,255,.75);

    font-size: 9px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =================================
   FAQ Content
================================= */

.faq-content {
    position: relative;

    z-index: 2;
}


/* Subtitle */

.faq-content .section-subtitle {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 10px;

    color: #d40000;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;
}


.faq-content .subtitle-line {
    width: 30px;
    height: 1px;

    background: #d40000;
}


/* Heading */
.faq-content h2 {
    margin: 0 0 5px;
    color: #24191a;
    font-family: "Times New Roman", serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.12;
}
.faq-content h2 span {
    color: #d40000;
}

/* Intro */

.faq-intro {
    max-width: 650px;

    margin: 0 0 2px;

    color: #75686a;

    font-size: 13px;

    line-height: 1.75;
}


/* =================================
   Accordion
================================= */

.lalmiri-accordion {
    border-top: 1px solid #eee0e0;
}


.lalmiri-accordion .accordion-item {
    background: transparent;

    border: 0;

    border-bottom: 1px solid #eee0e0;
}


/* Button */
.lalmiri-accordion .accordion-button {
    position: relative;
    padding: 10px 33px 10px 3px;
    background: transparent;
    color: #292021;
    box-shadow: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.lalmiri-accordion .accordion-button:hover {
    color: #d40000;
}

/* Remove Bootstrap Background */

.lalmiri-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: #d40000;
    box-shadow: none;
}
/* Plus Icon */

.lalmiri-accordion .accordion-button::after {
    width: 28px;
    height: 28px;
    margin-left: auto;

    background-image: none;

    content: "+";

    display: flex;

    align-items: center;
    justify-content: center;

    color: #d40000;

    background: #fff1f1;

    border-radius: 50%;

    font-size: 17px;

    font-weight: 400;

    transform: none;

    transition: all .3s ease;
}


.lalmiri-accordion .accordion-button:not(.collapsed)::after {
    content: "−";

    color: #fff;

    background: #d40000;

    transform: none;
}


/* Answer */

.lalmiri-accordion .accordion-body {
    padding: 0 40px 5px 0;

    color: #7b6e70;

    font-size: 12px;

    line-height: 1.75;
}


.lalmiri-accordion .accordion-body a {
    color: #d40000;

    font-weight: 600;

    text-decoration: none;
}


/* =================================
   Bottom Contact
================================= */
.faq-contact {
    padding: 13px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 3px 0;
    padding: 4px 0;
}

.faq-contact span {
    color: #817476;
    font-size: 12px;
}

.faq-contact a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #d40000;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;
}


.faq-contact a i {
    transition: transform .3s ease;
}


.faq-contact a:hover i {
    transform: translateX(4px);
}


/* =================================
   Responsive
================================= */

@media (max-width: 1199px) {

    .faq-visual {
        min-height: 520px;
    }

    .faq-main-image {
        height: 470px;
    }

}


@media (max-width: 991px) {

    .lalmiri-faq {
        padding: 55px 0;
    }

    .faq-visual {
        max-width: 650px;

        margin: 0 auto 15px;
    }

    .faq-main-image {
        left: 30px;

        width: 80%;

        height: 480px;
    }

    .faq-badge {
        right: 20px;
    }

}


@media (max-width: 767px) {

    .lalmiri-faq {
        padding: 40px 0;
    }

    .faq-visual {
        min-height: 400px;

        margin-bottom: 10px;
    }

    .faq-main-image {
    left: 0px;
    width: 100%;
    height: 365px;
    border-radius: 120px 120px 12px 12px;
}
    .faq-circle {
        right: 10px;
        width: 60px;
        height: 60px;
    }

    .faq-circle::after {
        inset: 8px;
    }

    .faq-badge {
        right: 0;

        bottom: 20px;

        padding: 9px 13px;
    }

    .faq-badge > i {
        width: 34px;
        height: 34px;

        font-size: 12px;
    }

    .faq-badge strong {
        font-size: 14px;
    }

    .faq-badge small {
        font-size: 8px;
    }

    .faq-content .section-subtitle {
        font-size: 9px;

        letter-spacing: 2px;
    }

    .faq-content h2 {
        font-size: 22px;
    }

    .faq-intro {
        font-size: 12px;
        margin-bottom: 12px;
    }

 .lalmiri-accordion .accordion-button {
    padding: 8px 30px 8px 4px;
    font-size: 13px;
}
    .lalmiri-accordion .accordion-body {
        padding: 0 21px 3px 0;

        font-size: 11px;
    }

    .faq-contact {
        align-items: flex-start;

        flex-direction: column;

        gap: 7px;
    }

}
/* =========================
   BLOG SLIDER
========================= */

.lalmiri-blog-slider {
    width: 100%;
    overflow: hidden;
    padding: 10px 5px 65px;
}

.lalmiri-blog-slider .swiper-slide {
    height: auto;
    display: flex;
}

.lalmiri-blog-slider .lalmiri-blog-card {
    width: 100%;
    height: 100%;
}


/* =========================
   BLOG CARD
========================= */

.lalmiri-blog-card {
    background: #fff;
    border: 1px solid #f3d2d2;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.lalmiri-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}


/* =========================
   IMAGE
========================= */

.lalmiri-blog-card .blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.lalmiri-blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.lalmiri-blog-card:hover .blog-image img {
    transform: scale(1.08);
}


/* Category */

.blog-category {
    position: absolute;
    left: 15px;
    bottom: 15px;

    background: #e00000;
    color: #fff;

    padding: 7px 15px;
    border-radius: 30px;

    font-size: 13px;
    font-weight: 600;
}


/* =========================
   CONTENT
========================= */

.lalmiri-blog-card .blog-content {
    padding: 10px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 12px;

    color: #777;
    font-size: 12px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: #e00000;
}



/* =========================
   READ MORE
========================= */

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #e00000;
    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: #111;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}


/* =========================
   SLIDER CONTROLS
========================= */

.blog-slider-controls {
    position: absolute;
    bottom: 0;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    width: 100%;
}

.blog-prev,
.blog-next {
    position: static !important;
    width: 30px !important;
    height: 30px !important;
    margin: 0 !important;
    border: 1px solid #e00000;
    border-radius: 50%;
    background: #fff;
    color: #e00000;
    transition: all 0.3s ease;
}

.blog-prev:hover,
.blog-next:hover {
    background: #e00000;
    color: #fff;
}

.blog-prev::after,
.blog-next::after {
    display: none;
}

.blog-prev i,
.blog-next i {
    font-size: 14px;
}


/* Pagination */

.blog-pagination {
    position: static !important;
    width: auto !important;
}

.blog-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;

    background: #e00000;
    opacity: 0.25;
}

.blog-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 22px;
    border-radius: 10px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .lalmiri-blog-slider .swiper-slide {
        width: 50%;
    }

    .lalmiri-blog-card .blog-image {
        height: 220px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 575px) {

    .lalmiri-blog-slider .swiper-slide {
        width: 100%;
    }

    .lalmiri-blog-card .blog-image {
        height: 220px;
    }

    .lalmiri-blog-card h3 {
        font-size: 19px;
    }

    .blog-meta {
        flex-wrap: wrap;
        gap: 8px 12px;
    }

}