  /* Global Styles */
  :root {
      --black: #000000;
      --red: #e74c3c;
      --green: #27ae60;
      --white: #ffffff;
      --dark-green: #219653;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  body {
      background-color: var(--white);
      color: var(--black);
      line-height: 1.6;
      overflow-x: hidden;
  }

  .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }

  section {
      padding: 80px 0;
      position: relative;
  }

  h1,
  h2,
  h3,
  h4 {
      margin-bottom: 20px;
      font-weight: 700;
  }

  h1 {
      font-size: 2.5rem;
  }

  h2 {
      font-size: 2.2rem;
      text-align: center;
      margin-bottom: 50px;
      position: relative;
  }

  h2::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background-color: var(--green);
      border-radius: 2px;
  }

  p {
      margin-bottom: 15px;
  }

  .btn {
      display: inline-block;
      padding: 14px 32px;
      background-color: var(--green);
      color: var(--white);
      border: none;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.4s ease;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
      position: relative;
      overflow: hidden;
  }

  .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: 0.5s;
  }

  .btn:hover::before {
      left: 100%;
  }

  .btn:hover {
      background-color: var(--dark-green);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
  }

  .btn-red {
      background-color: var(--red);
      box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
  }

  .btn-red:hover {
      background-color: #c0392b;
      box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
  }

  .btn-outline {
      background-color: transparent;
      border: 2px solid var(--red);
      color: var(--green);
      box-shadow: none;
  }

  .btn-outline:hover {
      background-color: var(--red);
      color: var(--white);
  }

  .text-center {
      text-align: center;
  }

  .success-badge {
      display: inline-block;
      padding: 5px 15px;
      background-color: var(--green);
      color: var(--white);
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-left: 10px;
      animation: pulse 2s infinite;
  }

  @keyframes pulse {
      0% {
          transform: scale(1);
      }

      50% {
          transform: scale(1.05);
      }

      100% {
          transform: scale(1);
      }
  }

  /* Header Styles */
  header {
      background-color: var(--black);
      color: var(--red);
      padding: 20px 0;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
  }

  header.scrolled {
      padding: 15px 0;
      background-color: var(--black);
  }

  .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .logo {
      display: flex;
      text-decoration: none;
      color: var(--green);
      font-size: 1.8rem;
      font-weight: bold;
  }

  .logo span {
      color: var(--white);

  }

  .logo-icon {
      width: 100px;
      padding: 2px;
  }

  nav ul {
      display: flex;
      list-style: none;
  }

  nav ul li {
      margin-left: 30px;
      position: relative;
  }

  nav ul li a {
      color: var(--white);
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s ease;
      position: relative;
  }

  nav ul li a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--green);
      transition: width 0.3s ease;
  }

  nav ul li a:hover::after {
      width: 100%;
  }

  nav ul li a:hover {
      color: var(--green);
  }

  .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: var(--green);
      font-size: 1.5rem;
      cursor: pointer;
      transition: transform 0.3s ease;
  }

  .mobile-menu-btn:hover {
      transform: rotate(90deg);
  }

 
  /*Hero Carousel*/
  .hero-carousel {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1511578314322-379afb476865?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
      color: white;
  }

  .carousel-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      z-index: 0;
      pointer-events: none;
      transition: opacity 1s ease-in-out;
      display: flex;
      align-items: center;
      background-size: cover;
      background-position: center;     
  }

  .carousel-slide.active {
      opacity: 1;
      z-index: 1;
      pointer-events: auto;
  }

  .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }

  .hero-content {
      max-width: 800px;
      color: var(--dark-color);
      z-index: 2;
  }

  .hero-content h1 {
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
      line-height: 1.2;
  }

  .hero-content h1 span {
      color: var(--primary-color);
  }

  .hero-content p {
      font-size: 1.5rem;
      margin-bottom: 2rem;
      line-height: 1.6;
  }

  .hero-content p span {
      font-weight: bold;
      color: var(--primary-color);
  }

  .hero-btns {
      display: flex;
      gap: 20px;
      margin-top: 30px;
  }

  .primary-btn,
  .secondary-btn,
  .gallery-btn {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      text-align: center;
  }

  .primary-btn {
      background-color: var(--dark-green);
      color: white;
      border: 2px solid var(--white);
  }

  .primary-btn:hover {
      background-color: transparent;
      color: var(--white);
  }

  .secondary-btn {
      background-color: transparent;
      color: var(--dark-green);
      border: 2px solid var(--white);
  }

  .secondary-btn:hover {
      background-color: var(--dark-color);
      color: white;
  }

  .gallery-btn {
      background-color: var(--primary-color);
      color: white;
      border: 2px solid var(--primary-color);
  }

  .gallery-btn:hover {
      background-color: transparent;
      color: var(--primary-color);
  }

  .countdown-floater {
      position: absolute;
      right: 20px;
      bottom: 20px;
      background-color: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      max-width: 350px;
      z-index: 10;
  }

  .countdown-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      color: var(--primary-color);
      margin-bottom: 10px;
      font-size: 1.1rem;
  }

  .close-btn {
      width: 20px;
      height: 20px;
      position: relative;
      cursor: pointer;
  }

  .close-btn::before,
  .close-btn::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: var(--dark-color);
  }

  .close-btn::before {
      transform: rotate(45deg);
  }

  .close-btn::after {
      transform: rotate(-45deg);
  }

  .countdown-title {
      font-weight: bold;
      margin-bottom: 15px;
      font-size: 1.2rem;
  }

  .countdown-timer {
      display: flex;
      justify-content: space-between;
      text-align: center;
  }

  .countdown-unit {
      flex: 1;
  }

  .countdown-number {
      font-size: 1.8rem;
      font-weight: bold;
      color: var(--primary-color);
  }

  .countdown-label {
      font-size: 0.8rem;
      color: var(--dark-color);
  }

  .carousel-nav {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10;
  }

  .carousel-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .carousel-dot.active {
      background-color: white;
      transform: scale(1.2);
  }

  @media (max-width: 768px) {
      .hero-content h1 {
          font-size: 2.5rem;
      }

      .hero-content p {
          font-size: 1.2rem;
      }

      .hero-btns {
          flex-direction: column;
          gap: 15px;
      }

      .countdown-floater {
          position: relative;
          right: auto;
          bottom: auto;
          margin-top: 40px;
          max-width: 100%;
      }

      .carousel-nav {
          bottom: 20px;
      }
  }

  /* About Section */
  .about {
      background-color: #f9f9f9;
  }

  .about-content {
      display: flex;
      align-items: center;
      gap: 50px;
  }

  .about-text {
      flex: 1;
  }

  .about-text h1 {
      color: var(--red);
  }

  .about-image {
      flex: 1;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
      transform: perspective(1000px) rotateY(-10deg);
      transition: transform 0.5s ease;
  }

  .about-image:hover {
      transform: perspective(1000px) rotateY(0deg);
  }

  .about-image img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
  }

  .about-image:hover img {
      transform: scale(1.05);
  }

  .stats {
      display: flex;
      justify-content: space-between;
      margin-top: 40px;
  }


  .stat-item {
      text-align: center;
      padding: 20px;
      background-color: var(--white);
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      flex: 1;
      margin: 0 10px;
      transition: transform 0.3s ease;
  }

  .stat-item:hover {
      transform: translateY(-10px);
  }

  .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--green);
      margin-bottom: 10px;
  }

  .stat-label {
      color: #666;
      font-weight: 600;
  }

  /* Services Section */
  .services {
      background-color: var(--white);
      position: relative;
      overflow: hidden;
  }

  .services::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('https://www.transparenttextures.com/patterns/brushed-alum.png');
      opacity: 0.05;
      z-index: 0;
  }

  .services .container {
      position: relative;
      z-index: 1;
  }

  .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
  }

  .service-card {
      background-color: var(--white);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      position: relative;
      z-index: 1;
      transform: translateY(50px);
      opacity: 0;
  }

  .service-card.animated {
      transform: translateY(0);
      opacity: 1;
  }

  .service-card:nth-child(1) {
      transition-delay: 0.2s;
  }

  .service-card:nth-child(2) {
      transition-delay: 0.4s;
  }

  .service-card:nth-child(3) {
      transition-delay: 0.6s;
  }

  .service-card:hover {
      transform: translateY(-10px) !important;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }

  .service-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.5s ease;
  }

  .service-card:hover img {
      transform: scale(1.1);
  }

  .service-card-content {
      padding: 25px;
      position: relative;
  }

  .service-card h3 {
      color: var(--black);
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
  }

  .service-card h3::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 50px;
      height: 3px;
      background-color: var(--green);
  }

  .service-icon {
      position: absolute;
      top: -30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background-color: var(--red);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.5rem;
      box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
  }

  /* Events Section */
  .events {
      background-color: #f9f9f9;
  }

  .events-tabs {
      display: flex;
      justify-content: center;
      margin-bottom: 40px;
  }

  .tab-btn {
      padding: 12px 25px;
      background-color: transparent;
      border: none;
      border-bottom: 3px solid transparent;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      color: #666;
  }

  .tab-btn.active {
      color: var(--black);
      border-bottom: 3px solid var(--green);
  }

  .tab-content {
      display: none;
  }

  .tab-content.active {
      display: block;
      animation: fadeIn 0.5s ease;
  }

  .events-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
  }

  .event-card {
      background-color: var(--white);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
  }

  .event-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }

  .event-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
  }

  .event-card-content {
      padding: 25px;
  }

  .event-card h3 {
      color: var(--black);
      margin-bottom: 15px;
  }

  .event-meta {
      display: flex;
      justify-content: space-between;
      margin-bottom: 15px;
      color: #666;
      font-size: 0.9rem;
  }

  .event-success {
      color: var(--green);
      font-weight: 600;
  }

  .simple-header {
      background: #f4f4f4;
      padding: 40px 20px 20px;
      text-align: center;
      border-bottom: 1px solid #e0e0e0;
  }

  .simple-header h1 {
      margin-bottom: 15px;
      font-size: 2.5rem;
      color: #333;
  }

  .simple-header .btn {
      padding: 10px 20px;
      font-size: 0.95rem;
  }


  .gallery {
      padding: 60px 0;
      margin-top: 15%;
      background-color: var(--dark-green);
  }

  .gallery h1 {
      font-size: 2.2rem;
      text-align: center;
      margin-bottom: 40px;
      color: #222;
  }

  .gallery-btn {
      padding: 10px 20px;
      font-size: 0.95rem;
      background: var(--red);
      text-decoration: none;
      color: var(--white);
      border-radius: 2px;
  }

  .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
      padding: 0 20px;
  }

  .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
      display: block;
  }

  .gallery-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }

  .gallery-item:hover img {
      transform: scale(1.1);
  }

  .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.45);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .gallery-item:hover .gallery-overlay {
      opacity: 1;
  }

  .gallery-overlay i {
      color: #fff;
      font-size: 2rem;
  }

  /* Responsive Tweaks */
  @media (max-width: 768px) {
      .gallery-grid {
          grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      }

      .gallery-overlay i {
          font-size: 1.5rem;
      }
  }

  .gallery-grid.masonry {
      column-count: 3;
      column-gap: 15px;
  }

  .gallery-grid.masonry .gallery-item {
      display: inline-block;
      width: 100%;
      margin-bottom: 15px;
  }

  @media (max-width: 768px) {
      .gallery-grid.masonry {
          column-count: 2;
      }
  }


  /* Team Section */
  .team {
      background-color: var(--white);
      position: relative;
  }

  .team::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 50%;
      background-color: #f9f9f9;
      z-index: 0;
  }

  .team .container {
      position: relative;
      z-index: 1;
  }

  .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
  }

  .team-member {
      text-align: center;
      background-color: var(--white);
      padding: 40px 30px;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      z-index: 1;
  }

  .team-member::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background-color: var(--green);
      transition: height 0.3s ease;
  }

  .team-member:hover::before {
      height: 10px;
  }

  .team-member:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }

  .team-member img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      object-fit: fill;
      margin-bottom: 20px;
      border: 5px solid var(--white);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
  }

  .team-member:hover img {
      transform: scale(1.05);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }

  .team-member h3 {
      color: var(--black);
      margin-bottom: 5px;
  }

  .team-member p.role {
      color: var(--green);
      font-weight: 600;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
  }

  .team-member p.role::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 30px;
      height: 2px;
      background-color: var(--green);
  }

  .social-links {
      display: flex;
      justify-content: center;
      gap: 15px;
  }

  .social-links a {
      width: 35px;
      height: 35px;
      background-color: #f5f5f5;
      color: var(--black);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
  }

  .social-links a:hover {
      background-color: var(--green);
      color: var(--white);
      transform: translateY(-3px);
  }

  /* Partners Section */
  .partners {
      background-color: #f9f9f9;
  }

  .partners-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      align-items: start;
  }

  @media (min-width: 1024px) {
      .partners-grid {
          grid-template-columns: repeat(4, 1fr);
      }
  }


  .partner-card {
      background-color: var(--white);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: all 0.4s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }

  .partner-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }

  .partner-card img {
      max-width: 150px;
      max-height: 80px;
      margin-bottom: 20px;
      filter: grayscale(100%);
      transition: all 0.3s ease;
  }

  .partner-card:hover img {
      filter: grayscale(0%);
      transform: scale(1.05);
  }

  .partner-card h3 {
      margin-bottom: 10px;
      color: var(--black);
  }

  /* Booking Section */
  .booking {
      background-color: var(--white);
      position: relative;
      overflow: hidden;
  }

  .booking::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('https://www.transparenttextures.com/patterns/cubes.png');
      opacity: 0.05;
      z-index: 0;
  }

  .booking .container {
      position: relative;
      z-index: 1;
  }

  .booking-form {
      max-width: 800px;
      margin: 0 auto;
      background-color: var(--white);
      padding: 50px;
      border-radius: 10px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      transform-style: preserve-3d;
      transform: perspective(1000px);
      transition: all 0.5s ease;
  }

  .booking-form:hover {
      transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  }

  .form-group {
      margin-bottom: 25px;
      position: relative;
  }

  .form-group label {
      display: block;
      margin-bottom: 10px;
      font-weight: 600;
      color: var(--black);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
      width: 100%;
      padding: 14px 20px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 1rem;
      transition: all 0.3s ease;
      background-color: #f9f9f9;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.2);
      outline: none;
      background-color: var(--white);
  }

  .form-group textarea {
      height: 150px;
      resize: vertical;
  }

  .form-row {
      display: flex;
      gap: 20px;
  }

  .form-row .form-group {
      flex: 1;
  }

  /* Testimonials Section */
  .testimonials {
      background-color: #f9f9f9;
  }

  .testimonial-slider {
      max-width: 800px;
      margin: 0 auto;
  }

  .testimonial {
      background-color: var(--white);
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      text-align: center;
      margin: 0 20px;
      position: relative;
  }

  .testimonial::before {
      content: '\201C';
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 5rem;
      color: var(--green);
      opacity: 0.2;
      font-family: serif;
      line-height: 1;
  }

  .testimonial::after {
      content: '\201D';
      position: absolute;
      bottom: 20px;
      right: 20px;
      font-size: 5rem;
      color: var(--green);
      opacity: 0.2;
      font-family: serif;
      line-height: 1;
  }

  .testimonial img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 20px;
      border: 3px solid var(--green);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .testimonial-content {
      font-style: italic;
      margin-bottom: 20px;
      font-size: 1.1rem;
      position: relative;
      z-index: 1;
  }

  .testimonial-author {
      font-weight: 700;
      color: var(--black);
  }

  .testimonial-company {
      color: var(--green);
      font-weight: 600;
  }

  /* Contact Section */
  .contact {
      background-color: var(--white);
  }

  .contact-content {
      display: flex;
      gap: 50px;
  }

  .contact-info {
      flex: 1;
  }

  .contact-info h3 {
      color: var(--black);
      margin-bottom: 30px;
      font-size: 1.5rem;
  }

  .contact-info p {
      margin-bottom: 25px;
      display: flex;
      align-items: flex-start;
  }

  .contact-info i {
      margin-right: 15px;
      color: var(--green);
      font-size: 1.2rem;
      margin-top: 3px;
  }

  .contact-map {
      flex: 1;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      height: 400px;
      background-color: #eee;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #666;
  }

  /* Footer */
  footer {
      background-color: var(--black);
      color: var(--white);
      padding: 80px 0 30px;
      position: relative;
  }

  .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 60px;
  }

  .footer-column h3 {
      color: var(--white);
      margin-bottom: 25px;
      font-size: 1.3rem;
      position: relative;
      padding-bottom: 10px;
  }

  .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 2px;
      background-color: var(--green);
  }

  .footer-column p {
      color: #bbb;
      margin-bottom: 20px;
  }

  .footer-column ul {
      list-style: none;
  }

  .footer-column ul li {
      margin-bottom: 12px;
  }

  .footer-column ul li a {
      color: #bbb;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
  }

  .footer-column ul li a:hover {
      color: var(--green);
      transform: translateX(5px);
  }

  .footer-column .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
  }

  .footer-column .social-links a {
      width: 40px;
      height: 40px;
      background-color: rgba(255, 255, 255, 0.1);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
  }

  .footer-column .social-links a:hover {
      background-color: var(--green);
      transform: translateY(-3px);
  }

  .footer-bottom {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid #333;
      color: #999;
      font-size: 0.9rem;
  }

  .footer-bottom a {
      color: var(--green);
      text-decoration: none;
  }

  /* Privacy Page */
  .privacy-content {
      background-color: var(--white);
      padding: 50px;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      margin-top: 150px;
  }

  .privacy-content h2 {
      text-align: left;
      margin-bottom: 30px;
  }

  .privacy-content h2::after {
      left: 0;
      transform: none;
  }

  .privacy-content h3 {
      margin-top: 40px;
      margin-bottom: 15px;
      color: var(--black);
  }

  .privacy-content p {
      margin-bottom: 20px;
      line-height: 1.8;
  }

  .privacy-content ul {
      margin-bottom: 20px;
      padding-left: 20px;
  }

  .privacy-content ul li {
      margin-bottom: 10px;
  }

  /* Animations */
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
      }

      to {
          opacity: 1;
      }
  }

  /* 3D Effects */
  .floating {
      animation: floating 3s ease-in-out infinite;
  }

  @keyframes floating {
      0% {
          transform: translateY(0px);
      }

      50% {
          transform: translateY(-15px);
      }

      100% {
          transform: translateY(0px);
      }
  }

  .rotate {
      animation: rotate 10s linear infinite;
  }

  @keyframes rotate {
      0% {
          transform: rotate(0deg);
      }

      100% {
          transform: rotate(360deg);
      }
  }

  /* Responsive Styles */
  @media (max-width: 1200px) {
      section {
          padding: 70px 0;
      }
  }

  @media (max-width: 992px) {
      .about-content {
          flex-direction: column;
      }

      .about-text,
      .about-image {
          flex: none;
          width: 100%;
      }

      .about-image {
          margin-top: 40px;
      }

      .contact-content {
          flex-direction: column;
      }

      .contact-map {
          margin-top: 40px;
      }

      .stats {
          flex-wrap: wrap;
      }

      .stat-item {
          flex: 0 0 calc(50% - 20px);
          margin: 10px;
      }
  }

  @media (max-width: 768px) {
      .mobile-menu-btn {
          display: block;
      }

      nav {
          position: fixed;
          top: 80px;
          left: -100%;
          width: 100%;
          height: calc(100vh - 80px);
          background-color: var(--black);
          transition: all 0.4s ease;
          padding: 30px 0;
      }

      nav.active {
          left: 0;
      }

      nav ul {
          flex-direction: column;
          align-items: center;
      }

      nav ul li {
          margin: 15px 0;
      }

      .hero h1 {
          font-size: 2.8rem;
      }

      .form-row {
          flex-direction: column;
          gap: 0;
      }

      .hero-btns {
          flex-direction: column;
          gap: 15px;
      }

      .btn {
          width: 100%;
          text-align: center;
      }

      .stat-item {
          flex: 0 0 100%;
          margin: 10px 0;
      }
  }

  @media (max-width: 576px) {
      section {
          padding: 60px 0;
      }

      h1 {
          font-size: 2.2rem;
      }

      h2 {
          font-size: 1.8rem;
      }

      .booking-form {
          padding: 30px;
      }

      .privacy-content {
          padding: 30px;
      }
  }

  /*Event count down*/
  .countdown-floater {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #f8f9fa;
      border-radius: 10px;
      padding: 15px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      font-family: Arial, sans-serif;
      min-width: 300px;
  }

  .countdown-header {
      background-color: var(--dark-green);
      color: var(--white);
      padding: 10px;
      margin: -15px -15px 15px -15px;
      border-radius: 7px 7px 0 0;
      text-align: center;
      font-weight: bold;
  }

  .countdown-title {
      font-size: 18px;
      margin-bottom: 5px;
      color: var(--red);
      font-weight: bolder;
  }

  .countdown-details {
      font-size: 14px;
      margin-bottom: 15px;
      color: var(--black);
  }

  .countdown-timer {
      display: flex;
      justify-content: space-between;
      text-align: center;
  }

  .countdown-unit {
      flex: 1;
  }

  .countdown-number {
      font-size: 24px;
      font-weight: bold;
      color: #2c3e50;
  }

  .countdown-label {
      font-size: 12px;
      color: #777;
  }

  .close-btn {
      position: absolute;
      top: 5px;
      right: 10px;
      cursor: pointer;
      color: white;
      font-weight: bold;
  }