/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  background-color: #fff;
  color: #000;
  min-height: 100vh;
  scroll-behavior: smooth;
  padding-top: 120px;
}

/* Navbar */
.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}

.logo-image {
  height: 120px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05) rotate(-1deg);
  opacity: 0.95;
}

.nav-left .book-btn {
  padding: 10px 20px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-left .book-btn:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-center {
  display: flex;
  justify-content: center;
  flex-grow: 1;
}

.nav-right {
  position: relative;
}

.dropbtn {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.3s ease;
}

.dropbtn:hover {
  color: #a18000;
}

.dropdown-content {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: transform 0.3s ease, opacity 0.3s ease;
  padding: 10px 0;
}

.dropdown-content.show {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.dropdown-content a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
  background-color: #f5f5f5;
}

@media (max-width: 768px) {
  .nav-center {
    display: none;
  }

  .dropdown-content {
    position: fixed;
    top: 70px;
    right: 0;
    height: 100vh;
    width: 250px;
    background-color: white;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
    padding-top: 40px;
    flex-direction: column;
  }

  .dropdown-content a {
    padding: 20px;
    border-bottom: 1px solid #eee;
  }
}

/* Landing Section */
.landing-section {
  background-color: #f5f5f5;
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 900px) {
  .container {
    flex-direction: row;
    align-items: center;
  }
}

.text-content {
  flex: 1;
}

.small-heading {
  font-size: 16px;
  color: #a18000;
  margin-bottom: 10px;
}

.large-heading {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #444;
}

.learn-more-btn {
  padding: 12px 24px;
  font-weight: 500;
  border: 1px solid black;
  background: transparent;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background-color: black;
  color: white;
  transform: translateY(-2px);
}

.image-content {
  flex: 1;
  text-align: center;
}

.image-content img {
  width: 100%;
  border-radius: 10px;
  max-width: 500px;
  transition: transform 0.3s ease;
}

.image-content img:hover {
  transform: scale(1.03);
}

/* Carousel Section */
.carousel-section {
  width: 100%;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  background-color: #fff;
}

.carousel-container {
  position: relative;
  max-width: 1000px;
  width: 90%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.carousel-slide {
  display: none;
  width: 100%;
  height: 500px; /* Set fixed height for all images */
  animation: fadeEffect 2.5s ease-in-out; /* Slower fade */
  overflow: hidden;
}


.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Crops and fills without distortion */
  display: block;
}

/* At A Glimpse Section */
.glimpse-section {
  padding: 80px 20px;
  background-color: #fafafa;
  text-align: center;
}

.glimpse-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 40px;
}

.glimpse-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.glimpse-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.glimpse-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.glimpse-card p {
  padding: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  flex: 1;
}

.glimpse-link {
  display: block;
  padding: 10px 20px 20px;
  font-weight: 500;
  text-decoration: none;
  color: black;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
  width: fit-content;
}

.glimpse-link:hover {
  border-color: black;
}
/* Services Section */
.services-section {
  position: relative;
  background-image: url('services-bg.jpg'); /* replace with your image */
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 20px;
  text-align: center;
}
/* Services Section Button */
.services-btn {
  padding: 12px 24px;
  font-weight: 500;
  color: white;
  background: transparent;
  border: 1px solid white;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.services-btn:hover {
  background-color: white;
  color: black;
  transform: scale(1.05);
}


.services-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
}

.services-intro h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.services-intro p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.accordion {
  margin-top: 40px;
  text-align: left;
}

.accordion-item {
  border-top: 1px solid #fff;
  padding: 20px 0;
  cursor: pointer;
}

.accordion-item:last-child {
  border-bottom: 1px solid #fff;
}

.accordion-title {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  padding-right: 20px;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  opacity: 1;
  margin-top: 10px;
}


/* About Us - Parallax Section */
.about-section-parallax {
  background-image: url('about flag.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 20px;
  position: relative;
  color: black;
}

.about-content {
  background-color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #333;
}

.about-content h3 {
  margin-top: 30px;
  font-size: 20px;
}

.about-list {
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.about-list li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.about-btn {
  padding: 12px 24px;
  font-weight: 500;
  color: black;
  background: transparent;
  border: 1px solid black;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background-color: black;
  color: white;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .about-content {
    padding: 40px 20px;
  }
}

/* Contact Info Section */
.contact-info-section {
  padding: 80px 20px;
  background-color: #fafafa;
  text-align: center;
}

.contact-info-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-info-container h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.contact-info-container p {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  font-size: 16px;
  color: #333;
}

.contact-details li {
  margin: 12px 0;
}

.contact-details a {
  color: #000;
  text-decoration: underline;
}

.contact-info-btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid black;
  color: black;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.contact-info-btn:hover {
  background-color: black;
  color: white;
  transform: scale(1.05);
}


/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  font-size: 14px;
  color: #777;

  /* Footer */
.site-footer {
  background-color: #f9f9f9;
  padding: 60px 20px;
  color: #333;
  font-size: 15px;
  border-top: 1px solid #eee;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1 1 300px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

.footer-left p {
  line-height: 1.6;
  color: #555;
}

.footer-center h4,
.footer-right h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #000;
}

.footer-social a {
  display: inline-block;
  margin-right: 12px;
  transition: transform 0.3s;
}

.footer-social a:hover {
  transform: scale(1.1);
}

.footer-social img {
  width: 28px;
  height: 28px;
}

.footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-right ul li {
  margin-bottom: 10px;
}

.footer-right ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-right ul li a:hover {
  color: #000;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-social a {
    margin: 0 8px;
  }
}

}

