/* Navbar styles */
  * {
    margin: 0;
    padding: 0;
  }

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  padding: 0px 40px;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}

/* Logo */
.logo img {
  max-width: 180px;
  height: auto;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #fd8b34;
}

/* Hamburger/Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Responsive Navbar */

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: #111;
    top: 89px;
    right: 0;
    width: 100%;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    padding: 10px 20px;
    width: 100%;
    text-align: center;
  }
}







  /* CTA button */
  .cta-button {
    background: linear-gradient(to right, #fd8b34, #fc5c5c);
    border: none;
    padding: 10px 20px;
    color: white;
    font-weight: bold;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
  }

  .cta-button:hover {
    opacity: 0.9;
  }



  .services-section {

    text-align: center;
    max-width: 1200px;
    padding-bottom: 20px;
    margin: auto;
  }

  .services-section h2 {
    font-size: 2.8rem;
    font-weight: 700;

    color: #1f2937;
    position: relative;
    letter-spacing: 2px;
  }

  .services-section h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #fc5c5c, #fd8b34);
    margin: 16px auto 0;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(253, 139, 52, 0.4);
  }

  .services-container {
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
  }

  .service-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    flex: 1 1 280px;
    max-width: 320px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .service-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    z-index: 10;
  }

  /* Background gradients and subtle pattern overlays */
  .service-card:nth-child(1) {
    background: linear-gradient(135deg, #ff667a 0%, #ff94a0 100%);
  }

  .service-card:nth-child(1)::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 15%, transparent 40%),
      repeating-conic-gradient(rgba(255, 255, 255, 0.08) 0% 25%, transparent 25% 50%);
    pointer-events: none;
    transition: opacity 0.3s ease;
    border-radius: 18px;
    z-index: 0;
  }

  .service-card:nth-child(1):hover::before {
    opacity: 0.6;
  }

  .service-card:nth-child(2) {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  }

  .service-card:nth-child(2)::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: repeating-radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 2px, transparent 6px);
    pointer-events: none;
    border-radius: 18px;
    z-index: 0;
    transition: opacity 0.3s ease;
  }

  .service-card:nth-child(2):hover::before {
    opacity: 0.7;
  }

  .service-card:nth-child(3) {
    background: linear-gradient(135deg, #fb9a3c 0%, #fcb045 100%);
  }

  .service-card:nth-child(3)::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 0 10px, transparent 10px 20px);
    pointer-events: none;
    border-radius: 18px;
    z-index: 0;
    transition: opacity 0.3s ease;
  }

  .service-card:nth-child(3):hover::before {
    opacity: 0.5;
  }

  /* Content above mask */
  .service-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.25);
  }

  .service-card h3 {
    margin: 16px 20px 8px;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  }

  .service-card p {
    font-size: 1rem;
    margin: 0 20px 20px;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  }

  .cta-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.85);
    color: #333;
    border: none;
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 40px;
    font-size: 1.05rem;
    margin-bottom: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .cta-btn:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  @media (max-width: 960px) {
    .services-container {
      gap: 24px;
    }
  }

  @media (max-width: 600px) {
    .services-container {
      flex-direction: column;
      align-items: center;
    }

    .service-card {
      max-width: 90vw;
    }
  }

 

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-transform: lowercase;
  }


  .btn {
    background: linear-gradient(90deg, #ff6a3d, #ffbe2e);
    padding: 10px 18px;
    border-radius: 30px;
    color: #111;
    font-weight: bold;
  }

  section {


    border-bottom: 1px solid #333;
  }

  .site-footer {
    background-color: #0c162b;
    color: #fff;
    font-size: 15px;
    padding: 40px 10% 0;
  }

  .footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }

  .footer-col {
    flex: 1;
    min-width: 200px;
  }

  .footer-col h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 16px;
  }

  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-col ul li {
    margin-bottom: 10px;
    color: #d4d4d4;
  }

  .footer-map {
    margin-top: 40px;
  }

  .footer-bottom {
    text-align: center;
    padding: 20px 0;
    background-color: #0a1225;
    font-size: 14px;
    margin-top: 20px;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .footer-columns {
      flex-direction: column;
      gap: 24px;
    }
  }
   /* Navbar */
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #f0f2f5;
    }

  

    /* Popup Overlay */
    /* Overlay */
    #popupOverlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 10000;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    #popupOverlay.show {
      display: flex;
    }

    /* Popup Container */
    .popup {
      background: #fff;
      width: 100%;
      max-width: 950px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
      display: flex;
      position: relative;
      transition: transform 0.3s ease;
      animation: popupIn 0.3s ease;
    }

    @keyframes popupIn {
      from {
        transform: scale(0.9);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    .popup .left, .popup .right {
      flex: 1;
      padding: 35px;
    }

    /* Left (Form) Side */
    .popup .left {
      background: #f7f9fc;
    }

    .popup .left h2 {
      font-size: 24px;
      margin-bottom: 5px;
      color: #333;
    }

    .popup .left h3 {
      font-weight: 600;
      margin-top: 0;
      color: #555;
    }

    .popup .left p {
      font-size: 14px;
      color: #777;
      margin-bottom: 25px;
    }

    .popup .left label {
      font-weight: 600;
      font-size: 14px;
      margin: 15px 0 5px;
      display: block;
    }

    .popup .left input,
    .popup .left select {
      width: 100%;
      padding: 10px 12px;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-size: 15px;
      outline: none;
      transition: border 0.2s;
    }

    .popup .left input:focus,
    .popup .left select:focus {
      border-color: #007bff;
    }

    .popup .left button#submitBooking {
      margin-top: 30px;
      padding: 12px 0;
      width: 100%;
      font-size: 16px;
      background: #007bff;
      border: none;
      color: #fff;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .popup .left button#submitBooking:disabled {
      background: #999;
      cursor: not-allowed;
    }

    /* Right (Calendar) Side */
    .calendar-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

    .calendar-head button.nav-btn {
      font-size: 20px;
      background: none;
      border: none;
      cursor: pointer;
      color: #007bff;
    }

    #monthYear {
      font-weight: bold;
      font-size: 18px;
      color: #333;
    }

    .calendar-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 6px;
      font-size: 14px;
    }

    .calendar-grid span {
      font-weight: 600;
      text-align: center;
    }

    .calendar-grid div.day {
      text-align: center;
      padding: 10px 0;
      border-radius: 6px;
      cursor: pointer;
      background: #eee;
      transition: background 0.2s;
    }

    .calendar-grid div.day:hover {
      background: #ddd;
    }

    .calendar-grid div.day.active {
      background: #007bff;
      color: white;
    }

    .calendar-grid div.day.disabled {
      pointer-events: none;
      opacity: 0.4;
      background: #f2f2f2;
    }

    .time-slots {
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .time-slots div.slot {
      padding: 8px 16px;
      background: #eaeaea;
      border-radius: 20px;
      cursor: pointer;
      user-select: none;
    }

    .time-slots div.slot.active {
      background-color: #007bff;
      color: white;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 28px;
      background: none;
      border: none;
      color: #fff;
      z-index: 1;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .popup {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
      }

      .popup .left,
      .popup .right {
        padding: 20px;
      }
    }