
    /* CSS Reset and Base Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      background: linear-gradient(135deg, #929f36 0%, #34495e 50%, #2c3e50 100%);
      min-height: 100vh;
    }

    /* Header Styles */
    .header {
      background: rgba(250, 247, 243, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
      padding: 1rem 0;
    }

    .header-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 1rem 2rem;
      gap: 1rem;
    }

    .logo {
      width: 200px !important;
      height: auto;
      margin-bottom: 0.5rem;
    }

    .nav-menu {
      display: flex;
      gap: 2rem;
      align-items: center;
    }

    .nav-link {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .nav-link:hover {
      color: #ff6a00;
    }

    .cta-button {
      background: linear-gradient(45deg, #ff6a00, #ff8c42);
      color: white;
      padding: 0.8rem 1.5rem;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 106, 0, 0.4);
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, rgba(17, 4, 130, 0.9), rgba(52, 73, 94, 0.9));
      color: white;
      text-align: center;
      padding: 4rem 2rem;
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      background: linear-gradient(45deg, #fff, #ff6a00);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero h4 {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto 2rem;
      opacity: 0.9;
    }

    /* Content Wrapper */
    .content-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* Section Styles */
    section {
      padding: 3rem 0;
    }

    .section-light {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
    }

    .section-dark {
      background: rgba(0, 0, 0, 0.1);
      color: white;
    }

    h1, h2 {
      color: #333;
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .section-dark h2 {
      color: white;
    }

    /* Enhanced contrast for dark background */
    .section-light h2 {
      color: #2c3e50;
    }

    /* Booking Form Section */
    .booking-section {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 4rem 0;
    }



    .form-group {
      margin-bottom: 1.5rem;
    }

    label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: #333;
      text-align: left;
    }

    input, select {
      width: 100%;
      padding: 1rem;
      border: 2px solid #e1e5e9;
      border-radius: 10px;
      font-size: 1rem;
      transition: all 0.3s ease;
      background: #f8f9fa;
    }

    input:focus, select:focus {
      outline: none;
      border-color: #ff6a00;
      background: white;
      box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
    }

    button {
      width: 100%;
      padding: 1rem 2rem;
      background: linear-gradient(45deg, #ff6a00, #ff8c42);
      color: white;
      border: none;
      border-radius: 10px;
      font-size: 1.1rem;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 1rem;
    }

    button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(255, 106, 0, 0.3);
    }

    /* Phone Button */
    .phone-button {
      display: inline-block;
      background: linear-gradient(45deg, #202e23, #65736f);
      color: white;
      padding: 1rem 2rem;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      margin-top: 1rem;
    }

    .phone-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
    }

    /* Quick Contact Section */
    .quick-contact {
      text-align: center;
      padding: 3rem 0;
    }

    #map {
      height: 200px;
      width: 100%;
      margin-top: 20px;
      border-radius: 8px;
    }

    #feedback {
      margin-top: 15px;
      font-weight: bold;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Pulse animation removed to stop movement */

    /* Service Selection Grid */
    .service-selection {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 3rem 0;
    }

    .grid-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 800px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .service-card {
      background: rgb(255, 255, 255);
      border-radius: 20px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }


  .service-card img {
    width: 120px;   /* increase size */
    height: auto;   /* keep aspect ratio */
    margin-bottom: 1rem; /* spacing below image */
    display: block;
    margin-left: auto;
    margin-right: auto; /* center the image */
    
  }
  .service-card img { max-width: 40%; height: auto; }



    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, transparent, rgba(255, 106, 0, 0.1), transparent);
      transition: left 0.5s ease;
    }

    .service-card:hover::before {
      left: 100%;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .service-card img {
      width: 120px;
      height: 120px;
      object-fit: contain;
      margin-bottom: 1rem;
    }

    .service-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: #333;
    }

    .service-card p {
      color: #666;
      line-height: 1.6;
    }

    /* Destination and Service Grids */
    .destination-grid, .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .destination-card, .service-item {
      background: white;
      padding: 2rem;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      text-align: center;
    }

    .destination-card:hover, .service-item:hover {
      transform: translateY(-5px);
    }

    .destination-card h3, .service-item h3 {
      color: #ff6a00;
      margin-bottom: 0.5rem;
    }

    .dodo {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  padding: 20px;
  background-color: #f9f9f9;
}

.dodo > div {
  flex: 1 1 250px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.dodo h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: #333;
}

.dodo p {
  margin: 6px 0;
  color: #555;
}

