

*,
*::before,
*::after {
    box-sizing: border-box;
}


img,
video,
iframe,
svg {
    max-width: 100%;
}

.container,
.elementor-container,
.elementor-section,
.elementor-widget-wrap {
    max-width: 100%;
}

/* ==================================== */

/* ================================
   RUHI NEW HEADER
================================ */

.ruhi-new-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: #fff;
    border-bottom: 3px solid #4f8aff;
    font-family: 'Segoe UI', Arial, sans-serif;
    z-index: 9999;
}

.ruhi-new-header-inner {
    width: 92%;
    margin: 0 auto;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */

.ruhi-new-logo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    color: #222;
    font-size: 22px;
    font-weight: 700;
}

/* LEFT COLOR LINE */

.ruhi-logo-accent {
    display: inline-block;
    width: 5px;
    height: 27px;
    background: #4f8aff;
    border-radius: 3px;
}

.ruhi-new-logo b {
    color: #4f8aff;
    font-weight: 700;
}

/* NAVIGATION */

.ruhi-new-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ruhi-new-nav a {
    text-decoration: none;
    color: #2f2f2f;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s;
}

.ruhi-new-nav a:hover {
    color: #4f8aff;
}

/* MOBILE BUTTON */

.ruhi-new-menu {
    display: none;
    border: none;
    background: transparent;
    color: #222;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {

    .ruhi-new-header-inner {
        width: 100%;
        padding: 15px 20px;
        position: relative;
    }

    .ruhi-new-menu {
        display: block;
    }

    .ruhi-new-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #ececec;
        border-top: 1px solid #ddd;
        z-index: 9999;
    }

    .ruhi-new-nav-active {
        display: flex !important;
    }

    .ruhi-new-nav a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #ddd;
    }

}
/* ====================================== */

.ruhi-hero-section{
    width: 100%;
    height: 70vh;
    padding: 0%;
    margin: 0%;
    overflow: hidden;
}
.ruhi-hero-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px){
    .ruhi-hero-section{
        height: 21vh;
    }
}
/* ====================== */
.simple-content-section {
    width: 100%;
    background:#fff;
    padding: 30px 0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.simple-content-container {
    width: 70%;
    margin: 0 auto;
}

.simple-heading-wrap {
    border-left: 6px solid #3b82f6;
    padding-left: 18px;
    margin-bottom: 10px;
}

.simple-heading-wrap h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0c111a;
    margin: 0;
    line-height: 1.2;
}

.simple-content-container p {
    font-size: 15px;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 22px;
}

@media (max-width: 768px) {
    .simple-content-container {
        width: 90%;
    }

    .simple-heading-wrap h2 {
        font-size: 30px;
    }

    .simple-content-container p {
        font-size: 17px;
    }
}



/* ======================================= */


/* ================================ */
.content-section {
    width: 100%;
    padding: 50px 20px;
}

.content-container {
    width: 70%;
    margin: 0 auto; /* Center */
}

.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    border-left: 3px solid #4f86d9;
    padding-left: 12px;
    font-size: 24px;
    margin-bottom: 20px;
}

.content-block p,
.content-block li {
    font-size: 16px;
    line-height: 1.8;
}
p{
        font-size: 17px !important;

}
/* ============================================ */
.service-section {
    width: 70%;
    max-width: 1500px;
    margin: 40px auto;
}

/* Heading */
.service-heading {
    background: #4285ed;
    min-height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 15px;
    margin-bottom: 25px;
}

.service-heading h2 {
    margin: 0;
    /* color: #171717; */
    font-size: 27px;
    font-weight: 700;
}

/* Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Card */
.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    border-bottom: 6px solid #4285ed;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

/* Image */
.service-card img {
    width: 100%;
    height: 415px;
    display: block;
    object-fit: cover;
}

/* Content */
.service-info {
    padding: 0 15px 20px;
    position: relative;
}

.service-info span {
    display: inline-block;
    background: #4285ed;
    color: #fff;
    padding: 9px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 8px;
    margin-bottom: 3px;
}

.service-info h3 {
    margin: 0 0 5px;
    font-size: 24px;
    font-weight: 700;
    color: #202020;
}

.service-info p {
    margin: 0;
    color: #777;
    font-size: 18px;
}


