/*--======================================== Header Top Section css ===========================================-*/
.header-top {
    background-color: #5095cc;
    color: white;
    padding: 12px 0;
    width: 100%;
}
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 0px;
    flex-direction: column;
}
.left-part {
    flex: 1;
    min-width: 300px;
    order: 2;
}
.right-part {
    flex: 0 0 auto;
    order: 1;
}
.left-part p {
    font-size: 14px;
    line-height: 1;
    color: white;
}
.emergency-label {
    font-weight: bold;
    margin-right: 8px;
}
.emergency-link {
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-left: 2px;
    padding: 0 10px;
    font-size: 16px;
    animation: colorChange 2s infinite;
    position: relative;
    z-index: 10;
    cursor: pointer;
    pointer-events: auto;
}
@keyframes colorChange {
    0%,
    100% {
        color: #000;
    }
    50% {
        color: #ff0000;
    }
}

.emergency-link:hover {
    transform: scale(1.05);
    transition: transform 0.2s;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .left-part,
    .right-part {
        width: 100%;
    }
}

@media (max-width: 430px) {
    .header-top {
        display: none !important;
    }
}
/* @media (max-width: 380px) {
    .left-part p {
        font-size: 10px;
        line-height: 1rem;
    }
    .emergency-link {
        font-size: 10px;
        padding-right: 5px;
    }
} */
/* @media (max-width: 330px) {
    .left-part p {
        font-size: 10px;
        line-height: 1rem;
        padding-right: 5px;
    }
    .emergency-link {
        font-size: 10px;
    }
} */

html {
    scroll-behavior: smooth;
}

/*--======================================== Header Top Section css end ===========================================-*/

.rs-sbg {
    background-position: inherit;
}

* {
    user-select: text !important;
}

rs-module rs-layer,
rs-module .rs-layer {
    white-space: normal !important;
}

.slick-prev:before,
.slick-next:before {
    color: #5095cc !important;
    font-size: 56px !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    opacity: 1 !important;
}

.slider_txt {
    font-size: 23px !important;
    width: 600px !important;
    color: white;
}
.mkdf-st-title {
    font-family: "poppins";
    font-weight: 700;
}
@media screen and (max-width: 1000px) {
    .slider_txt {
        font-size: 35px !important;
        width: 700px !important;
        margin: 0px 0 !important;
    }

    .abouttxt {
        width: 100% !important;
    }

    .abouttxt p {
        font-size: 20px !important;
        padding: 20px;
    }

    .mkdf-elements-holder.mkdf-responsive-mode-1024.mkdf-two-columns
        .mkdf-eh-item {
        display: flex;
        justify-content: center;
    }

    .mkdf-testimonial-content h6,
    .mkdf-testimonial-content span {
        font-size: 25px;
    }

    .mkdf-blog-list-holder.mkdf-bl-standard.mkdf-bl-four-columns .mkdf-bl-item {
        width: 100% !important;
    }

    .blog-mobile {
        font-size: 27px !important;
    }

    .read_btn {
        font-size: 15px !important;
    }
}

.mkdf-elements-holder .mkdf-eh-item {
    vertical-align: middle;
}

.mkdf-blog-list-holder.mkdf-bl-standard.mkdf-bl-four-columns .mkdf-bl-item {
    width: 32.33%;
}

.mkdf-blog-list-holder.mkdf-bl-standard:not(.mkdf-bl-one-column) .mkdf-bl-item {
    /* float: unset; */
}

@media only screen and (min-device-width: 1400px) and (max-device-width: 1920px) {
    .about-text {
        padding: 0% 0% 4.4% 3% !important;
    }
}

.slick-prev::before {
    content: "<" !important;
}

.slick-next:before {
    content: ">" !important;
}

/* Sidebar container */
.icon-bar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999999999;
    display: flex;
    flex-direction: column;
    width: 60px;
    gap: 0;
}

/* Icon block */
.icon-bar a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 18px;
    width: 60px;
    height: 60px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: visible;
    color: white;
    text-decoration: none;
}

/* On hover: expand to RIGHT side */
.icon-bar a:hover {
    width: 180px;
    transform: translateX(
        -120px
    ); /* stretches to the LEFT, showing label on RIGHT */
}

/* Label text appears on RIGHT side */
.icon-bar a .label {
    position: absolute;
    right: 16px; /* label on right side of expanded block */
    left: auto;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease,
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: white;
}

