/* =========================================================
   MALLESWARI SAFETY NETS
   COMMON SERVICE SECTION CSS
   Reusable for all service/location pages
========================================================= */


/* =========================================================
   MAIN SECTION
========================================================= */

.msn-service-section {
    position: relative;
    padding: 0 22px 100px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 45%,
            rgba(26, 118, 137, 0.055),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 70%,
            rgba(15, 48, 61, 0.045),
            transparent 30%
        ),
        #f6f8f9;

    font-family:
        "Poppins",
        "Montserrat",
        "Segoe UI",
        sans-serif;
}


/* =========================================================
   TOP HEADER
========================================================= */

.msn-service-header {
    position: relative;

    margin: 0 -22px 70px;
    padding: 38px 20px 42px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #155d70 0%,
            #20778b 48%,
            #164f60 100%
        );

    color: #ffffff;

    box-shadow:
        0 10px 35px rgba(18, 62, 74, 0.16);
}


.msn-service-header::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -170px;
    top: -280px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 0 0 45px rgba(255,255,255,0.025),
        0 0 0 90px rgba(255,255,255,0.018);
}


.msn-service-header::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    left: -150px;
    bottom: -190px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.035);
}


.msn-service-header-inner {
    position: relative;

    z-index: 2;

    text-align: center;

    animation:
        msnHeaderReveal
        0.9s
        ease
        both;
}


/* =========================================================
   HEADER TEXT
========================================================= */

.msn-service-overline {
    display: block;

    margin-bottom: 10px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    opacity: 0.72;
}


.msn-service-title {
    margin: 0;

    font-family:
        "Georgia",
        "Times New Roman",
        serif;

    font-size:
        clamp(30px, 4.5vw, 48px);

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -0.7px;
}


.msn-service-header-desc {
    margin: 12px 0 0;

    font-size: 12px;

    font-weight: 400;

    letter-spacing: 0.4px;

    opacity: 0.82;
}


/* =========================================================
   HEADER DECORATION
========================================================= */

.msn-service-decoration {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    margin-top: 20px;
}


.msn-service-decoration span {
    width: 32px;
    height: 1px;

    background:
        rgba(255,255,255,0.35);
}


.msn-service-decoration i {
    width: 7px;
    height: 7px;

    display: block;

    border-radius: 50%;

    background: #ffffff;
}


/* =========================================================
   MAIN GRID
========================================================= */

.msn-service-container {
    width: min(1190px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    align-items: center;

    gap: 62px;
}


/* =========================================================
   IMAGE SIDE
========================================================= */

.msn-service-image-side {
    position: relative;

    animation:
        msnImageReveal
        1s
        cubic-bezier(.22,.61,.36,1)
        both;
}


.msn-service-image-shell {
    position: relative;

    overflow: hidden;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 25px 70px rgba(15, 40, 48, 0.17);
}


/* =========================================================
   IMAGE BORDER
========================================================= */

.msn-service-image-border {
    position: absolute;

    z-index: 4;

    inset: 13px;

    border:
        1px solid
        rgba(255,255,255,0.48);

    border-radius: 11px;

    pointer-events: none;
}


/* =========================================================
   SERVICE IMAGE
========================================================= */

.msn-service-image {
    display: block;

    width: 100%;

    height: 600px;

    object-fit: cover;

    transition:
        transform 0.9s cubic-bezier(.22,.61,.36,1),
        filter 0.6s ease;
}


.msn-service-image-shell:hover
.msn-service-image {
    transform:
        scale(1.045);

    filter:
        saturate(1.04)
        brightness(1.03);
}


/* =========================================================
   IMAGE GRADIENT
========================================================= */

.msn-service-image-gradient {
    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(8, 29, 36, 0.42),
            transparent 42%
        );
}


/* =========================================================
   IMAGE INFORMATION
========================================================= */

.msn-service-image-info {
    position: absolute;

    z-index: 6;

    left: 24px;
    bottom: 24px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 17px;

    border-radius: 12px;

    background:
        rgba(255,255,255,0.94);

    backdrop-filter:
        blur(14px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.16);

    transition:
        transform 0.35s ease;
}


.msn-service-image-shell:hover
.msn-service-image-info {
    transform:
        translateY(-6px);
}


/* =========================================================
   CHECK ICON
========================================================= */

.msn-service-check {
    display: grid;

    place-items: center;

    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    border-radius: 50%;

    background:
        #1c7b8d;

    color: #ffffff;

    font-size: 14px;

    font-weight: 800;
}


.msn-service-image-info-text strong {
    display: block;

    color: #19333b;

    font-size: 12px;

    font-weight: 700;
}


.msn-service-image-info-text span {
    display: block;

    margin-top: 2px;

    color: #7b898e;

    font-size: 9px;
}


/* =========================================================
   FLOATING TAG
========================================================= */

.msn-service-floating-tag {
    position: absolute;

    z-index: 10;

    top: 30px;
    right: -25px;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 10px 14px;

    border-radius: 10px;

    background:
        rgba(255,255,255,0.95);

    box-shadow:
        0 15px 35px rgba(20,48,58,0.13);

    animation:
        msnFloating
        4s
        ease-in-out
        infinite;
}


.msn-service-floating-icon {
    display: grid;

    place-items: center;

    width: 27px;
    height: 27px;

    border-radius: 7px;

    background:
        #e9f5f6;

    color:
        #1c7788;

    font-size: 13px;
}


