/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: Poppins, sans-serif;background-color: }

/* ===== HEADER ===== */
.header {
  width: 100%;
  background:rgb(240, 241, 241);
  padding: 15px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* color: white; */
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 26px;
  font-weight: 700;
}

/* NAVIGATION */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover { color: rgb(13, 139, 235); }

/* DROPDOWN */
.dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: static;
  list-style: none;
  top: 40px;
  left: -100%;
  width: 100px;
  height:calc(100vh-70vh);
  border-radius: 6px;
  padding: 8px 0;
}

.dropdown-menu li a {
  /* padding: 10px 0px; */
  display: block;
  position:fixed;
}

.dropdown:hover .dropdown-menu { 
  display: block; 
  
}










/* MOBILE */
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* LOGIN BUTTON */
.login-btn {
  background: linear-gradient(135deg, #647e2b, #0e4fdd);
  padding: 8px 18px;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  margin-right: 10px;
  font-weight: 600;
}

/* PROFILE ICON */
.profile-icon {
  font-size: 27px;
  cursor: pointer;
}

/* HAMBURGER */
.menu-icon {
  font-size: 28px;
  display: none;
  cursor: pointer;
}


/* HERO SECTION */
.hero {
    /* margin-top: 90px; */
    padding: 80px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .hero-text {
    max-width: 550px;
  }

  .hero-text h1 {
    font-size: 48px;
    color: #0b2a66;
    line-height: 1.3;
  }

  .hero-text p {
    margin: 15px 0;
    font-size: 18px;
    color: #444;
  }

  .hero-btn {
    background: linear-gradient(135deg, #647e2b, #2563eb);
    padding: 12px 25px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    display: inline-block;
    margin-top: 10px;
  }

  .hero-img img {
    width: 500px;
    max-width: 100%;
  }

  /* FEATURES */
  .features {
    background:rgb(58, 123, 136);
    padding: 60px 5%;
    text-align: center;
  }

  .features h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #0b2a66;
  }

  .feature-box {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
  }

  .feature {
    /* background: #fff; */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: 0.3s;
  }

  .feature i {
    font-size: 40px;
    color: #0a4cff;
    margin-bottom: 10px;
  }

  .feature:hover {
    transform: translateY(-5px);
  }

  /* HOW IT WORKS */
  .how {
    padding: 70px 5%;
    background:rgb(58, 123, 136); 
  }

  .how h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    /* color: #0b2a66; */
  }

  .step-box {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 25px;
  }

  .step {
    background: linear-gradient(135deg, #647e2b, #2563eb);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  }

  .step span {
    background: #0a4cff;
    color: #fff;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    margin-bottom: 10px;
  }
/* ===== FOOTER ===== */
.footer {
  background: url('./blue.webp')no-repeat center center/cover;;
  color: white;
  padding: 50px 35px;
  /* margin-top: 120px; */
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.footer-logo { font-size: 28px; }

.footer-section ul { list-style: none; }
.footer-section ul li { margin: 8px 0; }

.footer-section ul li a {
  color: #d1d5db;
  text-decoration: none;
}
.footer-section ul li a:hover { color: #ffffff; }

/* SOCIAL ICONS */
.social-icons a {
  color: #d1d5db;
  margin-right: 12px;
  font-size: 22px;
}
.social-icons a:hover { color: #ffffff; }

/* MAP */
.footer-map {
  width: 100%;
  height: 160px;
  border-radius: 6px;
  border: 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 35px;
  padding-top: 10px;
  font-size: 14px;
  /* border-top: 1px solid #374151; */
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .nav-links { gap: 20px; }
}

@media (max-width: 768px) {
  .menu-icon { display: block; }

  .nav-links,
  .login-btn,
  .dropdown-menu,
  .profile-icon {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    width: 100%;
    background:rgb(187, 215, 187);
    width: 260px;
    position: absolute;
    top: 65px;
    left: 0;
    padding: 20px 0;
    align-items: center;
  }

  /* .dropdown-menu {
    position: relative;
    background: #1f2937;
    top: 0;
    width: 100%;
  } */

  .dropdown-menu li a {
    padding: 0px 0px;
    display: block;
    position: relative;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header { padding: 12px 20px; }
  .logo { font-size: 22px; }
}

/* * ENABLE CLICK DROPDOWN */ */
  .dropdown-menu {
    position: static;
    background: rgb(255,255,255);
    display: none;
    width: 100%;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-toggle i {
    margin-left: 6px;
  }


  