/* Reveal label */
.icon-bar a:hover .label {
    opacity: 1;
    transform: translateX(0);
}

/* Icon image */
.icon-bar img {
    width: 24px;
    height: 24px;
    transition: all 0.4s ease;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 2;
}

.icon-bar a:hover img {
    transform: scale(1.1);
}

/* Colors */
.whatsapp {
    background: #ff0000;
}

.whatsapp:hover {
    background: #ff0000;
}

.facebook {
    background: #5095cc;
}

.facebook:hover {
    background: #3a7dac;
}

.twitter {
    background: #5095cc;
}

.twitter:hover {
    background: #3a7dac;
}

.linkedin {
    background: #5095cc;
}

.linkedin:hover {
    background: #3a7dac;
}

.trustpilot {
    background: #5095cc;
}

.trustpilot:hover {
    background: #3a7dac;
}

/* Add shadow on hover */
.icon-bar a:hover {
    box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile */
@media (max-width: 768px) {
    .icon-bar {
        width: 50px;
    }

    .icon-bar a {
        width: 50px;
        height: 50px;
    }

    .icon-bar a:hover {
        width: 160px;
        transform: translateX(-110px);
    }

    .icon-bar a .label {
        right: 14px;
        font-size: 13px;
    }
}
/* Zoom animation (if you use it somewhere else) */
/* .zoom-in-out-box {
    margin: 24px;
    animation: zoom-in-zoom-out 1s ease infinite;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
} */

/*---========================= Services CSS ====================== */
.about-img {
    margin-top: 70px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-family: "poppins";
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 190px;
    height: 2px;
    background-color: #5095cc;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #000;
    max-width: 700px;
    margin: 0 auto;
}

.services-slider {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    flex: 0 0 100%;
    grid-auto-rows: 1fr; /* KEY FIX: Makes all rows equal height */
}

.service-card {
    background: #f3f9ff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #5095cc;
    display: flex;
    flex-direction: column;
    height: 100%; /* KEY FIX: Fill the grid cell completely */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 5px;
    border: 1px solid #5095cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.service-icon img {
    max-width: 50px;
    max-height: 50px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0px;
    color: #000;
    min-height: 3em; /* KEY FIX: Reserve space for 2-line titles */
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card p {
    color: #000;
    font-size: 0.95rem;
    margin-bottom: 10px;
    flex-grow: 1; /* KEY FIX: Push button to bottom */
    line-height: 1.5;
}

.read-more-btn {
    display: inline-block;
    padding: 10px 15px;
    background: transparent;
    color: #000;
    border: 2px solid #5095cc;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: auto; /* KEY FIX: Stays at bottom */
}

.read-more-btn:hover {
    background: #5095cc;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(57, 73, 171, 0.3);
    text-decoration: none;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #5095cc;
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(57, 73, 171, 0.3);
}

.slider-btn:hover:not(:disabled) {
    background: #3d7ab8;
    transform: scale(1.05);
}

.slider-btn:disabled {
    background: #b0b0b0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.slider-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #c5cae9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #5095cc;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* Single card slider for mobile devices */
@media (max-width: 430px) {
    .container {
        padding: 20px 10px;
    }
    .services-slider {
        position: relative;
        padding: 0 45px; /* Space for side buttons */
    }
    .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        font-weight: 700;
        font-family: "poppins";
    }
    .section-header p {
        font-size: 14px;
        line-height: 1.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 100vw; /* Only 1 card visible at a time */
    }
    .service-card {
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
    }
    /* Position buttons on left and right sides */
    .slider-controls {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        justify-content: space-between;
    }
    .slider-btn {
        width: 35px;
        height: 35px;
        pointer-events: all;
        z-index: 10;
    }
    .slider-indicators {
        display: none;
    }
    .service-icon {
        width: 30px;
        height: 30px;
        margin: 0 auto 5px;
    }

    .service-icon img {
        max-width: 40px;
        max-height: 40px;
    }

    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
        min-height: 1em;
    }

    .service-card p {
        display: none;
    }

    .read-more-btn {
        display: inline-block;
        padding: 8px 12px;
        background: transparent;
        color: #000;
        border: 1px solid #5095cc;
        border-radius: 30px;
        font-weight: 600;
        margin-top: auto;
        font-size: 10px;
    }
}

@media (max-width: 380px) {
    .services-slider {
        padding: 0 55px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-card h3 {
        font-size: 1.15rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .services-grid {
        gap: 100vw; /* Only 1 card visible at a time */
    }
}

@media (max-width: 330px) {
    .services-slider {
        padding: 0 50px;
    }

    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .slider-controls {
        padding: 0 5px;
    }

    .services-grid {
        gap: 100vw; /* Only 1 card visible at a time */
    }

    .service-card {
        padding: 20px 12px;
    }

    .service-card h3 {
        font-size: 1.1rem;
        min-height: 2.5em;
    }

    .service-card p {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .read-more-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .section-header h2::after {
        width: 140px;
    }

    .section-header p {
        font-size: 0.9rem;
    }
}

/*---======================================================= Services Section CSS Ends ==================================================-*/

/*---========================================================== Testimonial CSS ==================================================-*/

/* Container */
.testimonial-container {
    display: flex;
    background-color: #ffffff;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    border-radius: 8px; /* Optional rounded corners */
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    gap: 40px;
}

/* Left Side: Image */
.testimonial-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 90px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right Side: Content */
.testimonial-content {
    flex: 1.2;
    padding: 10px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start; /* ← forces everything to align left */
    width: 100%; /* forces all internal blocks to align uniformly */
}

/* Heading */
.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 30px;
    font-family: "Poppins";
}

/* Quote Icon */
.quote-icon {
    margin-bottom: 10px;
}

.quote-icon img {
    width: 48px;
    height: 48px;
    filter: brightness(0) saturate(100%) invert(55%) sepia(48%) saturate(1526%)
        hue-rotate(182deg) brightness(88%) contrast(92%);
}

/* --- SLIDER STRUCTURE --- */

/* The Window we look through */
.slider-viewport {
    overflow: hidden;
    width: 100%;
}

/* The Moving Track */
.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); /* Smooth slide */
    width: 100%;
}

/* Individual Slide - Renamed to avoid conflicts */
.test-slide {
    min-width: 100%;
    flex: 0 0 100%; /* Don't shrink */
    padding-right: 20px; /* Spacing prevents text touching edge during slide */
    background-color: #f7fcffff;
    padding: 10px;
    border-radius: 20px;
}

/* Text Styles */
.quote-text {
    font-size: 1.3rem;
    line-height: 1.2;
    color: #000;
    margin-bottom: 30px;
    margin-top: 10px;
    text-align: left;
    font-family: "Roboto" !important;
    max-width: 580px;
}

.author-info {
    margin-bottom: 10px;
    text-align: left;
}

.author-name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
    font-family: "Roboto" !important;
}