.msn-service-floating-tag strong {
    display: block;

    color: #243a41;

    font-size: 10px;
}


.msn-service-floating-tag small {
    display: block;

    margin-top: 1px;

    color: #89959a;

    font-size: 8px;
}


/* =========================================================
   CONTENT CARD
========================================================= */

.msn-service-content {
    position: relative;

    padding: 38px 38px 34px;

    border-radius: 18px;

    background: #ffffff;

    border:
        1px solid
        rgba(20,55,64,0.055);

    box-shadow:
        0 18px 55px rgba(18,43,51,0.09);

    animation:
        msnContentReveal
        1s
        cubic-bezier(.22,.61,.36,1)
        0.15s
        both;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.msn-service-content:hover {
    transform:
        translateY(-5px);

    box-shadow:
        0 25px 65px rgba(18,43,51,0.13);
}


/* =========================================================
   CONTENT TITLE
========================================================= */

.msn-service-content-label {
    display: inline-block;

    margin-bottom: 9px;

    color:
        #1c7b8d;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.8px;
}


.msn-service-content-title {
    margin: 0;

    font-family:
        "Georgia",
        "Times New Roman",
        serif;

    color:
        #1c3038;

    font-size:
        clamp(27px, 3vw, 38px);

    line-height: 1.22;

    font-weight: 700;

    letter-spacing: -0.4px;
}


.msn-service-accent {
    width: 52px;

    height: 3px;

    margin: 17px 0 21px;

    border-radius: 50px;

    background:
        linear-gradient(
            90deg,
            #1c7b8d,
            #5ba4b2
        );
}


/* =========================================================
   CONTENT COPY
========================================================= */

.msn-service-copy p {
    margin: 0 0 14px;

    color:
        #68777d;

    font-size: 13px;

    line-height: 1.82;

    font-weight: 400;
}


.msn-service-copy strong {
    color:
        #2a464e;

    font-weight: 700;
}


/* =========================================================
   SERVICE GRID
========================================================= */

.msn-service-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 9px 14px;

    margin:
        21px 0;
}


.msn-service-item {
    display: flex;

    align-items: center;

    gap: 9px;

    padding: 10px;

    border:
        1px solid
        #edf1f2;

    border-radius: 9px;

    background:
        #fbfcfc;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.msn-service-item:hover {
    transform:
        translateY(-3px);

    border-color:
        #d4e8eb;

    box-shadow:
        0 8px 22px rgba(22,73,83,0.07);
}


/* =========================================================
   SERVICE ICON
========================================================= */

.msn-service-icon {
    display: grid;

    place-items: center;

    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    border-radius: 50%;

    background:
        #e8f4f5;

    color:
        #1c7b8d;

    font-size: 10px;

    font-weight: 900;
}


.msn-service-item strong {
    display: block;

    color:
        #30474e;

    font-size: 13px;
}


.msn-service-item small {
    display: block;

    margin-top: 2px;

    color:
        #8a969a;

    font-size: 8px;
}


/* =========================================================
   LOCATION CONTENT
========================================================= */

.msn-service-location {
    padding-top: 17px;

    border-top:
        1px solid #edf0f1;
}


.msn-service-location p {
    margin: 0;

    color:
        #718086;

    font-size: 11px;

    line-height: 1.75;
}


.msn-service-location strong {
    color:
        #2c4850;
}


/* =========================================================
   ACTION BUTTONS
========================================================= */

.msn-service-actions {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 22px;
}


/* =========================================================
   CALL BUTTON
========================================================= */

.msn-call-button {
    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 195px;

    padding: 10px 12px;

    border-radius: 9px;

    background:
        #182f37;

    color:
        #ffffff;

    text-decoration: none;

    box-shadow:
        0 9px 24px rgba(20,48,56,0.15);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.msn-call-button:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 14px 30px rgba(20,48,56,0.22);
}


.msn-call-symbol {
    display: grid;

    place-items: center;

    width: 30px;
    height: 30px;

    border-radius: 7px;

    background:
        rgba(255,255,255,0.10);

    font-size: 15px;
}


.msn-call-details {
    flex: 1;
}


.msn-call-details small {
    display: block;

    color:
        rgba(255,255,255,0.58);

    font-size: 8px;
}


.msn-call-details strong {
    display: block;

    margin-top: 2px;

    color:
        #ffffff;

    font-size: 12px;

    letter-spacing: 0.4px;
}


.msn-call-arrow {
    font-size: 17px;

    opacity: 0.55;

    transition:
        transform 0.3s ease;
}


