@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&family=Rye&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Funnel Display', serif !important;
}

a {
  text-decoration: none !important;
  color: inherit !important;
}

p,
ul,
li,
a,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0 !important;
  margin: 0 !important;
}

#header-top {
  background-color: green;
}

/* Navbar Styles */
#my-navigation {
  z-index: 999;
}

.navbar .nav-link {
  color: #4b5563;
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: #f97316;
}

/* Breadcrumb Styles */
.breadcrumb-section {
  border-bottom: 1px solid #e2e8f0;
}

.breadcrumb {
  font-size: 0.95rem;
}

.breadcrumb-item a {
  color: #1e3a8a;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #ffc107;
}

.breadcrumb-item.active {
  color: #64748b;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #64748b;
}

.main {
  width: 100%;
  min-height: 100vh;
}

.hero-section {
  width: 100%;
  height: auto;
}

.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Featured Card Section */
.features {
  background-color: #fff;
}

.feature-card {
  padding: 2rem;
  text-align: center;
  border: 1px solid #ffc107;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-title {
  color: #212529;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-underline {
  width: 50px;
  height: 3px;
  background-color: #ffc107;
  margin: 0 auto 1rem;
}

.feature-text {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .feature-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .feature-title {
    font-size: 1.25rem;
  }

  .feature-text {
    font-size: 0.9rem;
  }
  
  .contact-section {
    width: 100%;
    padding: 0;
    }
}

/* Contact Section */
.contact-section {
  width: 100%;
  padding: 10px 0;
}

.contact-section .contact-wrapper {
  max-width: 1224px;
  margin: 0 auto;
  padding: 0 10px;
}

.contact-section .contact-wrapper .contact-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.contact-container .contact-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

/* new form */

.booking-form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-form-card .form-control,
.booking-form-card .form-select {
  padding: 0.8rem 1rem;
  font-size: 1rem;
}

.booking-form-card .form-control:focus,
.booking-form-card .form-select:focus {
  box-shadow: none;
  border-color: #ffc107;
}

.booking-form-card .input-group-text {
  padding: 0.8rem 1rem;
}

.booking-form-card label {
  font-weight: 500;
  color: #666;
}

@media (max-width: 768px) {

  .booking-form-card {
    margin-top: 2rem;
  }
}

/* Animation for form elements */
.booking-form-card .form-control,
.booking-form-card .form-select,
.booking-form-card .btn {
  transition: all 0.3s ease;
}

.booking-form-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* end new form */

.contact-container .contact-right {
  flex: 1;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 2px solid #333;
  border-radius: 10px;
}
.contact-container .contact-right .contact-title {
  font-size: 1.7rem;
  font-weight: 800;
  text-decoration: underline;
  /* color: #f1b225; */
  color: #3aba6f;
}

.contact-container .contact-right .contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}