.author-role {
    display: block;
    font-size: 0.9rem;
    color: #000;
    font-weight: 500;
    font-family: "Roboto" !important;
}

/* Controls Container */
.controls {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 30px;
    gap: 90px;
}

/* Dots - Renamed to avoid conflicts */
.test-dots {
    display: flex;
    gap: 10px;
}

.test-dot {
    width: 12px;
    height: 12px;
    background-color: #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.test-dot.active {
    background-color: #5095cc;
}

.test-dot:hover {
    background-color: #ff8a80;
}

/* Arrows */
.arrows {
    display: flex;
    gap: 15px;
}

.arrow-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: color 0.3s ease;
}

.arrow-btn:hover {
    color: #5095cc;
}

.arrow-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 968px) {
    .testimonial-container {
        flex-direction: column;
        max-width: 500px;
    }

    .testimonial-image {
        height: 300px;
        width: 100%;
    }

    .testimonial-content {
        padding: 40px 30px;
        flex: 1;
    }

    .quote-text {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .testimonial-container {
        gap: 20px;
    }
    .testimonial-image {
        height: 220px;
    }
    .quote-icon img {
        width: 38px;
        height: 38px;
    }
    .quote-text {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    .test-dots {
        display: none;
    }
}

/*---====================================================== Testimonial CSS ends =========================================================-*/

/*--================================================================== Homepage Banner Section =================================-*/

/* Hero Slider Container */
.hero-slider {
    position: relative;
    width: 100%;
    height: 620px;
    overflow: hidden;
}

/* Slides Container */
.slides-container {
    display: flex;
    transition: transform 0.6s ease-in-out;
    height: 100%;
}

/* Individual Slide */
.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

/* Background Image */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 3;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    color: white;
}

/* Title with Background */
.slide-title {
    font-size: 60px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    padding: 10px;
    display: inline-block;
    font-family: "poppins";
}

.slide-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    color: white;
    font-family: "Roboto";
}