@media (max-width: 1024px) {

    .service-section {
        width: 92%;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .service-card img {
        height: 500px;
    }

    .service-heading h2 {
        font-size: 24px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .service-section {
        width: 92%;
        margin: 25px auto;
    }

    .service-heading {
        min-height: 100px;
        padding: 15px;
        margin-bottom: 30px;
    }

    .service-heading h2 {
        font-size: 20px;
        line-height: 1.4;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card img {
        height: 480px;
    }

    .service-info span {
        font-size: 14px;
        padding: 8px 17px;
    }

    .service-info h3 {
        font-size: 22px;
    }

    .service-info p {
        font-size: 16px;
    }
}

/* =================================== */
/* Main 70% Section */

.about-service-section {
    width: 70%;
    max-width: 1400px;
    margin: 40px auto;
    box-sizing: border-box;
}


/* =========================
   TOP WHITE BOX
========================= */

.about-service-box {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #d9dfe5;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}


/* =========================
   IMAGE
========================= */

.about-service-image {
    width: 35%;
    flex-shrink: 0;
}

.about-service-image img {
    width: 90%;
    height: 445px;

    object-fit: cover;

    display: block;

    border-radius: 6px;
}


/* =========================
   CONTENT
========================= */

.about-service-content {
    width: 65%;
}

.about-service-content h2,
.about-text-section h2 {
    position: relative;

    margin: 0 0 28px;

    padding-left: 24px;

    color: #111111;

    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
}


/* Blue Line */

.about-service-content h2::before,
.about-text-section h2::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 7px;
    height: 100%;

    background: #4285ed;
}


.about-service-content p {
    margin: 0 0 25px;

    color: #333333;

    font-size: 19px;
    line-height: 1.8;
}


.about-service-content strong,
.about-text-section strong {
    color: #4285ed;
    font-weight: 700;
}


.about-service-content a {
    color: #4285ed;

    font-size: 19px;

    text-decoration: none;
}


.about-service-content a:hover {
    text-decoration: underline;
}


/* =========================
   SECOND TEXT SECTION
========================= */

.about-text-section {
    margin-top: 55px;
}


.about-text-section h2 {
    margin-bottom: 25px;
}


.about-text-section p {
    margin: 0;

    color: #333333;

    font-size: 19px;
    line-height: 1.8;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

    .about-service-section {
        width: 90%;
    }

    .about-service-box {
        gap: 30px;
        padding: 28px;
    }

    .about-service-image {
        width: 38%;
    }

    .about-service-content {
        width: 62%;
    }

    .about-service-image img {
        height: 500px;
    }

    .about-service-content h2,
    .about-text-section h2 {
        font-size: 27px;
    }

    .about-service-content p,
    .about-text-section p {
        font-size: 17px;
        line-height: 1.7;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .about-service-section {
        width: 94%;
        margin: 25px auto;
    }

    .about-service-box {
        flex-direction: column;

        gap: 25px;

        padding: 20px;

        align-items: stretch;
    }

    .about-service-image {
        width: 100%;
    }

    .about-service-image img {
        width: 100%;
        height: 450px;
    }

    .about-service-content {
        width: 100%;
    }

    .about-service-content h2,
    .about-text-section h2 {
        font-size: 23px;

        padding-left: 17px;

        margin-bottom: 20px;
    }

    .about-service-content h2::before,
    .about-text-section h2::before {
        width: 5px;
    }

    .about-service-content p,
    .about-text-section p {
        font-size: 16px;
        line-height: 1.7;
    }

    .about-text-section {
        margin-top: 35px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .about-service-section {
        width: 94%;
    }

    .about-service-box {
        padding: 15px;
    }

    .about-service-image img {
        height: 400px;
    }

    .about-service-content h2,
    .about-text-section h2 {
        font-size: 21px;
    }

    .about-service-content p,
    .about-text-section p {
        font-size: 15px;
    }

}

/* ========================================== */
.pricing-section {
    width: 70%;
    max-width: 1500px;
    margin: 40px auto;
    box-sizing: border-box;
}

.pricing-box {
    background: #ffffff;
    border: 1px solid #d9dfe5;
    border-radius: 12px;
    padding: 55px 38px 42px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}


/* =========================
   HEADING
========================= */

.pricing-box h2 {
    position: relative;
    margin: 0 0 25px;
    padding-left: 25px;

    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: #111111;
}

.pricing-box h2::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;

    width: 7px;
    height: 100%;

    background: #4285ed;
}


/* =========================
   DESCRIPTION
========================= */

.pricing-description {
    margin: 0 0 28px;

    color: #3f4b59;

    font-size: 19px;
    line-height: 1.8;
}


/* =========================
   TABLE
========================= */

.table-wrapper {
    width: 100%;
    overflow-x: auto;

    border: 1px solid #d8dee5;
    border-radius: 9px;
}

.pricing-table {
    width: 100%;
    min-width: 850px;

    border-collapse: collapse;

    font-size: 18px;
}


/* Table Header */

.pricing-table thead th {
    background: #4285ed;
    color: #ffffff;

    padding: 24px 23px;

    text-align: left;

    font-size: 20px;
    font-weight: 700;

    white-space: nowrap;
}


/* Table Body */

.pricing-table tbody td {
    padding: 23px;

    border-bottom: 1px solid #d9dfe5;

    color: #222222;

    font-size: 18px;
}


/* First Column */

.pricing-table tbody td:first-child {
    color: #4285ed;
    font-weight: 700;
}


/* Alternate Row */

.pricing-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.pricing-table tbody tr:nth-child(odd) {
    background: #ffffff;
}


/* Last Row */

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}


/* =========================
   NOTE
========================= */

.pricing-note {
    margin-top: 22px;

    padding: 20px 25px;

    border-left: 6px solid #4285ed;

    background: #f8faff;

    color: #3f4b59;

    font-size: 18px;
    line-height: 1.6;
}

.pricing-note strong {
    color: #3f4b59;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

    .pricing-section {
        width: 90%;
    }

    .pricing-box {
        padding: 40px 25px 30px;
    }

    .pricing-box h2 {
        font-size: 28px;
    }

    .pricing-description {
        font-size: 17px;
    }

    .pricing-table thead th {
        font-size: 18px;
        padding: 20px;
    }

    .pricing-table tbody td {
        font-size: 17px;
        padding: 20px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .pricing-section {
        width: 94%;
        margin: 25px auto;
    }

    .pricing-box {
        padding: 30px 15px 25px;
        border-radius: 10px;
    }

    .pricing-box h2 {
        font-size: 23px;
        padding-left: 17px;
        margin-bottom: 20px;
    }

    .pricing-box h2::before {
        width: 5px;
    }

    .pricing-description {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 22px;
    }

    .pricing-table {
        min-width: 750px;
    }

    .pricing-table thead th {
        padding: 17px 15px;
        font-size: 16px;
    }

    .pricing-table tbody td {
        padding: 17px 15px;
        font-size: 16px;
    }

    .pricing-note {
        padding: 16px 18px;
        font-size: 15px;
        line-height: 1.6;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .pricing-section {
        width: 94%;
    }

    .pricing-box {
        padding: 25px 12px 20px;
    }

    .pricing-box h2 {
        font-size: 21px;
    }

    .pricing-description {
        font-size: 15px;
    }

    .pricing-note {
        font-size: 14px;
    }

}
/* ===================================== */
/* =========================================
   MAIN SECTION
========================================= */

.location-service-section {
    width: 70%;
    max-width: 1500px;
    margin: 40px auto;
    box-sizing: border-box;
}


/* =========================================
   TOP BOX
========================================= */

.location-service-box {
    width: 100%;
    background: #ffffff;

    border: 1px solid #d9dfe5;
    border-radius: 12px;

    padding: 55px 35px 60px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);

    box-sizing: border-box;
}


/* =========================================
   TITLE
========================================= */

.location-title {
    position: relative;

    margin: 0 0 25px;

    padding-left: 22px;

    font-size: 32px;
    line-height: 1.35;
    font-weight: 700;

    color: #111111;
}

.location-title::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 7px;
    height: 100%;

    background: #4285ed;
}


/* =========================================
   DESCRIPTION
========================================= */

.location-description {
    margin: 0 0 28px;

    color: #46515e;

    font-size: 19px;
    line-height: 1.7;
}


/* =========================================
   TABLE WRAPPER
========================================= */

.location-table-wrapper {
    width: 100%;

    overflow-x: auto;

    border: 1px solid #d9dfe5;
    border-radius: 8px;
}


/* =========================================
   TABLE
========================================= */

.location-table {
    width: 100%;
    min-width: 750px;

    border-collapse: collapse;

    font-size: 18px;
}


/* =========================================
   TABLE HEADER
========================================= */

.location-table thead th {
    background: #4285ed;

    color: #ffffff;

    padding: 22px;

    text-align: left;

    font-size: 20px;
    font-weight: 700;

    white-space: nowrap;
}


/* =========================================
   TABLE BODY
========================================= */

.location-table tbody td {
    height: 80px;

    padding: 15px 22px;

    border-bottom: 1px solid #d9dfe5;

    color: #222222;

    font-size: 18px;

    vertical-align: middle;
}


/* Location Name */

.location-table tbody td:first-child {
    color: #4285ed;

    font-weight: 700;
}


/* Alternate Background */

.location-table tbody tr:nth-child(even) {
    background: #f7f8fa;
}

.location-table tbody tr:nth-child(odd) {
    background: #ffffff;
}


/* Last Row */

.location-table tbody tr:last-child td {
    border-bottom: none;
}


/* =========================================
   BUTTON CELL
========================================= */

.location-table td:nth-child(2),
.location-table td:nth-child(3) {
    text-align: left;
}


/* =========================================
   CALL BUTTON
========================================= */

.call-btn {
    display: inline-block;

    background: #ff9f43;

    color: #ffffff;

    padding: 14px 23px;

    border-radius: 35px;

    font-size: 18px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.25s ease;
}

.call-btn:hover {
    background: #f58d25;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================
   WHATSAPP BUTTON
========================================= */

.whatsapp-btn {
    display: inline-block;

    background: #20ce68;

    color: #ffffff;

    padding: 14px 25px;

    border-radius: 35px;

    font-size: 18px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.25s ease;
}

.whatsapp-btn:hover {
    background: #18b95b;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================
   BOTTOM CONTENT
========================================= */

.location-bottom-content {
    margin-top: 50px;
}


.location-bottom-content h2 {
    position: relative;

    margin: 0 0 25px;

    padding-left: 22px;

    font-size: 32px;
    line-height: 1.35;

    font-weight: 700;

    color: #111111;
}


.location-bottom-content h2::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 7px;
    height: 100%;

    background: #4285ed;
}


.location-bottom-content p {
    margin: 0;

    color: #3f4b59;

    font-size: 19px;

    line-height: 1.8;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .location-service-section {
        width: 90%;
    }

    .location-service-box {
        padding: 40px 25px 45px;
    }

    .location-title,
    .location-bottom-content h2 {
        font-size: 28px;
    }

    .location-description,
    .location-bottom-content p {
        font-size: 17px;
    }

    .location-table thead th {
        font-size: 18px;
        padding: 19px;
    }

    .location-table tbody td {
        font-size: 17px;
        padding: 15px 19px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .location-service-section {
        width: 94%;
        margin: 25px auto;
    }

    .location-service-box {
        padding: 30px 15px 35px;
        border-radius: 10px;
    }

    .location-title,
    .location-bottom-content h2 {
        font-size: 23px;
        padding-left: 17px;
    }

    .location-title::before,
    .location-bottom-content h2::before {
        width: 5px;
    }

    .location-description,
    .location-bottom-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    /*
       Mobile par table scroll hogi,
       layout break nahi hoga
    */

    .location-table {
        min-width: 700px;
    }

    .location-table thead th {
        font-size: 16px;
        padding: 17px 15px;
    }

    .location-table tbody td {
        font-size: 16px;
        padding: 15px;
    }

    .call-btn,
    .whatsapp-btn {
        font-size: 15px;
        padding: 11px 18px;
    }

    .location-bottom-content {
        margin-top: 35px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .location-service-section {
        width: 94%;
    }

    .location-service-box {
        padding: 25px 12px 30px;
    }

    .location-title,
    .location-bottom-content h2 {
        font-size: 21px;
    }

    .location-description,
    .location-bottom-content p {
        font-size: 15px;
    }

}

/* =========================== */

  
    .top-service-locations {
      width: 70%;
      max-width: 100%;
      margin: 0 auto;
      padding: 45px 40px 70px;
      font-family: Arial, Helvetica, sans-serif;
    }

    .top-service-locations .service-title {
      position: relative;
      text-align: center;
      margin-bottom: 18px;
    }

    .top-service-locations .service-title::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 7px;
      height: 56px;
      background: #4285f4;
      border-radius: 1px;
    }

    .top-service-locations .service-title h2 {
      margin: 0;
      color: #111;
      font-size: 34px;
      line-height: 1.2;
      font-weight: 700;
    }

    .top-service-locations .location-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
    }

    .top-service-locations .location-item {
      min-height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 3px 5px;
      background: #fff;
      border: 1px solid #d7d7d7;
      border-radius: 7px;
      color: #222;
      text-decoration: none;
      text-align: center;
      font-size: 13px;
      font-weight: 600;
      transition: all 0.25s ease;
    }

    /* RED HOVER */
    .top-service-locations .location-item:hover {
      color: #fff;
      background: #e63946;
      border-color: #e63946;
      transform: translateY(-3px);
      box-shadow: 0 7px 18px rgba(230, 57, 70, 0.22);
    }

    /* Disclaimer */
    .top-service-locations .service-disclaimer {
      margin-top: 10px;
      padding: 34px 30px;

      background: #fff7f7;
      border: 1px dashed #ef3340;
      border-radius: 10px;
    }

    .top-service-locations .service-disclaimer h3 {
      margin: 0 0 18px;
      color: #df2939;
      font-size: 20px;
      font-weight: 700;
    }

    .top-service-locations .service-disclaimer p {
      margin: 0;
      color: #010101;
      font-size: 14px !important;
      line-height: 1.75;
    }




    @media (max-width: 1100px) {
      .top-service-locations .location-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .top-service-locations .service-title h2 {
        font-size: 30px;
      }
    }


    /* =========================
       MOBILE
    ========================= */

    @media (max-width: 700px) {

      .top-service-locations {
        padding: 10px 8px 10px;
      }

      .top-service-locations .service-title {
        margin-bottom: 28px;
      }

      .top-service-locations .service-title::before {
        width: 5px;
        height: 42px;
      }

      .top-service-locations .service-title h2 {
        font-size: 25px;
      }

      .top-service-locations .location-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }

      .top-service-locations .location-item {
        min-height: 55px;
        padding: 12px 8px;
        font-size: 15px;
      }

      .top-service-locations .service-disclaimer {
        margin-top: 60px;
        padding: 25px 20px;
      }

      .top-service-locations .service-disclaimer h3 {
        font-size: 23px;
        margin-bottom: 14px;
      }

      .top-service-locations .service-disclaimer p {
        font-size: 15px;
        line-height: 1.6;
      }
    }


    /* =========================
       SMALL MOBILE
    ========================= */

    @media (max-width: 420px) {

      .top-service-locations .location-grid {
        grid-template-columns: 1fr;
      }

      .top-service-locations .location-item {
        min-height: 52px;
        font-size: 16px;
      }
    }
  

    /* ============================= */
    
    .faq-section {
      width: 65%;
      max-width: 1150px;
      margin: 0 auto;
      padding: 45px 40px;
      background: #fff;
      border: 1px solid #d9dfe3;
      border-radius: 12px;
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
      font-family: Arial, Helvetica, sans-serif;
    }

    .faq-section .faq-title {
      text-align: center;
      margin: 5px 0 28px;
    }

    .faq-section .faq-title h2 {
      margin: 0;
      color: #17202a;
      font-size: 24px;
      font-weight: 600;
    }

    .faq-section .faq-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .faq-section .faq-item {
      border: 1px solid #d9d9d9;
      border-radius: 9px;
      overflow: hidden;
      background: #fff;
    }

    .faq-section .faq-question {
      width: 100%;
      min-height: 84px;
      padding: 20px 26px;

      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;

      border: 0;
      background: #f7f8f9;
      color: #17202a;
      font-size: 16px;
      font-weight: 500;
      text-align: left;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .faq-section .faq-question:hover {
      background: #fdf0f2;
    }

    .faq-section .faq-icon {
      flex-shrink: 0;
      color: #e91e63;
      font-size: 25px;
      font-weight: 700;
      line-height: 1;
      transition: transform 0.25s ease;
    }

    .faq-section .faq-answer {
      display: none;
      padding: 10px 16px;
      background: #fff;
      color: #050606;
      font-size: 15px;
      line-height: 1.7;
      border-top: 1px solid #eee;
    }

    .faq-section .faq-item.active .faq-answer {
      display: block;
    }

    .faq-section .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }


    /* Tablet */
    @media (max-width: 1000px) {
      .faq-section {
        width: 85%;
        padding: 40px 30px;
      }
    }


    /* Mobile */
    @media (max-width: 600px) {
      .faq-section {
        width: 94%;
        padding: 30px 15px;
        border-radius: 9px;
      }

      .faq-section .faq-title h2 {
        font-size: 24px;
      }

      .faq-section .faq-question {
        min-height: 70px;
        padding: 18px 16px;
        font-size: 16px;
      }

      .faq-section .faq-icon {
        font-size: 22px;
      }

      .faq-section .faq-answer {
        padding: 16px;
        font-size: 14px;
      }
    }
  

    /* ================================= */
    
    .service-highlights,
    .service-highlights * {
      box-sizing: border-box;
    }

    .service-highlights {
      width: 70%;
      max-width: 1770px;
      margin: 40px auto;
      padding: 55px 50px;
      background: #ffffff;
      border: 1px solid #d9dfe3;
      border-radius: 14px;
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
      font-family: Arial, Helvetica, sans-serif;
      overflow: hidden;
    }

    .service-highlights .highlight-grid {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 55px 35px;
      align-items: start;
    }

    .service-highlights .highlight-item {
      width: 100%;
      min-width: 0;
      text-align: center;
    }

    .service-highlights .highlight-number {
      display: block;
      margin-bottom: 10px;
      color: #111827;
      font-size: 17px;
      line-height: 1.2;
      font-weight: 700;
    }

    .service-highlights .highlight-title {
      margin: 0;

      color: #000000;
      font-size: 16px;
      line-height: 1.3;
      font-weight: 700;
    }

    /* Center bottom item */
    .service-highlights .highlight-item-bottom {
      grid-column: 2;
    }


    /* =========================
       TABLET
    ========================= */

    @media (max-width: 1000px) {

      .service-highlights {
        width: calc(100% - 30px);
        padding: 45px 25px;
      }

      .service-highlights .highlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 25px;
      }

      .service-highlights .highlight-item-bottom {
        grid-column: 1 / -1;
      }

      .service-highlights .highlight-title {
        font-size: 22px;
      }

      .service-highlights .highlight-number {
        font-size: 22px;
      }
    }


    /* =========================
       MOBILE
    ========================= */

    @media (max-width: 600px) {

      .service-highlights {
        width: calc(100% - 20px);
        max-width: 100%;
        margin: 25px auto;
        padding: 35px 15px;

        border-radius: 10px;
      }

      .service-highlights .highlight-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .service-highlights .highlight-item-bottom {
        grid-column: auto;
      }

      .service-highlights .highlight-number {
        margin-bottom: 8px;
        font-size: 21px;
      }

      .service-highlights .highlight-title {
        font-size: 19px;
        line-height: 1.35;
      }
    }


    /* =========================
       SMALL MOBILE
    ========================= */

    @media (max-width: 380px) {

      .service-highlights {
        width: calc(100% - 16px);
        padding: 30px 12px;
      }

      .service-highlights .highlight-title {
        font-size: 17px;
      }

      .service-highlights .highlight-number {
        font-size: 19px;
      }
    }

    /* ========================= */
  * {
    box-sizing: border-box;
}

.profile-section {
    width: 100%;
    padding: 30px 20px 50px;
    background: #fff;
}

/* Original width */
.profile-container {
    width: 70%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Heading */
.profile-heading {
    width: 100%;
    background: #4385ed;
    padding: 35px 25px;
    border-radius: 10px;
    margin-bottom: 35px;
    text-align: center;
}

.profile-heading h2 {
    margin: 0;
    color: #111;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
}


/* 4 Images in One Row */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
}


/* Card */
.profile-card {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.10);
    transition: 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
}


/* Image */
.profile-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.profile-image img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.profile-card:hover .profile-image img {
    transform: scale(1.04);
}


/* VERIFIED */
.verified-badge {
    position: absolute;
    top: 12px;
    left: 12px;

    display: flex;
    align-items: center;
    gap: 5px;

    background: #1fac44;
    color: #fff;

    padding: 8px 13px;
    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;

    z-index: 2;
}

.verified-badge span {
    font-size: 16px;
}


/* Bottom Info */
.profile-info {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 14px 15px;

    background: #fff;
}


/* Age */
.profile-age {
    font-size: 18px;
    font-weight: 700;
    color: #1d1d1d;
}


/* Active */
.profile-status {
    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 16px;
    font-weight: 600;

    color: #238843;
}

.status-dot {
    width: 7px;
    height: 7px;

    background: #1fac44;
    border-radius: 50%;
}


/* Tablet - 2 Images */
@media (max-width: 1100px) {

    .profile-container {
        width: 85%;
    }

    .profile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

}


/* Mobile - 1 Image */
@media (max-width: 650px) {

    .profile-section {
        padding: 20px 12px 35px;
    }

    .profile-container {
        width: 100%;
    }

    .profile-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .profile-heading {
        padding: 25px 15px;
        margin-bottom: 25px;
    }

    .profile-heading h2 {
        font-size: 18px;
    }

}

/* =================================== */


  .about-section {
    width: 100%;
    padding: 40px 20px 0;
    background:#fff
  }

  .about-container {
    width: 70%;
    max-width: 100%;
    margin: 0 auto;

    /* Screenshot jaisa bottom blue border */
    border-bottom: 10px solid #4385ed;
    border-radius: 0 0 0 65px;
    padding: 0 0 42px;
  }

  .about-content {
    padding: 0;
    color: #333;
    font-family: Georgia, "Times New Roman", serif;
  }

  .about-content h2 {
    position: relative;
    margin: 0 0 22px;
    padding-left: 16px;

    font-size: 27px;
    line-height: 1.35;
    font-weight: 700;
    color: #111;
  }

  /* Left blue line */
  .about-content h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 5px;
    height: calc(100% - 4px);
    background: #4385ed;
  }

  .about-content h2:not(:first-child) {
    margin-top: 25px;
  }

  .about-content p {
    margin: 0 0 22px;

    font-size: 17px;
    line-height: 1.7;
    letter-spacing: 0.2px;
  }

  .about-content strong {
    color: #b52b25;
    font-weight: 700;
  }

  /* =========================
     TABLET
     ========================= */

  @media (max-width: 1100px) {
    .about-section {
      padding: 30px 20px 0;
    }

    .about-container {
      width: 85%;
      padding-bottom: 35px;
    }

    .about-content h2 {
      font-size: 24px;
    }

    .about-content p {
      font-size: 16px;
      line-height: 1.65;
    }
  }

  /* =========================
     MOBILE
     ========================= */

  @media (max-width: 650px) {
    .about-section {
      padding: 20px 14px 0;
    }

    .about-container {
      width: 100%;
      padding-bottom: 28px;
      border-bottom-width: 7px;
      border-radius: 0 0 0 35px;
    }

    .about-content h2 {
      font-size: 21px;
      line-height: 1.4;
      padding-left: 12px;
      margin-bottom: 18px;
    }

    .about-content h2::before {
      width: 4px;
    }

    .about-content h2:not(:first-child) {
      margin-top: 22px;
    }

    .about-content p {
      font-size: 15px;
      line-height: 1.65;
      margin-bottom: 18px;
    }
  }

  /* =========================
     SMALL MOBILE
     ========================= */

  @media (max-width: 380px) {
    .about-section {
      padding-left: 10px;
      padding-right: 10px;
    }

    .about-content h2 {
      font-size: 19px;
    }

    .about-content p {
      font-size: 14px;
    }
  }


  /* ======================= */