.contact-container .contact-right .contact-form label {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-container .contact-right .contact-form label span {
  font-size: 1.2rem;
  font-weight: 500;
}

.contact-container .contact-right .contact-form label input {
  width: 100%;
  border: 2px solid #333;
  border-radius: 10px;
  outline: none;
  padding: 12px 10px;
  font-size: 1rem;
}

.contact-container .contact-right .contact-form button {
  border: none;
  outline: none;
  padding: 12px 10px;
  width: 100%;
  text-align: center;
  background-color: #f1b225;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.4s ease;
}

.contact-container .contact-right .contact-form button:hover {
  transform: translateY(-5px);
  cursor: pointer;
  background-color: #3aba6f;
}

/* Premium Services Section Styles */
.premium-services {
  background-color: #1a1a1a;
}

.service-box {
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-10px);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.bg-purple {
  background-color: #6f42c1 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-box {
    margin-bottom: 20px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i {
    font-size: 24px;
  }
}

/* Popular Destinations Section Styles */
.destination-card {
  padding: 2rem;
  border-radius: 15px;
  color: white;
  height: 100%;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.destination-card:hover {
  transform: translateY(-10px);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.2;
  position: absolute;
  right: 20px;
  top: 20px;
}

.card-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.description {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.service-tags span {
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.service-tags span:hover {
  background: rgba(255, 255, 255, 0.3);
}

.book-btn {
  display: inline-block;
  background: yellowgreen;
  color: #333;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background: white;
  color: black;
  transform: translateY(-2px);
}

.bg-purple {
  background-color: #6f42c1;
}

@media (max-width: 768px) {
  .destination-card {
    padding: 1.5rem;
  }

  .card-content h3 {
    font-size: 1.5rem;
  }

  .service-tags {
    gap: 5px;
  }

  .service-tags span {
    font-size: 0.75rem;
    padding: 4px 10px;
  }
}

/* Custom Tours CTA Section */
.custom-tours-cta .cta-wrapper {
  background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.custom-tours-cta .btn-warning {
  transition: all 0.3s ease;
  font-weight: 600;
}

.custom-tours-cta .btn-warning:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

@media (max-width: 768px) {
  .custom-tours-cta .text-lg-end {
    text-align: left !important;
  }
}

.promisses-section {
  width: 100%;
  padding: 10px 20px;
}

.promisses-section .promisses-wrapper {
  max-width: 1224px;
  margin: 0 auto;
  padding: 0 10px;
}

.promisses-section .promisses-wrapper h4 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  color: #f1b225;
}

.promisses-section .promisses-wrapper .promisses-container {
  width: 100%;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.promisses-section .promisses-wrapper .promisses-container .promisses-card {
  width: 100%;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.promisses-container .promisses-card .promisses-img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.promisses-container .promisses-card .promisses-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.promisses-container .promisses-card .promisses-body {
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 5px;
}

.promisses-container .promisses-card .promisses-body h5 {
  font-size: 1.2rem;
  font-weight: bold;
}

.promisses-container .promisses-card .promisses-body mark {
  padding: 5px;
  font-size: 1rem;
}

.carousel-section {
  max-width: 1224px;
  margin: 0 auto;
  padding: 20px 10px;
}

.carousel-section h4 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  color: #f1b225;
}

.highlight-card {
  width: 100%;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
}

.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.message-section {
  width: 100%;
  padding: 20px 0;
}

.message-section h4 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  color: #f1b225;
}

.message-section .message-wrapper {
  max-width: 1224px;
  margin: 0 auto;
}

.message-section .message-wrapper .message-container {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.message-section .message-wrapper .message-container .message-left {
  flex: 1;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.message-left h5 {
  font-size: 1.2rem;
  font-weight: bold;
}

.message-left-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.address-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.message-container .address-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #f1b225;
  color: white;
}

.address-container .address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.address-container .address h5 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #222;
}

.address-container .address address {
  color: #555;
}

.address-container .address p {
  color: #555;
  font-size: 1rem;
}

.message-section .message-wrapper .message-container .message-right {
  flex: 1;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  /* border: 2px solid #333; */
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.message-container .message-right h5 {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  color: #222;
}

.message-container .message-right .message-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}

.message-container .message-right .message-form label {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.message-container .message-right .message-form label span {
  font-size: 1.2rem;
  font-weight: 500;
}

.message-container .message-right .message-form label input,
textarea {
  width: 100%;
  border: 2px solid #333;
  border-radius: 10px;
  outline: none;
  padding: 12px 10px;
  font-size: 1rem;
}

.message-container .message-right .message-form button {
  border: none;
  outline: none;
  padding: 12px 10px;
  width: 100%;
  text-align: center;
  background-color: #f1b225;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.4s ease;
}

.message-container .message-right .message-form button:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

.footer {
  width: 100%;
  padding-top: 20px;
  background-color: #222;
}

.footer-container {
  max-width: 1224px;
  margin: 0 auto;
  padding: 0 10px;
}

.footer-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h5 {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}

.footer-col p {
  color: whitesmoke;
}

.footer-col ul {
  list-style: none;
  color: whitesmoke;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 10px;
}

.footer-col ul li {
  transition: all 0.4s ease;
}

.footer-col ul li:hover {
  transform: translateX(3px);
  cursor: pointer;
}

.footer-col address {
  color: whitesmoke;
}

.footer-col .footer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: whitesmoke;
}

.footer-bottom {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: white;
  margin-top: 10px;
}

.footer-bottom p .signature {
  color: #f1b225;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Gallery page */
.gallery-container {
  width: 100%;
}

.gallery-container .gallery-wrapper {
  max-width: 1224px;
  margin: 0 auto;
  padding: 20px 10px;
}

.gallery-wrapper h4 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.2rem;
  color: #f1b225;
}

.gallery-wrapper .galleries {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.galleries .gallery-card {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.galleries .gallery-card .gallery-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.gallery-card .gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Testimonial Section Styles */
.testimonial-card {
  background: #000;
  border-radius: 15px;
  padding: 25px;
  margin: 15px;
  color: white;
}

.review-text {
  margin-bottom: 20px;
  position: relative;
}

.review-text p {
  font-size: 1rem;
  line-height: 1.6;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  overflow: hidden;
}

.reviewer-img {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-details h5 {
  margin: 0;
  font-weight: 600;
}

.reviewer-details p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.9rem;
}

/* Owl Carousel Custom Navigation */
.testimonial-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  background: white !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-carousel .owl-nav button.owl-prev {
  left: -20px;
}

.testimonial-carousel .owl-nav button.owl-next {
  right: -20px;
}

@media (max-width: 768px) {
  .testimonial-card {
    margin: 10px;
    padding: 20px;
  }

  .review-text p {
    font-size: 0.9rem;
  }
  
  .message-section {
    width: 100%;
    padding: 20px 10px;
    }
}

/* Float Icon */
#call {
  position: fixed;
  bottom: 10%;
  left: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f1b225;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  z-index: 999;
  /* Add the pulse animation */
  animation: pulse 2s infinite; 
}

#call:hover {
  transform: scale(1.2);
}

#whatsapp {
  position: fixed;
  bottom: 10%;
  right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #3aba6f;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  z-index: 999;
  /* Add the pulse animation */
  animation: pulse 2s infinite; 
}

#whatsapp:hover {
  transform: scale(1.2);
}

/* Define the keyframes for the pulse effect */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(241, 178, 37, 0.4); /* Optional: Adds a glow effect */
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 20px rgba(241, 178, 37, 0); /* Optional: Fades the glow out */
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(241, 178, 37, 0); /* Optional: Resets glow */
  }
}


/* About page */
.feature-box {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: #fff3cd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 28px;
}

.mission-item {
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

/* Responsive design */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .featured-section .featured-wrapper .featured-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-wrapper .galleries {
    grid-template-columns: repeat(1, 1fr);
  }

  .galleries .gallery-card .gallery-img {
    height: auto;
  }

  .contact-section .contact-wrapper .contact-container {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .message-section .message-wrapper .message-container {
    flex-direction: column;
  }

  .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 2px;
  }

  .footer-col {
    width: 100%;
  }

  .footer-bottom {
    padding: 10px;
    text-align: center;
  }

  .promisses-section .promisses-wrapper .promisses-container {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .message-container .message-right .message-form button {
      margin-top: 15px;
    }
}