.social-icons {
  display: flex;
  gap: 40px; /* Increased spacing between icons */
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.social-icons img {
  margin: 0 8px; /* Optional: adds horizontal margin to each icon */
  transition: transform 0.2s ease;
  cursor: pointer;
  
}
h1 {
  color:#a68e16
}


.social-icons img:hover {
  transform: scale(1.1);
}

    /* Service Tiers Section */
    .service-tiers {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 4rem 0;
    }

    .service-tiers h2 {
      text-align: center;
      margin-bottom: 3rem;
      font-size: 2.5rem;
      color: #333;
    }

    .dodo {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .dodo > div {
      background: white;
      border: none;
      border-radius: 15px;
      padding: 2rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .dodo > div:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .dodo > div::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(45deg, #ff6a00, #ff8c42);
    }

    .dodo h3 {
      color: #ff6a00;
      font-size: 1.4rem;
      margin-bottom: 1rem;
    }

    .dodo p {
      color: #666;
      line-height: 1.6;
      margin-bottom: 0.5rem;
    }

    /* Footer Styles */
    footer {
      background: linear-gradient(45deg, #1b2193, #3949ab) !important;
      color: #e0be00 !important;
      padding: 3rem 0 2rem !important;
      text-align: center;
    }

    footer h2 {
      color: #e0be00 !important;
      margin-bottom: 2rem;
    }

    .social-icons {
      justify-content: center;
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .social-icons img {
      border-radius: 50%;
      transition: all 0.3s ease;
      filter: brightness(0.9);
    }

    .social-link {
      display: inline-block;
      transition: all 0.3s ease;
      position: relative;
    }

    .social-link:hover {
      transform: translateY(-5px) scale(1.1);
    }

    .social-link:hover img {
      filter: brightness(1.2) saturate(1.3);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .social-link::after {
      content: attr(data-platform);
      position: absolute;
      bottom: -30px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(0, 0, 0, 0.8);
      color: white;
      padding: 5px 10px;
      border-radius: 5px;
      font-size: 12px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .social-link:hover::after {
      opacity: 1;
    }

    /* Ripple animation for social media clicks */
    @keyframes ripple {
      0% {
        width: 20px;
        height: 20px;
        opacity: 1;
      }
      100% {
        width: 100px;
        height: 100px;
        opacity: 0;
      }
    }

    /* Social media platform specific hover colors */
    .social-link[data-platform*="Twitter"]:hover img {
      filter: brightness(1.2) saturate(1.3) hue-rotate(10deg);
    }

    .social-link[data-platform*="Instagram"]:hover img {
      filter: brightness(1.2) saturate(1.5) hue-rotate(-10deg);
    }

    .social-link[data-platform*="Facebook"]:hover img {
      filter: brightness(1.2) saturate(1.3) hue-rotate(5deg);
    }

    .social-link[data-platform*="TikTok"]:hover img {
      filter: brightness(1.2) saturate(1.4) hue-rotate(-5deg);
    }

    /* Map Styles */
    #map {
      height: 300px !important;
      width: 100% !important;
      border-radius: 15px;
      margin-top: 2rem;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      position: relative;
      z-index: 1;
    }

    /* Ensure Leaflet styles work properly */
    .leaflet-container {
      height: 300px !important;
      border-radius: 15px;
    }

    /* Feedback Styles */
    #feedback, #booking-feedback {
      margin: 1rem 0;
      padding: 1rem;
      border-radius: 10px;
      font-weight: bold;
      text-align: center;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
      }

      .logo {
        width: 100px !important;
      }

      .nav-menu {
        flex-direction: column;
        gap: 1rem;
      }

      .hero h1 {
        font-size: 2rem;
      }

      .hero h4 {
        font-size: 1rem;
      }

      .grid-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
      }

      .container {
        margin: 0 1rem;
        padding: 2rem;
      }

      .destination-grid, .service-grid {
        grid-template-columns: 1fr;
      }

      .dodo {
        grid-template-columns: 1fr;
        padding: 0 1rem;
      }

      .social-icons {
        flex-wrap: wrap;
        gap: 1rem;
      }

      .social-icons img {
        width: 60px !important;
      }
    }

    @media (max-width: 480px) {
      .hero {
        padding: 2rem 1rem;
      }

      .hero h1 {
        font-size: 1.8rem;
      }

      .service-card {
        padding: 1.5rem;
      }

      .container {
        padding: 1.5rem;
      }

      .phone-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
      }
    }

    .requirements {
      display: block;
      padding: 40px;
      color: #ddd;
      background-color: rgba(96, 113, 129, 0.836);
    }

      .requirements a {
    color: #0313ff; /* change to any hex, rgb, or named color */
    text-decoration: none; /* optional: removes underline */
  }

  .requirements a:hover {
    color: #ff6600; /* hover color */
    text-decoration: underline; /* optional: adds underline on hover */
  }

  .intro-text {
    color: #a61657;
    font-weight: bold;
    padding-bottom: 20px;
  }


  .ContactForm {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  border: 2px solid purple;
  background: rgba(5, 4, 4, 0.9);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
 .ContactFormPortal {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ContactForm input,
.ContactForm textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  background: #fff;
  color: #333;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ContactFormPortal input,
.ContactFormPortal textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  background: #fff;
  color: #333;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ContactForm input:focus,
.ContactForm textarea:focus {
  border-color: purple;
  box-shadow: 0 0 5px rgba(128, 0, 128, 0.4);
}
.ContactFormPortal input:focus,
.ContactFormPortal textarea:focus {
  border-color: purple;
  box-shadow: 0 0 5px rgba(128, 0, 128, 0.4);
}

.ContactFormPortal textarea {
  min-height: 150px;
  resize: vertical;
}
.ContactForm textarea {
  min-height: 150px;
  resize: vertical;
}

.ContactForm button {
  width: 100%;
  padding: 12px;
  background: purple;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.ContactForm button:hover {
  background: #5a0a5a;
}
.p1 {
  color: #ff0000;
  font-weight: bold;
}
.contactUs {
  margin-bottom: 20px;
  width: 100%;
  padding: 12px;
  background: rgb(19, 17, 19);
  color: white;
  border: 5px solid purple;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}

    .container {
      max-width: 700px;
      margin: auto;
      background: white;
      border: 5px solid #040304;
      padding: 3rem;
      border-radius: 20px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
      animation: fadeIn 0.8s ease-out;
    }
    h3, h4 {
      color: #ffffff;
    }
