/* Base Section */
.hero-section {
  position: relative;
  padding: 80px 5%;
  /* background-color: #ffffff; */
  overflow: hidden;
}

/* Decorative Circle */
.hero-section ul,
.hero-section ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-section ul li:first-child {
  width: 500px;
  height: 500px;
  background-color: var(--primary-color);
  position: absolute;
  right: 0px;
  top: -100px;
  z-index: 0;
}

/* Container */
.tour-service-container {
  margin-top: 95px;
  /* max-width: 1200px; */
  position: relative;
  z-index: 2;
}

/* Left Content Block */
.tour-service-content {
  float: left;
  width: 50%;
  box-sizing: border-box;
  padding-right: 3%;
  padding-left: 3%;
}

.tour-service-title {
    font-size: 45px;
    font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.tour-service-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
}

.tour-service-btn {
  display: inline-block;
  background-color: var(--btn-color);
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* .tour-service-btn:hover {
  background-color: #1c4d87;
} */

/* Right Image Block */
.tour-service-image-wrapper {
    justify-items: center;
  float: right;
  width: 50%;
  text-align: center;
  box-sizing: border-box;
}

.tour-service-image {
  max-width: 100%;
  height: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Clear Floats */
.tour-service-container::after {
  content: "";
  display: block;
  clear: both;
}

/* Responsive Design */

/* Tablet View */
@media (max-width: 992px) {
  .tour-service-content,
  .tour-service-image-wrapper {
    float: none;
    width: 100%;
    text-align: center;
    padding: 0;
  }

  .tour-service-title {
    font-size: 2rem;
  }

  .tour-service-description {
    font-size: 1rem;
  }

  .tour-service-image-wrapper {
    margin-top: 30px;
  }

  .hero-section ul li:first-child {
    width: 400px;
    height: 260px;
    right: -150px;
    top: -80px;
  }
}

/* Mobile View */
@media (max-width: 576px) {
  .hero-section {
    padding: 60px 20px;
  }

  .tour-service-title {
    font-size: 1.8rem;
  }

  .tour-service-btn {
    padding: 10px 22px;
    font-size: 0.95rem;
  }

  .hero-section ul li:first-child {
    width: 250px;
    height: 215px;
    right: -100px;
    top: -60px;
  }
}

.quad-section ul li:first-child {
  width: 500px;
  height: 500px;
  background-color: var(--primary-color);
  position: absolute;
  border-radius: 50%;
  left: -113px;
  top: 510px;
}

@media (max-width: 576px) {
  .quad-section ul li:first-child {
    width: 250px;
    height: 250px;
  }
}

.quad-section {
  padding: 80px 20px;
  /* background: #f9fafb; */
  text-align: center;
  margin-bottom: 50px;
}

.quad-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1b1b1b;
}

.quad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.quad-card {
  z-index: 1;
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.quad-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.quad-card img {
  border-radius: 0 0 90% 0;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.quad-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1b1b1b;
  margin: 20px 20px 10px;
}

.quad-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0 20px 25px;
  line-height: 1.6;
}

.quad-card a {
  color: var(--accent-color, #ff6600);
  text-decoration: none;
  font-weight: 600;
}

/* ✅ Responsive Design */
@media (max-width: 992px) {
  .quad-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .quad-grid {
    grid-template-columns: 1fr;
  }

  .quad-card img {
    height: 200px;
  }
}

.corporate-section {
  position: relative;
  overflow: visible;
  z-index: 1; 
  color: #fff;
  padding: 10px 90px;
}

/* Responsive Slider */
@media (max-width: 768px) {
  .corporate-section {
    padding: 10px 12px;
  }
}


/* 3️⃣ Add the background circle safely */
.corporate-section .circle-bg {
   position: absolute;
  top: -100px;
  right: 0;
  width: 250px;
  height: 500px;
  background-color: var(--btn-color);
  border-top-left-radius: 250px;
  border-bottom-left-radius: 250px;
  z-index: -1;
}



.event-slider-section { 
  background: var(--primary-color);
      padding: 60px 20px;
      text-align: center;
    }

    .event-slider-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .event-slider-subtitle {
      font-size: 1rem;
      max-width: 800px;
      margin: 0 auto 40px;
      color: #ddd;
      line-height: 1.6;
    }

    /* Swiper Container */
    .event-slider-swiper {
      width: 100%;
      padding-bottom: 50px;
    }

    .event-slider-slide {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .event-slider-heading {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #fff;
    }

    .event-slider-description {
      max-width: 800px;
      color: #ddd;
      font-size: 1rem;
      margin: 0 auto 30px;
      line-height: 1.6;
    }

    .event-slider-card-wrapper {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .event-slider-card {
      background-color: #fff;
      color: #333;
      /* border-radius: 10px; */
      overflow: hidden;
      width: 320px;
      /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
      text-align: left;
      transition: transform 0.3s ease;
    }

    .event-slider-card:hover {
      transform: translateY(-5px);
    }

    
.event-card-heading {
  width: 100%;
  background: var(--primary-color); /* transparent background */
  text-align: center;
  padding: 1px;
}

    .event-slider-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .event-slider-card h3 {
      font-size: 1.1rem;
      color: #f5a623;
      margin: 15px;
      font-weight: 700;
    }

    .event-slider-card p,
    .event-slider-card ul {
      margin: 15px 20px;
      font-size: 0.95rem;
      color: #555;
      line-height: 1.6;
    }

    .event-slider-card ul {
      padding-left: 20px;
    }

    /* Swiper navigation */
    .event-slider-next,
    .event-slider-prev {
      color: #ffffff;
    }

    @media (max-width: 768px) {
      .event-slider-title {
        font-size: 1.5rem;
      }

      .event-slider-card {
        width: 90%;
      }
    }