/* Buttons */
.slide-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #5095cc;
    color: white;
    border: 2px solid #5095cc;
}

.btn-primary:hover {
    background-color: #3d7ab8;
    border-color: #3d7ab8;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #000;
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.6);
    color: #5095cc;
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Dots Navigation */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-slider {
        height: 550px;
    }

    .slide-content {
        padding: 0 75px;
    }

    .slide-title {
        font-size: 60px;
    }

    .slide-subtitle {
        font-size: 20px;
    }

    .slider-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }

    .slide-content {
        padding: 0 40px;
    }

    .slide-title {
        font-size: 45px;
        padding: 15px;
    }

    .slide-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .slide-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        padding: 12px 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 400px;
    }

    .slide-content {
        padding: 0 20px;
    }

    .slide-title {
        font-size: 28px;
        padding: 10px;
        line-height: 1.1;
        margin-bottom: 0;
    }

    .slide-subtitle {
        font-size: 16px;
    }

    .btn {
        padding: 10px 15px;
        font-size: 12px;
    }
    .slider-dots {
        display: none;
    }
}

/*--=================================================================== Homepage Banner Section Ends =========================-*/

/*--================================================= Media Queries ================================================-*/

@media (max-width: 770px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .service-card {
        height: 90%;
    }
    .section-header h2 {
        font-size: 2rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }
    .service-card p {
        font-size: 0.8rem;
    }
    .read-more-btn {
        display: inline-block;
        padding: 8px 10px;
        font-size: 12px;
    }
}

/*--================================================= Media Queries Ends ================================================-*/

/*--============================================== Emergency Number Section ============================================-*/

.emergency-banner {
    position: relative;
    padding: 65px;
    background: url("/images/emergency-bg.png") center/cover no-repeat;
    color: white;
    background-color: none;
}
.emergency-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    z-index: 1;
}
.emergency-banner * {
    position: relative;
    z-index: 2; /* Make text appear above dark overlay */
}

@media (max-width: 430px) {
    .emergency-banner {
        position: relative;
        padding: 35px;
    }
    .emergency-text {
        font-size: 18px;
        max-width: 450px;
        margin-left: 20px;
    }
}
@media (max-width: 380px) {
    .emergency-banner {
        position: relative;
        padding: 35px;
    }
    .emergency-text {
        font-size: 16px;
        max-width: 350px;
        margin-left: 23px;
    }
}
@media (max-width: 330px) {
    .emergency-banner {
        position: relative;
        padding: 35px;
    }
    .emergency-text {
        font-size: 12px;
        max-width: 200px;
        margin-left: 27px;
    }
}

/*--============================================== Emergency Number Section Ends ============================================--*/

/*--============================================== Extra Screen Responsiveness Css ============================================--*/
@media (max-width: 430px) {
    .MsoNormal span {
        font-size: 12px;
        line-height: 1.1rem;
        color: #000;
    }
    .mkdf-st-title {
        font-size: 25px;
    }
    .section-header h2 {
        font-size: 25px;
    }
    .section-title {
        font-size: 25px;
        margin-bottom: 10px;
    }
    .testimonial-container {
        margin-bottom: 0px;
    }
    .wpb_column {
        margin-top: 30px;
    }
    .mkdf-bli-inner h5 a {
        font-size: 16px;
        margin-top: -20px;
        line-height: 1rem;
    }
    #media_image-4 {
        height: 29px;
        width: 200px;
    }
    .mkdf-footer-text-first {
        margin-top: 35px;
        font-size: 12px;
        line-height: 1.1rem;
    }
    .mkdf-iwt-content {
        font-size: 12px;
        margin-top: -40px;
        line-height: 1.2rem;
    }
    .mkdf-column-content,
    .mkdf-grid-col-3 {
        padding-bottom: -40px;
    }
    .mkdf-bli-content h5 {
        line-height: 1.2rem;
    }
    /* .mkdf-grid-row img{
            height: 90px;
            width: 100px;
        } */
    .fl-photo-content,
    .fl-photo-img-jpg {
        height: 90px;
        max-width: 100px;
    }
    .fl-photo-img,
    .wp-image-6623 {
        padding-top: 15px;
    }
    .mkdf-social-icon-widget-holder img {
        height: 20px;
        width: 20px;
    }
    .fl-photo {
        margin-top: -20px !important;
    }
}
@media (max-width: 330px) {
    .mkdf-grid-row {
        padding: 5px !important;
    }
}

