.service-card {
  background-color: #d7d7e4;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 25px 15px;
  width: 100%;
  max-width: 280px; /* makes each card consistent */
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Image */
.service-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

/* Heading */
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

/* Paragraph */
.service-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  margin: 0 5px 15px;
}

/* Button */
.btn-book {
  display: inline-block;
  background-color: #273053;
  color: #fff;
  padding: 8px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background-color: #080e28;
  box-shadow: 0 5px 12px rgba(18, 14, 9, 0.4);
}

/* 🔸 RESPONSIVE FIXES */

/* Tablets */
@media (max-width: 992px) {
  .service-card {
    max-width: 240px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .service-card {
    max-width: 90%;
    margin: 10px auto;
    padding: 20px 10px;
  }
  .service-card img {
    width: 75px;
    height: 75px;
  }
  .service-card h3 {
    font-size: 16px;
  }
  .service-card p {
    font-size: 13px;
  }
  .btn-book {
    padding: 7px 18px;
    font-size: 13px;
  }
}



/* section2 ////////// */

.cta-section {
  position: relative;
  background: linear-gradient(135deg, #d7d7e4, #9292b7);
  padding: 100px 0;
  overflow: hidden;
}

/* Abstract circles */
.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  z-index: 0;
}
.cta-section::before {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
}
.cta-section::after {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -100px;
}

.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #273053;
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover {
  background-color: #0022a8;
  transform: scale(1.05);
}

.cta-btn svg {
  transition: transform 0.3s ease;
}

.cta-btn:hover svg {
  transform: rotate(10deg);
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
  .cta-section {
    padding: 70px 0;
  }
  .cta-btn {
    font-size: 16px;
    padding: 12px 22px;
  }
  .cta-btn svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .cta-btn {
    width: 90%;
    justify-content: center;
  }
}



/* places  */

.famous-places {
  background-color: #273053;
  position: relative;
  overflow: hidden;
}

.famous-places::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.famous-places::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: rgba(121, 100, 255, 0.15);
  border-radius: 50%;
  z-index: 0;
}

.famous-places h2 {
  font-weight: 700;
  letter-spacing: 1px;
}

.place-card {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.place-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #002fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.place-card h5 {
  color: #fff;
  font-weight: 600;
  margin-top: 10px;
  font-size: 16px;
}

.place-card:hover img {
  transform: scale(1.1);
  border-color: #fff;
}

.place-card:hover {
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .place-card img {
    width: 90px;
    height: 90px;
  }
  .place-card h5 {
    font-size: 14px;
  }
}


.faq-section {
  background-color: #f0f8ff;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: #07A0E6;
  opacity: 0.15;
  border-radius: 50%;
}

.faq-section::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 300px;
  height: 300px;
  background: #273053;
  opacity: 0.2;
  border-radius: 50%;
}

.faq-heading {
  color: #273053;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 1px;
}

.faq-subtext {
  color: #273053;
  opacity: 0.8;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(7, 160, 230, 0.25);
}

.faq-question {
  width: 100%;
  background: linear-gradient(90deg, #273053, #07A0E6);
  color: #fff;
  border: none;
  outline: none;
  padding: 15px 20px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-answer {
  background-color: #f9fcff;
  color: #273053;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-answer p {
  margin: 15px 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 15px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-heading {
    font-size: 1.6rem;
  }
  .faq-question {
    font-size: 15px;
    padding: 12px 15px;
  }
  .faq-answer p {
    font-size: 14px;
  }
}


/* gallery  */

.gallery-section {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -80px;
  width: 220px;
  height: 220px;
  background: #ffffff;
  opacity: 0.15;
  border-radius: 50%;
}

.gallery-section::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: #ffffff;
  opacity: 0.15;
  border-radius: 50%;
}

.gallery-heading {
  color: #273053;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 1px;
}

.gallery-subtext {
  color: #273053;
  opacity: 0.8;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.gallery-item::after {
  content: "View";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(7, 160, 230, 0.9);
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-heading {
    font-size: 1.6rem;
  }
  .gallery-item img {
    height: 200px;
  }
}
