 :root {
      --bs-primary: #ffebcd;
      --bs-secondary: #000000;
      --bs-body-color: #000000;
    }

    body {
      color: var(--bs-body-color) !important;
      background-color: var(--bs-primary) !important;
       font-family: 'Glegoo', serif !important;
    }
    h1, h2, h3 {
    font-family: 'Glegoo', serif;
    font-weight: 700; /* bold */
    }

    p, li, span {
    font-family: 'Glegoo', serif;
    font-weight: 400; /* normal */
    }


    .navbar {
      background-color: var(--bs-primary) !important;
    }

    .navbar .nav-link {
      color: #000 !important;
    }

    .btn-custom {
      background-color: var(--bs-secondary);
      color: #fff;
    }

    .nav_style {
    font-size: 14px;
    font-weight: 500;
    padding-left: 10px !important;
    padding-right: 10px !important;

    }

    .call-btn {
      background-color: transparent;
      /* Golden */
      color: black;
      padding: 8px 15px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease-in-out;
    }

    .call-btn:hover {
      background-color: black;
      color: #FFD700;
      transform: scale(1.05);
    }

    .whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 70px;
      right: 20px;
      background-color: #25d366;
      border-radius: 50%;
      box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s;
    }

    .whatsapp-float img {
      width: 32px;
      height: 32px;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
    }

    /* Call Button */
    .call-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 140px;
      /* place it above WhatsApp button */
      right: 20px;
      background-color: #007bff;
      /* Bootstrap blue */
      border-radius: 50%;
      box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s;
    }

    .call-float img {
      width: 30px;
      height: 30px;
    }

    .call-float:hover {
      transform: scale(1.1);
    }

    .services-img {
      width: 40%;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    .accordion-item {
      background-color: #fff8ee;
      /* थोड़ा हल्का ताकि #ffebcd से अलग दिखे */
      border: 1px solid #f2d6b5;
      /* soft border */
      border-radius: 8px;
      margin-bottom: 10px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    .accordion-button {
      background-color: #ffebcd;
      color: #4a2f1f;
      /* dark brownish text for contrast */
      font-weight: 600;
    }

    .accordion-button:not(.collapsed) {
      background-color: #f2d6b5;
      /* जब open होगा तब थोड़ा dark दिखे */
      color: #3b2415;
      box-shadow: none;
    }

    .accordion-body {
      background-color: #fdefdb;
      color: #3b2415;
    }

    .accordion-body ul {
      list-style-type: disc;
      /* ✅ Normal filled bullets */
      padding-left: 30px;
      /* ✅ थोड़ा left space ताकि bullets सही दिखे */
      margin: 0;
    }

    .accordion-body ul li {
      margin-bottom: 6px;
      /* ✅ items के बीच थोड़ी space */
      color: #3b2415;
      /* ✅ readable text color (theme के हिसाब से) */
      font-weight: 500;
    }

    .timing-container {
      font-family: 'Poppins', sans-serif;
      font-size: 16px;
      font-weight: 500;
      color: #333;
      background: #f9f9f9;
      padding: 10px 15px;
      border-radius: 8px;
      display: inline-block;
    }

    .fs-18 {
      font-size: 75px;
      color: brown;
    }

    .modal-overlay {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      justify-content: center;
      align-items: center;
    }

    .modal-box {
      background: #ffebcd;
      /* Theme Primary Color */
      color: #000;
      max-width: 600px;
      width: 90%;
      padding: 20px;
      border-radius: 10px;
      position: relative;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .modal-close {
      position: absolute;
      right: 15px;
      top: 10px;
      font-size: 20px;
      cursor: pointer;
      font-weight: bold;
    }

    footer {
      background-color: #000;
      color: #fff;
      padding: 10px 20px;
    }

    .footer-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-links {
      display: flex;
      gap: 15px;
      font-size: 14px;
    }

    .footer-links a {
      color: #fff;
      text-decoration: none;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: #ffebcd;
      /* Hover color matches theme */
    }

    #faq h2 {
    color: #000;
    font-size: 2rem;
  }

  .accordion-button {
    font-weight: 600;
    font-size: 1rem;
  }

  .accordion-button:focus {
    box-shadow: none;
    background-color: #f1f1f1;
  }

  .accordion-body {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .pr-footer{
    padding-right: 15px;
  }

  .banner {
    width: 100%;
    height: calc(100vh - 150px); /* full screen minus top navbar height */
    margin-top: 150px;
    position: relative;
    overflow: hidden;
  }

  .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* image fills container without distortion */
    object-position: center; /* center align */
    display: block;
  }
  .fb-iframe-wrapper iframe {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}





   /* media query */
    @media (max-width: 600px) {
      .height_m {
        height: 1050px;
      }
      .services-img {
        width: 95%;
      }
      .fs-18 {
      font-size: 22px;

    }
    .banner_height{
      height: 160px !important;
    }
    .nav_style {
    font-size: 12px;
    font-weight: 500;
    padding-left: 18px !important;
    padding-right: 10px !important;
}
    }
    .footer_text{
       font-size: 11px; 
    }

    @media (min-width: 960px) {
      .height_m {
        height: 550px;
      }
      .pl-desk{
        padding-left: 300px;
      }
    }