body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, rgb(106, 130, 251), #dc6bbc);
      padding-top: 80px;
      width: 100%;
      overflow-x: hidden;
      /* Prevent horizontal scrolling */
    }

    html {
      width: 100%;
      overflow-x: hidden;
      /* Prevent horizontal scrolling */
    }

    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1000;
    }

    .service-modal {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: white;
      padding: 2rem;
      border-radius: 10px;
      max-width: 500px;
      width: 90%;
      z-index: 1000;
    }

    .dropdown {
      z-index: 100;
    }

    .dropdown-content {
      text-align: left;
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: linear-gradient(135deg, rgb(106, 130, 251), #dc6bbc);
      z-index: 999;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      /* Adjust padding to control the navbar height */
    }

    .section-gap {
      margin-bottom: 40px;
    }

    /* Mobile-first approach */
    @media screen and (max-width: 768px) {
      .text-xl {
        font-size: 1.25rem;
      }

      .text-lg {
        font-size: 1.125rem;
      }

      .mb-6 {
        margin-bottom: 1.5rem;
      }

      .text-5xl {
        font-size: 2.5rem;
      }

      .max-w-xl {
        max-width: 100%;
      }

      .container {
        padding-left: 1rem;
        padding-right: 1rem;
      }
    }

    /* Swipper */
    .swiper-button-next,
    .swiper-button-prev {
      color: white !important;
      top: 50%;
      transform: translateY(-50%);
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
      font-size: 26px;
      font-weight: bold;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
      transform: translateY(-50%) scale(1.1);
      transition: transform 0.2s ease;
    }

    .swiper-button-prev,
    .swiper-button-next {
      top: 50% !important;
      transform: translateY(-50%);
    }

    /* Visible scrollbar on the GREY hamburger overlay (not the white panels) */
    #mobileMenu {
      overflow-y: auto;
      height: 100vh;
      -webkit-overflow-scrolling: touch;
      /* visible thin scrollbar (Firefox) */
      scrollbar-width: thin;
      scrollbar-color: rgba(255, 255, 255, .6) rgba(255, 255, 255, .15);
    }

    /* visible scrollbar (Chrome/Safari/Edge) */
    #mobileMenu::-webkit-scrollbar {
      width: 10px;
    }

    #mobileMenu::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, .12);
      border-radius: 8px;
    }

    #mobileMenu::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, .55);
      border-radius: 8px;
    }

    #mobileMenu::-webkit-scrollbar-thumb:hover {
      background: rgba(255, 255, 255, .75);
    }

    :root {
      --nav-height: 70px;
    }

    .nav-underlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: var(--nav-height);
      background: linear-gradient(135deg, rgb(106, 130, 251), #dc6bbc);
      z-index: 998;
      pointer-events: none;
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: var(--nav-height);
      z-index: 999;
      background: transparent;
    }

    body {
      padding-top: var(--nav-height);
    }

    /* Make location dropdown links clearly clickable */
    #locationDropdown a,
    #locationDropdownMobile a {
      display: block;
      padding: .5rem .75rem;
      border-radius: .5rem;
      color: #2563eb;
      /* blue */
      text-decoration: none;
      cursor: pointer;
    }

    #locationDropdown a:hover,
    #locationDropdownMobile a:hover {
      text-decoration: underline;
      color: #1e40af;
      /* darker blue */
      background: rgba(0, 0, 0, .06);
    }

    #locationDropdown a:focus,
    #locationDropdownMobile a:focus {
      outline: 2px solid #2563eb;
      outline-offset: 2px;
    }
    /* Pagination styles */
    .page-btn[aria-current="page"] { font-weight: 700; text-decoration: underline; }
    .page-btn { padding: 0.5rem 0.75rem; border-radius: 0.5rem; }
    .page-btn:hover { background: rgba(255,255,255,0.12); }