.MsoNormal span {
    color: #000 !important;
    font-family: "Roboto" !important;
}
.MsoNormal p {
    color: #000 !important;
}
p,
span {
    color: #000;
}
.mkdf-iwt-title-text {
    color: white;
}
.mkdf-iwt-title-text strong {
    font-weight: 800;
}
.about-para {
    padding: 0;
}

/*--========================================== Body Font family =======================================-*/
p,
.service-card p,
.slide-subtitle,
.emergency-text span,
.emergency-text a {
    font-family: "Roboto" !important;
}
.mkdf-widget-title {
    font-family: "Poppins" !important;
    font-weight: 800;
}

h2,
h2,
h3,
h4,
h5 {
    font-family: "Poppins" !important;
    font-weight: 800 !important;
}
.mkdf-footer-text-first {
    font-family: "Roboto" !important;
}
pre {
    display: none !important;
}
/*--================================================== Extra Screen Responsiveness Ends ==================================================--*/

/*--============================================ About Us Section Css =========================================== */
.about-section {
    width: 90%;
    margin: 0 auto;
    padding: 40px 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.top-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: stretch;
}

.left-text {
    flex: 1;
    font-family: "Roboto" !important;
}

.left-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.left-text p {
    margin-bottom: 15px;
    text-align: justify;
    font-family: "roboto";
}

.right-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.right-image img {
    width: 80%;
    height: 90%;
    object-fit: cover;
    border-radius: 6px;
}

.bottom-text {
    margin-top: 40px;
    text-align: justify;
}

.bottom-text h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 900px) {
    .top-content {
        flex-direction: column;
    }

    .right-image img {
        height: auto;
    }
}

.mkdf-bli-content h5 a {
    font-family: "roboto" !important;
    line-height: 1.3rem !important;
}

.mkdf-cover {
    display: none !important;
}

/*---========================================= Social Bar CSS ============================--*/
.solicitor-section {
    background: linear-gradient(rgba(0, 96, 175, 0.5), rgba(0, 96, 175, 0.5)),
        url("../../images/section-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 40px 80px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 100%;
    margin: 0 auto;
    min-height: 120px;
}

.solicitor-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.solicitor-content h2 {
    font-size: 32px;
    color: #000;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

.solicitor-content p {
    font-size: 18px;
    color: #000;
    margin: 0;
    line-height: 1.4;
    font-weight: 800;
}

.solicitor-content span {
    color: #000 !important;
}

.emergency-link {
    font-weight: 600;
    color: #000;
}

.emergency-link:hover {
    font-weight: 800;
    color: black !important;
    text-decoration: none;
    font-size: 18px;
}

.contact-boxes {
    display: flex;
    gap: 16px;
    align-items: center;
}

.contact-boxes {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 85px;
}

.contact-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    /* background-color: #e8e8e0; */
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 85px;
}

/* Hover only on parent box */
.contact-box:hover {
    background: #fff;
    text-decoration: none !important;
}

/* Change icon and label color when parent is hovered */
.contact-box:hover .contact-box-icon,
.contact-box:hover .contact-box-label {
    color: #000 !important;
    text-decoration: none !important;
}

.contact-box-icon {
    font-size: 28px;
    color: #fff;
    line-height: 1;
}

.contact-box-label {
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 900px) {
    .solicitor-section {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }

    .solicitor-content {
        width: 100%;
    }

    .solicitor-content h2 {
        font-size: 24px;
    }

    .contact-boxes {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .solicitor-section {
        padding: 20px;
    }

    .solicitor-content h2 {
        font-size: 20px;
    }

    .solicitor-content p {
        font-size: 13px;
    }

    .contact-box {
        padding: 14px 18px;
        min-width: 75px;
    }

    .contact-box-icon {
        font-size: 24px;
    }

    .contact-box-label {
        font-size: 12px;
    }
}
/*---========================================= Social Bar CSS Ends ============================--*/