.msn-call-button:hover
.msn-call-arrow {
    transform:
        translateX(4px);

    opacity: 0.9;
}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.msn-whatsapp-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 15px 19px;

    border-radius: 9px;

    background:
        #1c7b8d;

    color:
        #ffffff;

    text-decoration: none;

    font-size: 10px;

    font-weight: 700;

    box-shadow:
        0 9px 24px rgba(28,123,141,0.17);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.msn-whatsapp-button:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 14px 30px rgba(28,123,141,0.26);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes msnHeaderReveal {

    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes msnImageReveal {

    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


@keyframes msnContentReveal {

    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


@keyframes msnFloating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .msn-service-container {

        grid-template-columns: 1fr;

        max-width: 720px;

        gap: 38px;
    }


    .msn-service-image {
        height: 520px;
    }


    .msn-service-floating-tag {
        right: 18px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .msn-service-section {

        padding:
            0 14px 65px;
    }


    .msn-service-header {

        margin-left: -14px;
        margin-right: -14px;

        margin-bottom: 35px;

        padding:
            27px 15px 30px;
    }


    .msn-service-overline {

        font-size: 8px;

        letter-spacing: 2px;
    }


    .msn-service-title {

        font-size: 29px;
    }


    .msn-service-header-desc {

        font-size: 10px;

        line-height: 1.6;
    }


    .msn-service-container {

        gap: 26px;
    }


    .msn-service-image-shell {

        border-radius: 14px;
    }


    .msn-service-image {

        height: 400px;
    }


    .msn-service-image-info {

        left: 14px;
        bottom: 14px;

        padding: 10px 12px;
    }


    .msn-service-floating-tag {

        top: 15px;
        right: 12px;

        padding: 8px 10px;
    }


    .msn-service-content {

        padding:
            27px 20px 24px;

        border-radius: 14px;
    }


    .msn-service-content-title {

        font-size: 27px;
    }


    .msn-service-copy p {

        font-size: 12px;

        line-height: 1.8;
    }


    .msn-service-grid {

        grid-template-columns: 1fr;

        gap: 8px;
    }


    .msn-service-actions {

        flex-direction: column;

        align-items: stretch;
    }


    .msn-call-button {

        width: 100%;

        box-sizing: border-box;
    }


    .msn-whatsapp-button {

        width: 100%;

        box-sizing: border-box;
    }

}























/* =========================================================
   MALLESWARI SAFETY NETS
   COMMON SERVICE INFORMATION SECTION
   REUSABLE CSS FOR ALL SERVICE + LOCATION PAGES
========================================================= */


/* =========================================================
   MAIN SECTION
========================================================= */

.msn-service-info-section {
    position: relative;
    padding: 90px 22px 70px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 5% 20%,
            rgba(37, 99, 235, 0.055),
            transparent 28%
        ),
        radial-gradient(
            circle at 95% 75%,
            rgba(14, 116, 144, 0.055),
            transparent 30%
        ),
        #f7f9fc;

    font-family:
        "Poppins",
        "Montserrat",
        "Segoe UI",
        sans-serif;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.msn-service-container {
    width: min(1280px, 100%);
    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 30px;

    align-items: start;
}


/* =========================================================
   LEFT CONTENT CARD
========================================================= */

.msn-service-content-card {
    padding: 36px 34px 34px;

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.97);

    border:
        1px solid
        rgba(25, 70, 110, 0.055);

    box-shadow:
        0 20px 55px rgba(23, 47, 75, 0.09);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}


.msn-service-content-card:hover {
    transform:
        translateY(-6px);

    box-shadow:
        0 28px 70px rgba(23, 47, 75, 0.14);
}


/* =========================================================
   EYEBROW
========================================================= */

.msn-service-eyebrow {
    display: inline-flex;

    align-items: center;

    margin-bottom: 13px;

    padding: 7px 12px;

    border-radius: 50px;

    background:
        #edf4ff;

    color:
        #1459aa;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


/* =========================================================
   MAIN TITLE
========================================================= */

.msn-service-title {
    margin: 0;

    color:
        #111827;

    font-size:
        clamp(29px, 3vw, 40px);

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -0.8px;
}


.msn-service-title span {
    color:
        #145db5;
}


/* =========================================================
   TITLE DECORATION
========================================================= */

.msn-service-title-line {
    display: flex;

    align-items: center;

    gap: 10px;

    margin:
        21px 0 23px;
}


.msn-service-title-line span {
    width: 80px;

    height: 2px;

    background:
        #cbdcf2;
}


.msn-service-title-line i {
    display: grid;

    place-items: center;

    width: 28px;

    height: 28px;

    border-radius: 50%;

    background:
        #eaf3ff;

    color:
        #1461ba;

    font-size: 12px;

    font-style: normal;

    font-weight: 800;

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}


.msn-service-content-card:hover
.msn-service-title-line i {
    transform:
        rotate(360deg);

    background:
        #dcecff;
}


/* =========================================================
   CONTENT TEXT
========================================================= */

.msn-service-text p {
    margin:
        0 0 17px;

    color:
        #4b5563;

    font-size:
        13px;

    line-height:
        1.9;

    font-weight:
        400;
}


.msn-service-text strong {
    color:
        #172f4b;

    font-weight:
        700;

    transition:
        color 0.25s ease;
}


.msn-service-text strong:hover {
    color:
        #145db5;
}


/* =========================================================
   FEATURE GRID
========================================================= */

.msn-service-feature-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        10px;

    margin-top:
        23px;
}


/* =========================================================
   FEATURE ITEM
========================================================= */

.msn-service-feature {
    display: flex;

    align-items: center;

    gap:
        8px;

    min-height:
        43px;

    padding:
        9px 12px;

    border:
        1px solid
        #e5edf8;

    border-radius:
        50px;

    background:
        #f8fbff;

    color:
        #1256a5;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.msn-service-feature:hover {
    transform:
        translateY(-4px)
        scale(1.015);

    background:
        #eef6ff;

    border-color:
        #cbdff6;

    box-shadow:
        0 8px 20px rgba(25, 91, 164, 0.09);
}


/* =========================================================
   FEATURE CHECK ICON
========================================================= */

.msn-service-feature > span {
    display: grid;

    place-items: center;

    flex:
        0 0 22px;

    width:
        22px;

    height:
        22px;

    border-radius:
        50%;

    background:
        #dcecff;

    color:
        #125cad;

    font-size:
        11px;

    font-weight:
        900;

    transition:
        transform 0.3s ease;
}


.msn-service-feature:hover > span {
    transform:
        scale(1.15)
        rotate(8deg);
}


.msn-service-feature strong {
    font-size:
        10px;

    line-height:
        1.35;

    font-weight:
        700;
}


/* =========================================================
   RIGHT VISUAL COLUMN
========================================================= */

.msn-service-visual {
    display:
        flex;

    flex-direction:
        column;

    gap:
        22px;
}


/* =========================================================
   LARGE IMAGE WRAPPER
========================================================= */

.msn-service-image-wrapper {
    position:
        relative;

    min-height:
        650px;

    overflow:
        hidden;

    border-radius:
        22px;

    background:
        #e8eef5;

    box-shadow:
        0 24px 65px rgba(24, 52, 78, 0.15);

    transform:
        translateZ(0);
}


/* =========================================================
   MAIN IMAGE
========================================================= */

.msn-service-image {
    display:
        block;

    width:
        100%;

    height:
        650px;

    object-fit:
        cover;

    object-position:
        center;

    transition:
        transform 0.9s cubic-bezier(.22,.61,.36,1),
        filter 0.7s ease;
}


.msn-service-image-wrapper:hover
.msn-service-image {
    transform:
        scale(1.055);

    filter:
        saturate(1.08)
        brightness(1.03);
}


/* =========================================================
   IMAGE SHINE EFFECT
========================================================= */

.msn-service-image-shine {
    position:
        absolute;

    z-index:
        2;

    top:
        0;

    left:
        -100%;

    width:
        45%;

    height:
        100%;

    pointer-events:
        none;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.18),
            transparent
        );

    transform:
        skewX(-18deg);

    transition:
        left 0.8s ease;
}


