  :root {
      --primary-color: #059669;
      --accent-color: #10b981;
      --light-gray: #f1f5f9;
      --white: #ffffff;
      --dark-text: #1f2937;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'DM Sans', sans-serif;
      line-height: 1.6;
      color: var(--dark-text);
  }

  .navbar {
      background: var(--white) !important;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
  }

  .navbar-brand {
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--primary-color) !important;
  }

  .navbar-nav .nav-link {
      font-weight: 500;
      margin: 0 10px;
  }

  .nav-link {
      font-weight: 500;
      color: var(--dark-text) !important;
      transition: color 0.3s ease;
  }

  .nav-link:hover {
      color: var(--primary-color) !important;
  }

  /* 
  .hero-section {
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
      color: white;
      padding: 120px 0 80px;
      position: relative;
      overflow: hidden;
      height: 100vh;
  }

  .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('/placeholder.svg?height=600&width=1200') center/cover;
      opacity: 0.1;
      z-index: 1;
  }

  .hero-content {
      position: relative;
      z-index: 2;
  } */


  .hero-section {
      position: relative;
    background: url('./assets/gallery/img12.webp') center center / cover no-repeat;
      color: white;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      text-align: center;
  }

  .hero-section .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* backdrop-filter: blur(3px); */
      background-color: rgba(0, 0, 0, 0.3);
      z-index: 1;
  }

  .hero-section .content {
      position: relative;
      z-index: 2;
      top: 50px;
  }

  .hero-title {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .hero-subtitle {
      font-size: 1.3rem;
      margin-bottom: 2rem;
      opacity: 0.95;
  }

  .btn-primary-custom {
      background: var(--accent-color);
      border: none;
      padding: 15px 35px;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  .btn-primary-custom:hover {
      background: var(--primary-color);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
  }

  .section-padding {
      padding: 80px 0;
  }

  .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 3rem;
      color: var(--primary-color);
      position: relative;
  }

  .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--accent-color);
      border-radius: 2px;
  }

  .facility-card {
      background: var(--white);
      border-radius: 15px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      height: 100%;
      border: 2px solid transparent;
  }

  .facility-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      border-color: var(--accent-color);
  }

  .facility-icon {
      font-size: 3rem;
      color: var(--primary-color);
      margin-bottom: 1.5rem;
  }

  .facility-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--dark-text);
  }

  .about-section {
      background: var(--light-gray);
  }

  .stats-section {
      background: var(--primary-color);
      color: white;
  }

  .stat-item {
      text-align: center;
      padding: 2rem 1rem;
  }

  .stat-number {
      font-size: 3rem;
      font-weight: 700;
      display: block;
      margin-bottom: 0.5rem;
  }

  .stat-label {
      font-size: 1.1rem;
      opacity: 0.9;
  }

  .booking-section {
      background: var(--white);
  }

  .booking-card {
      background: var(--light-gray);
      border-radius: 15px;
      padding: 3rem;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .price-tag {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 1rem;
  }


  @media (max-width: 768px) {
      .hero-title {
          font-size: 2.5rem;
      }

      .hero-subtitle {
          font-size: 1.1rem;
      }

      .section-title {
          font-size: 2rem;
      }
  }

  .loading-animation {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--primary-color);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.5s ease;
  }

  .shuttlecock {
      width: 60px;
      height: 60px;
      background: white;
      border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
      animation: bounce 1.5s infinite;
  }

  @keyframes bounce {

      0%,
      20%,
      50%,
      80%,
      100% {
          transform: translateY(0);
      }

      40% {
          transform: translateY(-30px);
      }

      60% {
          transform: translateY(-15px);
      }
  }


  /* Gsllery */

  .gallery-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      cursor: pointer;
      transition: transform 0.3s ease;
  }

  .gallery-img:hover {
      transform: scale(1.05);
  }

  .gallery-item {
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 20px;
  }

  #lightbox {
      display: none;
      position: fixed;
      top: 50px;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
      z-index: 1000;
  }

  #lightbox.active {
      display: flex;
  }

  #lightbox-img {
      max-width: 90%;
      max-height: 80%;
      border-radius: 8px;
  }

  .lightbox-controls {
      position: absolute;
      top: 20px;
      right: 20px;
  }

  .nav-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 2rem;
      color: white;
      cursor: pointer;
      background: rgba(0, 0, 0, 0.5);
      padding: 10px;
      border-radius: 50%;
  }

  .prev-arrow {
      left: 20px;
  }

  .next-arrow {
      right: 20px;
  }

  .contact-section {
      background-color: var(--light-gray);
  }

  .contact-info {
      background: white;
      border-radius: 15px;
      padding: 2rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .footer {
      background-color: #212529;
      color: #ffffff;
      /* padding: 3rem 0; */
  }

  .footer h5 {
      font-size: 1.25rem;
      font-weight: 600;
  }

  .footer p,
  .footer a {
      font-size: 0.9rem;
  }

  .footer .text-muted {
      color: #adb5bd !important;
  }

  .footer .text-muted a:hover {
      color: #ffffff !important;
      text-decoration: underline;
  }

  .footer .social-links a {
      font-size: 1.2rem;
      transition: color 0.3s ease;
  }

  .footer .social-links a:hover {
      color: #adb5bd;
  }

  .footer hr {
      border-color: #444;
  }

  .copyright a:hover {
      color: var(--primary-color);
      transition: color 0.3s ease;
  }


  .contact-buttons-fixed {
      position: fixed;
      bottom: 70px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
      /* Ensure it's above other content */
  }

  .whatsapp-position {
      position: fixed;
      bottom: 70px;
      left: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
  }

  .whatsapp-button,
  .call-button {
      padding: 5px 5px;
      background-color: #25D366;
      text-decoration: none;
      border-radius: 15%;
      /* To make them round */
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s, transform 0.3s;
  }

  .whatsapp-button img,
  .call-button img {
      height: 40px;
  }

  .call-button {
      background-color: #f1f5f9;
  }

  .whatsapp-button:hover,
  .call-button:hover {
      opacity: 0.8;
      transform: scale(1.1);
  }