.doctor-section {
  width: 70%;
  max-width: 1000px;
  margin: 40px auto;

  display: grid;
  grid-template-columns: 42% 58%;

  min-height: 480px;
  align-items: center;
}


/* IMAGE */

.doctor-image {
  width: 100%;
  height: 510px;

  background: #f2f2f2;

  border-radius: 35px 0 0 0;

  overflow: hidden;
}

.doctor-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}


/* CONTENT */

.doctor-content {
  position: relative;

  padding: 60px 40px;

  text-align: left;

  /* border-bottom: 10px solid #4285f4; */

  border-radius: 0 0 55px 0;
}


/* BLUE VERTICAL LINE */

.doctor-content::before {
  content: "";

  position: absolute;

  left: 0;
  top: 55px;

  width: 6px;
  height: 35px;

  background: #4285f4;
}


/* HEADING */

.doctor-content h2 {
  margin: 0 0 20px;

  padding-left: 18px;

  font-family: Georgia, serif;

  font-size: 27px;

  line-height: 1.3;

  font-weight: 700;
}


/* PARAGRAPH */

.doctor-content p {
  margin: 0 0 18px;

  font-family: Georgia, serif;

  font-size: 17px;

  line-height: 1.5;

  color: #444;
}


/* WHATSAPP BUTTON */

