
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.heading{
  padding-top: 80px !important;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background-color: #D9D9D9;
    padding-top: 80px; /* Adjust this to match nav height */
}

nav {
  background-color: white;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  position: fixed;       /* Change from relative to fixed */
  top: 0;                /* Stick it to the top */
  left: 0;
  width: 100%;           /* Ensure it spans full width */
  z-index: 1000;
  margin-top: -5px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
 
}
/*  padding-left: 2cm;
  padding-right: 2cm; only in big screen */
  @media (min-width: 1200px) {
    .nav-container {
      padding-left: 2cm;
      padding-right: 2cm;
    }
  }
  @media (max-width: 768px) {
    .nav-container {
      padding-left: 1cm;
      padding-right: 1cm;
    }
  }
  @media (max-width: 425px) {
    .nav-container {
      padding-left: 0.5cm;
      padding-right: 0.5cm;
    }
  }

.nav-logo img {
  height: 40px;
  transition: transform 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.menu {
  display: flex;
  gap: 25px;
  list-style: none;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

.menu li {
  position: relative;
}

.menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  z-index: 1001;
}

.menu li:hover > ul {
  display: block;
}

.menu li ul li {
  border-bottom: 1px solid #f0f0f0;
}

.menu li ul li:last-child {
  border-bottom: none;
}

.menu li ul li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  font-weight: 500;
}

.menu li ul li a.active {
  color: #9c4d27;
  background-color: rgba(156, 77, 39, 0.08);
}

.menu li ul li a:hover {
  background-color: rgba(156, 77, 39, 0.08);
  color: #9c4d27;
}

.menu li a {
  text-decoration: none;
  color: #333;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  font-style:bold;
}

.menu li a.active {
  color: #9c4d27;
}

.menu li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #9c4d27;
  transition: width 0.3s ease;
  font-family: 'Inter', sans-serif;
  font-style:bold;
}

.menu li a.active::after {
  width: 100%;
}

.menu li a:hover {
  color: #9c4d27;
}

.menu li a:hover::after {
  width: 100%;
}

.join-btn {
  background-color: #9c4d27;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  font-style:bold;
  transition: all 0.3s ease;
}

.join-btn:hover {
  background-color: #7a3c1e;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}


.hamburger div {
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: left center;
}

.hamburger.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, -3px);
}

.hamburger.active div:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.hamburger.active div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, 3px);
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
}

@media (max-width: 992px) {
  .menu {
    gap: 15px;
  }
  
  .join-btn {
    padding: 8px 16px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1000;
    margin: 0;
  }

  .menu.active {
    right: 0;
  }

  .menu li {
    width: 100%;
    text-align: left;
    /* padding: 10px 0; */
    border-bottom: 1px solid #f0f0f0;
  }

  .menu li:last-child {
    border-bottom: none;
    margin-top: 20px;
  }

  .menu li a {
    display: block;
    padding: 10px 0;
  }

  .menu li a::after {
    display: none;
  }

  .join-btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}


/* slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: none;
}

.slide.active {
  display: block;
}

.gradient-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(2, 48, 32, 0.9) 0%, rgba(2, 48, 32, 0.7) 40%, rgba(0, 0, 0, 0) 70%);
}

.contact-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 6px;
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
}

.contact-item i {
  font-size: 14px;
  color: inherit;
}

.contact-item:hover {
  color: #f8d7b6;
}

.contact-item:hover i {
  color: #f8d7b6;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.3;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.explore-btn {
  display: inline-block;
  background-color: transparent;
  color: white;
  border: 1px solid white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.explore-btn:hover {
  background-color: white;
  color: #023020;
}

/* Slide Dots BELOW the button */
.slide-dots {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.slide-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slide-dots .dot.active {
  background-color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    padding: 10px;
    gap: 16px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .explore-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .slide-dots {
    margin-top: 8px;
  }
}