.msn-service-image-wrapper:hover
.msn-service-image-shine {
    left:
        150%;
}


/* =========================================================
   IMAGE BADGE
========================================================= */

.msn-service-image-badge {
    position:
        absolute;

    z-index:
        5;

    left:
        22px;

    bottom:
        22px;

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    padding:
        12px 15px;

    border-radius:
        12px;

    background:
        rgba(255,255,255,0.94);

    backdrop-filter:
        blur(14px);

    box-shadow:
        0 12px 30px rgba(20, 46, 70, 0.17);

    transition:
        transform 0.35s ease;
}


.msn-service-image-wrapper:hover
.msn-service-image-badge {
    transform:
        translateY(-6px);
}


/* =========================================================
   BADGE ICON
========================================================= */

.msn-service-image-badge > span {
    display:
        grid;

    place-items:
        center;

    width:
        32px;

    height:
        32px;

    border-radius:
        50%;

    background:
        #e8f3ff;

    color:
        #1262b6;

    font-size:
        13px;

    font-weight:
        900;
}


/* =========================================================
   BADGE TEXT
========================================================= */

.msn-service-image-badge strong {
    display:
        block;

    color:
        #18334d;

    font-size:
        11px;
}


.msn-service-image-badge small {
    display:
        block;

    margin-top:
        2px;

    color:
        #718096;

    font-size:
        8px;
}


/* =========================================================
   LOCATION / INFORMATION CARD
========================================================= */