.whatsapp-btn {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-top: 5px;

  padding: 12px 20px;

  background: #25D366;

  color: #fff;

  text-decoration: none;

  border-radius: 30px;

  font-family: Arial, sans-serif;

  font-size: 15px;

  font-weight: 700;

  box-shadow: 0 4px 12px rgba(37,211,102,.25);

  transition: .2s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5d;

  transform: translateY(-2px);
}


/* WHATSAPP ICON */

.whatsapp-btn svg {
  width: 21px;
  height: 21px;

  fill: currentColor;
}


/* MOBILE */

@media (max-width: 800px) {

  .doctor-section {
    width: 92%;

    grid-template-columns: 1fr;

    margin: 25px auto;
  }

  .doctor-image {
    height: 300px;

    border-radius: 30px 30px 0 0;
  }

  .doctor-content {
    padding: 50px 25px;

    border-bottom: 8px solid #4285f4;

    border-radius: 0 0 40px 40px;
  }

  .doctor-content::before {
    top: 45px;
  }

  .doctor-content h2 {
    font-size: 24px;
  }

  .doctor-content p {
    font-size: 16px;
  }

}

/* ======================= */

  /* ================================
     UNIQUE PRICING SECTION
  ================================= */
 .ux-pricing-section {
    width: 70%;
    padding: 45px 20px 85px;
    background: #ffffff;
    box-sizing: border-box;
  }
