/* ======= Reset ======= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: Calibri, sans-serif;
}

/* ======= Navbar ======= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #ff5f7d;
  z-index: 1000;
  padding: 0.8rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.logo a {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

/* Nav links */
#nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

#nav-links li a {
  color: white;
  font-size: 17px;
  font-weight: 500;
  padding: 5px 0;
  transition: color 0.3s;
}

#nav-links li a:hover {
  color: #1abc9c;
}

/* Dropdown */
.dropdown-parent {
  position: relative;
  cursor: pointer;
}

.dropdown-parent .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  display: none; /* desktop hidden initially */
  flex-direction: column;
  background: #a15361;
  min-width: 180px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  z-index: 999;
}

.dropdown-parent .dropdown li a {
  color: #333;
  padding: 10px 16px;
  display: block;
}

.dropdown-parent .dropdown li a:hover {
  background-color: #f1f1f1;
}

/* Desktop hover */
@media(min-width:769px) {
  .dropdown-parent:hover .dropdown {
    display: flex;
  }
}

/* Buttons */
.nav-buttons a {
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
  margin-left: 10px;
  background: #5f1b1b;
  color: #ff5f7d;
  border: 1px solid #ff5f7d;
  transition: 0.3s;
}

.nav-buttons a:hover {
  background: #ff5f7d;
  color: #fff;
}

/* ======= Mobile Overlay Menu ======= */
@media(max-width:768px) {
  .hamburger {
    display: flex;
  }

  #nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255,95,125,0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

  #nav-links.show {
    max-height: 100vh;
  }

  #nav-links li {
    width: 100%;
    text-align: center;
    font-size: 20px;
  }

  /* Mobile dropdown */
  .dropdown-parent .dropdown {
    position: static;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    gap: 10px;
  }

  .dropdown-parent.active .dropdown {
    max-height: 500px;
    display: flex;
    flex-direction: column;
  }

  /* Hamburger animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}



.banner {
  background-image: url('banner.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  height: 600px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-content {
  background: rgba(0, 0, 0, 0.5); /* Optional dark overlay */
  padding: 20px;
  border-radius: 10px;
}

.banner h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.banner p {
  font-size: 18px;
}
 .section-one{
      text-align: center;
      font-size: 26px;
      color: rgb(0, 0, 0);
      padding-top: 20px;
    }
    #key-point{
      color: rgb(80, 175, 49);
      font-weight: 900;
      font-size: 36px;
    }