.msn-service-location-card {
    display:
        grid;

    grid-template-columns:
        52px 1fr;

    gap:
        16px;

    padding:
        27px 27px 25px;

    border-radius:
        18px;

    background:
        #ffffff;

    border:
        1px solid
        rgba(20, 70, 115, 0.06);

    box-shadow:
        0 16px 42px rgba(25, 53, 80, 0.08);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.msn-service-location-card:hover {
    transform:
        translateY(-5px);

    box-shadow:
        0 24px 55px rgba(25, 53, 80, 0.12);
}


/* =========================================================
   LOCATION ICON
========================================================= */

.msn-service-location-icon {
    display:
        grid;

    place-items:
        center;

    width:
        52px;

    height:
        52px;

    border-radius:
        14px;

    background:
        #eaf3ff;

    color:
        #1261b6;

    font-size:
        24px;

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}


.msn-service-location-card:hover
.msn-service-location-icon {
    transform:
        translateY(-3px)
        rotate(-5deg);

    background:
        #dcecff;
}


.msn-service-location-icon span {
    transform:
        translateY(-1px);
}


/* =========================================================
   LOCATION CONTENT TITLE
========================================================= */

.msn-service-location-content h3 {
    margin:
        0;

    color:
        #1458a9;

    font-size:
        19px;

    line-height:
        1.35;

    font-weight:
        750;
}


/* =========================================================
   SMALL ACCENT LINE
========================================================= */

.msn-service-small-line {
    width:
        42px;

    height:
        3px;

    margin:
        11px 0 14px;

    border-radius:
        20px;

    background:
        linear-gradient(
            90deg,
            #1767bb,
            #75a9df
        );
}


/* =========================================================
   LOCATION TEXT
========================================================= */

.msn-service-location-content p {
    margin:
        0 0 12px;

    color:
        #59636f;

    font-size:
        12px;

    line-height:
        1.8;
}


.msn-service-location-content p strong {
    color:
        #243f5b;
}


/* =========================================================
   AREA TAGS
========================================================= */

.msn-service-area-tags {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        7px;

    margin-top:
        15px;
}


.msn-service-area-tags span {
    padding:
        6px 10px;

    border-radius:
        50px;

    background:
        #f0f6fd;

    color:
        #24609d;

    font-size:
        12px;

    font-weight:
        700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.msn-service-area-tags span:hover {
    transform:
        translateY(-2px);

    background:
        #e1efff;

    box-shadow:
        0 5px 12px rgba(30, 92, 150, 0.08);
}


/* =========================================================
   BOTTOM HIGHLIGHTS
========================================================= */

.msn-service-highlights {
    width:
        min(1280px, 100%);

    margin:
        30px auto 0;

    display:
        grid;

    grid-template-columns:
        repeat(5, 1fr);

    background:
        rgba(255,255,255,0.88);

    border:
        1px solid
        #e7edf4;

    border-radius:
        18px;

    box-shadow:
        0 12px 35px rgba(26, 53, 79, 0.055);

    overflow:
        hidden;
}


/* =========================================================
   SINGLE HIGHLIGHT
========================================================= */

.msn-service-highlight {
    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    min-height:
        85px;

    padding:
        15px 17px;

    border-right:
        1px solid #e6edf4;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.msn-service-highlight:last-child {
    border-right:
        none;
}


.msn-service-highlight:hover {
    background:
        #f5f9ff;

    transform:
        translateY(-3px);
}


/* =========================================================
   HIGHLIGHT ICON
========================================================= */

.msn-highlight-icon {
    display:
        grid;

    place-items:
        center;

    flex:
        0 0 38px;

    width:
        38px;

    height:
        38px;

    border:
        1px solid #cfe2f8;

    border-radius:
        50%;

    background:
        #f0f6fd;

    color:
        #1461b5;

    font-size:
        15px;

    font-weight:
        800;

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}


.msn-service-highlight:hover
.msn-highlight-icon {
    transform:
        rotate(8deg)
        scale(1.08);

    background:
        #e3f0ff;
}


/* =========================================================
   HIGHLIGHT TEXT
========================================================= */

.msn-service-highlight strong {
    display:
        block;

    margin-bottom:
        3px;

    color:
        #19599f;

    font-size:
        10px;

    font-weight:
        800;
}


.msn-service-highlight small {
    display:
        block;

    color:
        #737e89;

    font-size:
        8px;

    line-height:
        1.45;
}


/* =========================================================
   SCROLL REVEAL - LEFT
========================================================= */

.msn-reveal-left {
    opacity:
        0;

    transform:
        translateX(-55px);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(.22,.61,.36,1);
}


/* =========================================================
   SCROLL REVEAL - RIGHT
========================================================= */

.msn-reveal-right {
    opacity:
        0;

    transform:
        translateX(55px);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(.22,.61,.36,1);
}


/* =========================================================
   ACTIVE REVEAL
========================================================= */

.msn-reveal-left.msn-is-visible,
.msn-reveal-right.msn-is-visible {
    opacity:
        1;

    transform:
        translateX(0);
}


/* =========================================================
   HIGHLIGHT INITIAL STATE
========================================================= */

.msn-service-highlight {
    opacity:
        0;

    transform:
        translateY(25px);

    transition:
        opacity 0.65s ease,
        transform 0.65s ease,
        background 0.3s ease;
}


/* =========================================================
   HIGHLIGHT ACTIVE STATE
========================================================= */

.msn-service-highlight.msn-is-visible {
    opacity:
        1;

    transform:
        translateY(0);
}


/* =========================================================
   STAGGER ANIMATION
========================================================= */

.msn-service-highlight:nth-child(1) {
    transition-delay:
        0.05s;
}


.msn-service-highlight:nth-child(2) {
    transition-delay:
        0.12s;
}


.msn-service-highlight:nth-child(3) {
    transition-delay:
        0.19s;
}


.msn-service-highlight:nth-child(4) {
    transition-delay:
        0.26s;
}


.msn-service-highlight:nth-child(5) {
    transition-delay:
        0.33s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .msn-service-container {
        grid-template-columns:
            1fr;

        max-width:
            850px;
    }


    .msn-service-image-wrapper {
        min-height:
            620px;
    }


    .msn-service-image {
        height:
            620px;
    }


    .msn-service-highlights {
        grid-template-columns:
            repeat(3, 1fr);

        max-width:
            850px;
    }


    .msn-service-highlight:nth-child(3) {
        border-right:
            none;
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 800px) {

    .msn-service-highlights {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .msn-service-highlight:nth-child(3) {
        border-right:
            1px solid #e6edf4;
    }


    .msn-service-highlight:nth-child(2),
    .msn-service-highlight:nth-child(4) {
        border-right:
            none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .msn-service-info-section {
        padding:
            60px 14px 50px;
    }


    .msn-service-container {
        gap:
            22px;
    }


    /* LEFT CARD */

    .msn-service-content-card {
        padding:
            27px 20px 24px;

        border-radius:
            16px;
    }


    .msn-service-eyebrow {
        font-size:
            8px;

        letter-spacing:
            1.2px;
    }


    .msn-service-title {
        font-size:
            28px;

        line-height:
            1.25;
    }


    .msn-service-title-line {
        margin:
            17px 0 20px;
    }


    .msn-service-title-line span {
        width:
            55px;
    }


    .msn-service-text p {
        font-size:
            12px;

        line-height:
            1.82;
    }


    /* FEATURES */

    .msn-service-feature-grid {
        grid-template-columns:
            1fr;

        gap:
            8px;
    }


    .msn-service-feature {
        border-radius:
            10px;

        padding:
            10px 11px;
    }


    /* IMAGE */

    .msn-service-visual {
        gap:
            18px;
    }


    .msn-service-image-wrapper {
        min-height:
            430px;

        border-radius:
            16px;
    }


    .msn-service-image {
        height:
            430px;
    }


    /* IMAGE BADGE */

    .msn-service-image-badge {
        left:
            13px;

        bottom:
            13px;

        padding:
            9px 11px;
    }


    .msn-service-image-badge > span {
        width:
            28px;

        height:
            28px;
    }


    .msn-service-image-badge strong {
        font-size:
            9px;
    }


    .msn-service-image-badge small {
        font-size:
            7px;
    }


    /* LOCATION CARD */

    .msn-service-location-card {
        grid-template-columns:
            40px 1fr;

        gap:
            11px;

        padding:
            21px 18px;

        border-radius:
            15px;
    }


    .msn-service-location-icon {
        width:
            40px;

        height:
            40px;

        border-radius:
            10px;

        font-size:
            19px;
    }


    .msn-service-location-content h3 {
        font-size:
            17px;
    }


    .msn-service-location-content p {
        font-size:
            14px;

        line-height:
            1.75;
    }


    /* TAGS */

    .msn-service-area-tags span {
        font-size:
            11px;

        padding:
            5px 8px;
    }


    /* HIGHLIGHTS */

    .msn-service-highlights {
        grid-template-columns:
            1fr;

        border-radius:
            15px;
    }


    .msn-service-highlight {
        border-right:
            none;

        border-bottom:
            1px solid #e6edf4;

        min-height:
            70px;
    }


    .msn-service-highlight:nth-child(2),
    .msn-service-highlight:nth-child(4) {
        border-right:
            none;
    }


    .msn-service-highlight:last-child {
        border-bottom:
            none;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .msn-service-info-section {
        padding:
            45px 10px 40px;
    }


    .msn-service-content-card {
        padding:
            23px 16px 21px;
    }


    .msn-service-title {
        font-size:
            25px;
    }


    .msn-service-text p {
        font-size:
            14px;
    }


    .msn-service-image-wrapper {
        min-height:
            370px;
    }


    .msn-service-image {
        height:
            370px;
    }


    .msn-service-location-card {
        padding:
            18px 14px;
    }

}


/* =========================================================
   REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .msn-reveal-left,
    .msn-reveal-right,
    .msn-service-highlight,
    .msn-service-image,
    .msn-service-image-shine,
    .msn-service-feature,
    .msn-service-content-card,
    .msn-service-location-card,
    .msn-service-image-badge,
    .msn-highlight-icon {

        transition:
            none !important;

        animation:
            none !important;

        transform:
            none !important;
    }

}









/* ==================== FAQ SECTION ===================== */
/* =========================================================
   MALLESWARI SAFETY NETS
   COMMON FAQ SECTION
   REUSABLE FOR ALL SERVICE / LOCATION PAGES
========================================================= */


/* =========================================================
   MAIN FAQ SECTION
========================================================= */

.msn-faq-section {
    position: relative;

    padding: 95px 22px 85px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 18%,
            rgba(30, 99, 190, 0.06),
            transparent 27%
        ),
        radial-gradient(
            circle at 92% 80%,
            rgba(15, 118, 150, 0.055),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #f4f7fb 100%
        );

    font-family:
        "Poppins",
        "Montserrat",
        "Segoe UI",
        sans-serif;
}


/* Decorative background */

.msn-faq-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -220px;
    right: -150px;

    border-radius: 50%;

    border:
        1px solid
        rgba(31, 101, 181, 0.07);

    box-shadow:
        0 0 0 45px rgba(31, 101, 181, 0.025),
        0 0 0 90px rgba(31, 101, 181, 0.018);

    pointer-events: none;
}


.msn-faq-section::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    left: -170px;
    bottom: -180px;

    border-radius: 50%;

    background:
        rgba(26, 103, 182, 0.025);

    pointer-events: none;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.msn-faq-container {
    position: relative;

    z-index: 2;

    width:
        min(1050px, 100%);

    margin:
        auto;
}


/* =========================================================
   FAQ HEADER
========================================================= */

.msn-faq-header {
    max-width:
        850px;

    margin:
        0 auto 48px;

    text-align:
        center;
}


/* =========================================================
   EYEBROW
========================================================= */

.msn-faq-eyebrow {
    display:
        inline-flex;

    align-items:
        center;

    margin-bottom:
        14px;

    padding:
        7px 13px;

    border:
        1px solid
        #d9e7f8;

    border-radius:
        50px;

    background:
        rgba(239, 246, 255, 0.8);

    color:
        #155aa7;

    font-size:
        9px;

    font-weight:
        800;

    letter-spacing:
        2px;
}


/* =========================================================
   TITLE
========================================================= */

.msn-faq-title {
    margin:
        0;

    color:
        #172536;

    font-family:
        "Georgia",
        "Times New Roman",
        serif;

    font-size:
        clamp(29px, 4vw, 44px);

    line-height:
        1.2;

    font-weight:
        700;

    letter-spacing:
        -0.6px;
}


.msn-faq-title span {
    color:
        #155eae;
}


/* =========================================================
   INTRO
========================================================= */

.msn-faq-intro {
    max-width:
        760px;

    margin:
        17px auto 0;

    color:
        #687684;

    font-size:
        13px;

    line-height:
        1.85;
}


.msn-faq-intro strong {
    color:
        #304b67;
}


/* =========================================================
   HEADER DECORATION
========================================================= */

.msn-faq-heading-line {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        9px;

    margin-top:
        22px;
}


.msn-faq-heading-line span {
    width:
        70px;

    height:
        1px;

    background:
        #c9d9ea;
}


.msn-faq-heading-line i {
    display:
        grid;

    place-items:
        center;

    width:
        27px;

    height:
        27px;

    border-radius:
        50%;

    background:
        #e9f3ff;

    color:
        #1761b1;

    font-size:
        12px;

    font-style:
        normal;

    font-weight:
        800;

    box-shadow:
        0 5px 15px rgba(30, 93, 164, 0.08);
}


/* =========================================================
   FAQ GRID
========================================================= */

.msn-faq-grid {
    display:
        grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        14px;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.msn-faq-item {
    position:
        relative;

    overflow:
        hidden;

    border:
        1px solid
        #e4ebf3;

    border-radius:
        14px;

    background:
        rgba(255,255,255,0.96);

    box-shadow:
        0 9px 28px rgba(22, 49, 76, 0.055);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}


.msn-faq-item:hover {
    transform:
        translateY(-4px);

    border-color:
        #d0e1f4;

    box-shadow:
        0 17px 38px rgba(22, 49, 76, 0.10);
}


.msn-faq-item.msn-faq-active {
    border-color:
        #c5dcf5;

    background:
        #ffffff;

    box-shadow:
        0 18px 42px rgba(22, 67, 112, 0.11);
}


/* =========================================================
   QUESTION BUTTON
========================================================= */

.msn-faq-question {
    position:
        relative;

    width:
        100%;

    display:
        grid;

    grid-template-columns:
        36px 1fr 34px;

    align-items:
        center;

    gap:
        10px;

    padding:
        18px 18px;

    border:
        none;

    outline:
        none;

    background:
        transparent;

    color:
        #1b334c;

    text-align:
        left;

    cursor:
        pointer;

    font-family:
        inherit;
}


/* =========================================================
   QUESTION NUMBER
========================================================= */

.msn-faq-number {
    display:
        grid;

    place-items:
        center;

    width:
        32px;

    height:
        32px;

    border-radius:
        10px;

    background:
        #edf5ff;

    color:
        #1761ae;

    font-size:
        9px;

    font-weight:
        800;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.msn-faq-item:hover
.msn-faq-number,
.msn-faq-active
.msn-faq-number {
    background:
        #1764b4;

    color:
        #ffffff;

    transform:
        scale(1.05);
}


/* =========================================================
   QUESTION TEXT
========================================================= */

.msn-faq-question-text {
    padding-right:
        4px;

    color:
        #243b53;

    font-size:
        12px;

    line-height:
        1.5;

    font-weight:
        700;
}


/* =========================================================
   PLUS ICON
========================================================= */

.msn-faq-icon {
    display:
        grid;

    place-items:
        center;

    width:
        32px;

    height:
        32px;

    border-radius:
        50%;

    background:
        #f0f6fd;

    color:
        #175ea9;

    font-size:
        19px;

    font-weight:
        400;

    line-height:
        1;

    transition:
        transform 0.4s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.msn-faq-active
.msn-faq-icon {
    transform:
        rotate(45deg);

    background:
        #1764b4;

    color:
        #ffffff;
}


/* =========================================================
   ANSWER
========================================================= */

.msn-faq-answer {
    max-height:
        0;

    overflow:
        hidden;

    transition:
        max-height 0.45s cubic-bezier(.22,.61,.36,1);
}


/* =========================================================
   ANSWER INNER
========================================================= */

.msn-faq-answer-inner {
    padding:
        0 20px 20px 64px;
}


.msn-faq-answer-inner::before {
    content: "";

    display:
        block;

    width:
        100%;

    height:
        1px;

    margin-bottom:
        14px;

    background:
        #edf1f6;
}


.msn-faq-answer-inner p {
    margin:
        0;

    color:
        #687684;

    font-size:
        11px;

    line-height:
        1.85;
}


.msn-faq-answer-inner strong {
    color:
        #294762;

    font-weight:
        700;
}


/* =========================================================
   CTA
========================================================= */

.msn-faq-cta {
    display:
        flex;

    align-items:
        center;

    gap:
        16px;

    margin-top:
        35px;

    padding:
        20px 22px;

    border:
        1px solid
        #dce8f5;

    border-radius:
        16px;

    background:
        linear-gradient(
            110deg,
            #ffffff,
            #f3f8fe
        );

    box-shadow:
        0 14px 35px rgba(24, 58, 91, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.msn-faq-cta:hover {
    transform:
        translateY(-5px);

    box-shadow:
        0 21px 48px rgba(24, 58, 91, 0.11);
}


/* =========================================================
   CTA ICON
========================================================= */

.msn-faq-cta-icon {
    display:
        grid;

    place-items:
        center;

    flex:
        0 0 42px;

    width:
        42px;

    height:
        42px;

    border-radius:
        50%;

    background:
        #e5f1ff;

    color:
        #1763b3;

    font-size:
        16px;

    font-weight:
        800;
}


/* =========================================================
   CTA CONTENT
========================================================= */

.msn-faq-cta-content {
    flex:
        1;
}


.msn-faq-cta-content span {
    display:
        block;

    margin-bottom:
        4px;

    color:
        #728194;

    font-size:
        8px;

    font-weight:
        800;

    letter-spacing:
        1.3px;
}


.msn-faq-cta-content strong {
    display:
        block;

    color:
        #1e3c59;

    font-size:
        12px;

    line-height:
        1.45;

    font-weight:
        750;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.msn-faq-cta-button {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        9px;

    padding:
        12px 16px;

    border-radius:
        9px;

    background:
        #1764b4;

    color:
        #ffffff;

    text-decoration:
        none;

    white-space:
        nowrap;

    font-size:
        9px;

    font-weight:
        750;

    box-shadow:
        0 9px 22px rgba(23, 100, 180, 0.18);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.msn-faq-cta-button:hover {
    transform:
        translateY(-3px);

    background:
        #0f4f95;

    box-shadow:
        0 13px 28px rgba(23, 100, 180, 0.25);
}


.msn-faq-cta-button span {
    font-size:
        15px;

    transition:
        transform 0.3s ease;
}


.msn-faq-cta-button:hover span {
    transform:
        translateX(4px);
}


/* =========================================================
   FAQ REVEAL ANIMATION
========================================================= */

.msn-faq-reveal {
    opacity:
        0;

    transform:
        translateY(28px);

    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(.22,.61,.36,1);
}


.msn-faq-reveal.msn-faq-visible {
    opacity:
        1;

    transform:
        translateY(0);
}


/* =========================================================
   STAGGER EFFECT
========================================================= */

.msn-faq-item:nth-child(1) {
    transition-delay:
        0.03s;
}

.msn-faq-item:nth-child(2) {
    transition-delay:
        0.08s;
}

.msn-faq-item:nth-child(3) {
    transition-delay:
        0.13s;
}

.msn-faq-item:nth-child(4) {
    transition-delay:
        0.18s;
}

.msn-faq-item:nth-child(5) {
    transition-delay:
        0.23s;
}

.msn-faq-item:nth-child(6) {
    transition-delay:
        0.28s;
}

.msn-faq-item:nth-child(7) {
    transition-delay:
        0.33s;
}

.msn-faq-item:nth-child(8) {
    transition-delay:
        0.38s;
}

.msn-faq-item:nth-child(9) {
    transition-delay:
        0.43s;
}

.msn-faq-item:nth-child(10) {
    transition-delay:
        0.48s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .msn-faq-section {
        padding:
            75px 18px 65px;
    }


    .msn-faq-grid {
        grid-template-columns:
            1fr;
    }


    .msn-faq-header {
        margin-bottom:
            35px;
    }


    .msn-faq-cta {
        flex-wrap:
            wrap;
    }


    .msn-faq-cta-button {
        margin-left:
            auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .msn-faq-section {
        padding:
            60px 13px 55px;
    }


    .msn-faq-header {
        margin-bottom:
            28px;
    }


    .msn-faq-eyebrow {
        font-size:
            8px;

        letter-spacing:
            1.4px;
    }


    .msn-faq-title {
        font-size:
            28px;

        line-height:
            1.25;
    }


    .msn-faq-intro {
        font-size:
            11px;

        line-height:
            1.75;
    }


    .msn-faq-heading-line {
        margin-top:
            17px;
    }


    .msn-faq-heading-line span {
        width:
            48px;
    }


    .msn-faq-grid {
        gap:
            10px;
    }


    .msn-faq-item {
        border-radius:
            12px;
    }


    .msn-faq-question {
        grid-template-columns:
            30px 1fr 30px;

        gap:
            8px;

        padding:
            14px 13px;
    }


    .msn-faq-number {
        width:
            28px;

        height:
            28px;

        border-radius:
            8px;

        font-size:
            8px;
    }


    .msn-faq-question-text {
        font-size:
            10.5px;

        line-height:
            1.45;
    }


    .msn-faq-icon {
        width:
            28px;

        height:
            28px;

        font-size:
            17px;
    }


    .msn-faq-answer-inner {
        padding:
            0 13px 16px 51px;
    }


    .msn-faq-answer-inner p {
        font-size:
            10px;

        line-height:
            1.78;
    }


    .msn-faq-cta {
        align-items:
            flex-start;

        gap:
            12px;

        margin-top:
            25px;

        padding:
            17px 14px;

        border-radius:
            13px;
    }


    .msn-faq-cta-icon {
        flex:
            0 0 35px;

        width:
            35px;

        height:
            35px;

        font-size:
            13px;
    }


    .msn-faq-cta-content span {
        font-size:
            7px;
    }


    .msn-faq-cta-content strong {
        font-size:
            10px;
    }


    .msn-faq-cta-button {
        width:
            100%;

        margin-left:
            47px;

        padding:
            11px 14px;

        font-size:
            8px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .msn-faq-section {
        padding:
            48px 10px;
    }


    .msn-faq-title {
        font-size:
            25px;
    }


    .msn-faq-question {
        grid-template-columns:
            27px 1fr 27px;

        padding:
            12px 10px;
    }


    .msn-faq-number,
    .msn-faq-icon {
        width:
            26px;

        height:
            26px;
    }


    .msn-faq-question-text {
        font-size:
            10px;
    }


    .msn-faq-answer-inner {
        padding-left:
            45px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.msn-faq-question:focus-visible {
    outline:
        2px solid #4d91d4;

    outline-offset:
        -2px;
}


@media (prefers-reduced-motion: reduce) {

    .msn-faq-reveal,
    .msn-faq-item,
    .msn-faq-icon,
    .msn-faq-answer,
    .msn-faq-cta,
    .msn-faq-cta-button,
    .msn-faq-cta-button span,
    .msn-faq-number {

        transition:
            none !important;

        animation:
            none !important;

    }

}