@media (max-width: 600px) {
  .ux-pricing-section {
    width: 100%;
    padding: 35px 15px 50px;
  }
}
.ux-pricing-section {
  width: 70% !important;
  max-width: 1600px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 45px 20px 85px;
  background: #fff
  box-sizing: border-box;
}
  .ux-pricing-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
  }

  .ux-pricing-heading {
    text-align: center;
    margin-bottom: 48px;
  }

  .ux-pricing-heading h2 {
    margin: 0 0 50px;
    color: #111111;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
  }

  .ux-pricing-heading p {
    margin: 0;
    color: #222222;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    line-height: 1.4;
  }

  .ux-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }

  .ux-pricing-card {
    min-height: 460px;
    padding: 70px 35px 42px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
  }

  .ux-pricing-card h3 {
    margin: 0 0 27px;
    color: #111111;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
  }

  .ux-pricing-price {
    margin-bottom: 24px;
    color: #2879e5;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
  }

  .ux-pricing-features {
    margin-bottom: 26px;
    /* background-color: white; */
  }

  .ux-pricing-features p {
    margin: 0 0 12px;
    color: #555555;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1.35;
  }

  .ux-pricing-features p:last-child {
    margin-bottom: 0;
  }

  .ux-pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 183px;
    min-height: 54px;
    margin-top: auto;
    padding: 12px 28px;
    border-radius: 40px;
    background: #2879e5;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1;
    text-decoration: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
  }

  .ux-pricing-btn:hover {
    background: #1265d0;
    color: #ffffff;
    transform: translateY(-2px);
  }

  /* ================================
     TABLET
  ================================= */

  @media (max-width: 991px) {
    .ux-pricing-section {
      padding: 40px 20px 65px;
    }

    .ux-pricing-heading {
      margin-bottom: 35px;
    }

    .ux-pricing-heading h2 {
      margin-bottom: 30px;
      font-size: 34px;
    }

    .ux-pricing-heading p {
      font-size: 22px;
    }

    .ux-pricing-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
    }

    .ux-pricing-card {
      min-height: 430px;
      padding: 50px 25px 35px;
    }

    .ux-pricing-card h3 {
      font-size: 29px;
    }

    .ux-pricing-price {
      font-size: 39px;
    }

    .ux-pricing-features p {
      font-size: 21px;
    }
  }

  /* ================================
     MOBILE
  ================================= */

  @media (max-width: 600px) {
    .ux-pricing-section {
      padding: 35px 15px 50px;
    }

    .ux-pricing-heading {
      margin-bottom: 30px;
    }

    .ux-pricing-heading h2 {
      margin-bottom: 20px;
      font-size: 30px;
    }

    .ux-pricing-heading p {
      font-size: 19px;
    }

    .ux-pricing-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .ux-pricing-card {
      width: 100%;
      min-height: auto;
      padding: 42px 20px 32px;
      border-radius: 18px;
    }

    .ux-pricing-card h3 {
      margin-bottom: 20px;
      font-size: 28px;
    }

    .ux-pricing-price {
      margin-bottom: 20px;
      font-size: 38px;
    }

    .ux-pricing-features {
      margin-bottom: 28px;
    }

    .ux-pricing-features p {
      font-size: 20px;
      margin-bottom: 10px;
    }

    .ux-pricing-btn {
      min-width: 175px;
      min-height: 58px;
      font-size: 21px;
    }
  }



