/* Navbar styles */
  * {
    margin: 0;
    padding: 0;
  }

/*===== Navbar for Desktop ========== */
.navbar {
  width: 100%;
  position: sticky;
  top: 0;
  background-color: #111;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 15px 30px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
 
  margin: auto;
}

.logo img {
  height: 80px;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 5px 10px;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ff8c42;
}

.btn {
  background: linear-gradient(90deg, #ff6a3d, #ffbe2e);
  padding: 10px 18px;
  border-radius: 30px;
  color: #111;
  font-weight: bold;
  text-decoration: none;
}

/* ========== Hamburger Icon ========== */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 1100;
}

/* ========== Mobile Sidebar Nav (Glass effect) ========== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.6);
    padding: 100px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: right 0.4s ease;
    z-index: 1001;
  }

  .nav-links.active {
    right: 0;
  }
  .nav-links a{
    color: black;
  }

  /* Hide desktop nav when mobile menu is open */
  .navbar .nav-links.desktop {
    display: none;
  }
}


  /* 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-section{
      padding-top: 20px;
    }
  .service-card p {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .service-card h3 {
    font-size: 1.6rem;
  }
}
 

  .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;
      align-items: center;
      text-align: center;
    }
  }
   /* 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: flex-start;
  padding: 40px 20px 20px;
  overflow-y: auto;
  box-sizing: border-box;
}

#popupOverlay.show {
  display: flex;
}

.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;
  flex-direction: row;
  flex-wrap: wrap;
  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;
  box-sizing: border-box;
}

.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;
}

.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;
  color: black;
}

.calendar-grid div.day {
  text-align: center;
  padding: 10px 0;
  border-radius: 6px;
  cursor: pointer;
  background: #eee;
  color: black;
  transition: background 0.2s;
}

.calendar-grid div.day.active {
  background: #007bff;
  color: white;
}

.calendar-grid div.day.disabled {
  pointer-events: none;
  opacity: 0.4;
  background-color: gray;
  color: black;
}

.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: white;
  z-index: 1;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .popup {
    flex-direction: column;
    max-width: 95%;
    height: auto;
  }
  .popup .left, .popup .right {
    padding: 25px;
    flex: 1 1 100%;
  }
  .calendar-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
  }
  .calendar-head button.nav-btn {
    font-size: 18px;
  }
  .calendar-grid div.day {
    font-size: 13px;
  }
  .time-slots div.slot {
    padding: 6px 12px;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  #popupOverlay {
    padding: 10px;
  }
  .popup {
    flex-direction: column;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
  .popup .left, .popup .right {
    padding: 20px;
    flex: 1 1 100%;
  }
  .popup .left h2 {
    text-align: center;
    font-size: 20px;
  }
  .popup .left h3 {
    text-align: center;
    font-size: 16px;
  }
  .popup .left p {
    text-align: center;
    
  }
  .popup .left input,
  .popup .left select {
    font-size: 14px;
    padding: 8px 10px;
  }
  .popup .left button#submitBooking {
    font-size: 15px;
    padding: 10px;
  }
  .calendar-head {
    flex-direction: column;
    gap: 10px;
  }
  .calendar-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
  }
  .calendar-grid div.day {
    font-size: 12px;
    padding: 8px 0;
  }
  .time-slots div.slot {
    font-size: 13px;
    padding: 6px 10px;
  }
  .close-btn {
    font-size: 24px;
    top: 8px;
    right: 10px;
    color: black;
  }
}