/* =================================
   CONTACT SECTION
================================= */

.ux-contact-section {
  width: 100%;
  padding: 45px 20px 65px;
  background: #f8f9fb;
  box-sizing: border-box;
}

.ux-contact-wrap {
  width: 60%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}


/* =================================
   INTRO TEXT
================================= */

.ux-contact-intro {
  text-align: center;
  margin-bottom: 85px;
}

.ux-contact-intro p {
  margin: 0;
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.35;
}

.ux-contact-intro a {
  color: #0000ee;
  font-weight: 700;
  text-decoration: underline;
}


/* =================================
   INPUTS
================================= */

.ux-contact-form {
  width: 100%;
  margin: 0;
}

.ux-contact-input,
.ux-contact-message {
  width: 100%;
  display: block;
  box-sizing: border-box;
  border: 2px solid #e1e1e1;
  border-radius: 16px;
  background: #fdfdfd;
  color: #555555;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  outline: none;
}

.ux-contact-input {
  height: 62px;
  padding: 0 17px;
  margin-bottom: 24px;
}

.ux-contact-message {
  min-height: 200px;
  padding: 17px;
  margin-bottom: 38px;
  resize: vertical;
}

.ux-contact-input::placeholder,
.ux-contact-message::placeholder {
  color: #637589;
  opacity: 1;
}


/* =================================
   BUTTON
================================= */

.ux-contact-submit {
  width: 100%;
  height: 68px;
  display: block;
  border: 3px solid #444444;
  border-radius: 16px;
  background: #3478ed;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.ux-contact-submit:hover {
  background: #2168df;
}


/* =================================
   BOTTOM CONTACT INFO
================================= */

.ux-contact-info {
  margin-top: 55px;
  text-align: center;
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.4;
}


/* =================================
   TABLET
================================= */

@media (max-width: 991px) {

  .ux-contact-wrap {
    width: 80%;
  }

  .ux-contact-intro {
    margin-bottom: 60px;
  }

  .ux-contact-intro p {
    font-size: 17px;
  }

  .ux-contact-input,
  .ux-contact-message {
    font-size: 15px;
  }

  .ux-contact-submit {
    font-size: 19px;
  }

  .ux-contact-info {
    font-size: 17px;
  }
}


/* =================================
   MOBILE
================================= */

@media (max-width: 600px) {

  .ux-contact-section {
    padding: 35px 15px 50px;
  }

  .ux-contact-wrap {
    width: 100%;
    max-width: none;
  }

  .ux-contact-intro {
    margin-bottom: 40px;
  }

  .ux-contact-intro p {
    font-size: 16px;
    line-height: 1.4;
  }

  .ux-contact-input {
    height: 56px;
    margin-bottom: 17px;
    border-radius: 13px;
    font-size: 15px;
  }

  .ux-contact-message {
    min-height: 165px;
    margin-bottom: 25px;
    border-radius: 13px;
    font-size: 15px;
  }

  .ux-contact-submit {
    height: 60px;
    border-radius: 13px;
    font-size: 18px;
  }

  .ux-contact-info {
    margin-top: 32px;
    font-size: 15px;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }
}



/* =========================
   FOOTER
========================= */

.ruhi-footer {
    width: 100%;
    background: #fff;
    border-top: 2px solid #3985f5;
    font-family: Arial, sans-serif;
}

.ruhi-footer-inner {
    min-height: 140px;
    padding: 25px 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-sizing: border-box;
}

.ruhi-footer-brand {
    min-width: 210px;
}

.ruhi-footer-logo {
    color: #3f7ff0;
    font-size: 23px;
    font-weight: 700;
    text-decoration: none;
}

.ruhi-footer-brand p {
    margin: 10px 0 0;
    color: #718096;
    font-size: 14px;
}


/* MENU */

.ruhi-footer-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex: 1;
}

.ruhi-footer-menu a {
    color: #26364a;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: .25s;
}

.ruhi-footer-menu a:hover {
    color: #287df5;
}


/* SOCIAL */

.ruhi-footer-social {
    display: flex;
    gap: 12px;
}

.ruhi-footer-social a {
    min-width: 78px;
    height: 44px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;

    border: 1px solid #d9dee7;
    border-radius: 20px;

    background: #fafbfc;
    color: #26364a;
    font-size: 14px;
    text-decoration: none;

    transition: .25s;
}

.ruhi-footer-social a:hover {
    color: #fff;
    background: #287df5;
    border-color: #287df5;
}


/* =========================
   SMALL WHATSAPP BUTTON
========================= */

.ruhi-whatsapp,
.ruhi-call {
    position: fixed;
    left: 25px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    z-index: 99999;

    box-shadow: 0 5px 15px rgba(0,0,0,.22);

    transition: .25s;
}

.ruhi-whatsapp {
    bottom: 90px;
    background: #20d366;
}

.ruhi-call {
    bottom: 20px;
    background: #087ff5;
}

.ruhi-whatsapp svg {
    width: 32px;
    height: 32px;
}

.ruhi-call svg {
    width: 29px;
    height: 29px;
}

.ruhi-whatsapp:hover,
.ruhi-call:hover {
    transform: scale(1.08);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

    .ruhi-footer-inner {
        padding: 25px 35px;
        gap: 20px;
    }

    .ruhi-footer-menu {
        gap: 18px;
    }

    .ruhi-footer-menu a {
        font-size: 14px;
    }

    .ruhi-footer-social {
        gap: 7px;
    }

    .ruhi-footer-social a {
        min-width: 68px;
        padding: 0 10px;
        font-size: 13px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .ruhi-footer-inner {
        padding: 30px 15px;
        flex-direction: column;
        text-align: center;
        gap: 22px;
    }

    .ruhi-footer-brand {
        min-width: auto;
    }

    .ruhi-footer-menu {
        width: 100%;
        flex-wrap: wrap;
        gap: 12px 20px;
    }

    .ruhi-footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }

    .ruhi-footer-social a {
        height: 40px;
    }

    .ruhi-whatsapp,
    .ruhi-call {
        left: 15px;
        width: 52px;
        height: 52px;
    }

    .ruhi-whatsapp {
        bottom: 78px;
    }

    .ruhi-call {
        bottom: 15px;
    }

    .ruhi-whatsapp svg {
        width: 29px;
        height: 29px;
    }

    .ruhi-call svg {
        width: 26px;
        height: 26px;
    }
}


/* =========================
   VERY SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .ruhi-footer-menu {
        gap: 10px 16px;
    }

    .ruhi-footer-menu a {
        font-size: 13px;
    }

    .ruhi-footer-social a {
        min-width: 72px;
        font-size: 12px;
    }

    .ruhi-whatsapp,
    .ruhi-call {
        width: 48px;
        height: 48px;
        left: 12px;
    }

    .ruhi-whatsapp {
        bottom: 70px;
    }

    .ruhi-call {
        bottom: 12px;
    }

    .ruhi-whatsapp svg {
        width: 26px;
        height: 26px;
    }

    .ruhi-call svg {
        width: 24px;
        height: 24px;
    }
}


@media (max-width: 768px) {
    .top-service-locations {
        width: 96% !important;
        max-width: 96% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }
}
@media (max-width: 768px) {

    .content-section {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .content-container {
        width: 96% !important;
        max-width: 96% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .content-block {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

}