/* Header CSS Start  */

.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);

  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);

  transition: all 0.35s ease;
}

.main-header.scrolled {
  padding: 14px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */

.logo img {
  height: 38px;
  transition: 0.3s ease;
}

/* NAV LINKS DESKTOP */

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 501;
  letter-spacing: 0.05em;
  color: var(--color-text-main);
  transition: 0.3s ease;
  position: relative;
}

/* Underline animation */

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--color-primary-accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA */

.nav-cta {
  background: var(--color-primary-accent);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
}

.nav-cta::after {
  display: none;
}

/* HAMBURGER */

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-main);
  transition: 0.3s ease;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 230px;
    list-style: none;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: #333;
    font-size: 14px;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
}

/* Hover show */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}
@media (max-width: 991px) {

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        background: transparent;
        padding: 10px 0;
        text-align: center;
    }

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

    .dropdown-menu li a {
        padding: 10px 0;
        text-align: center;
        font-size: 15px;
    }


}
/* ==================================================
   MOBILE RESPONSIVE
================================================== */

@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 30px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: 0.3s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a::after {
    display: none;
  }
}
/* Header CSS End  */




















/* footer CSS Start  */

/* footer container */

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.main-footer {
  background-color: #1c1917;
  color: #ffffff;
  padding: 0;
}

/* Accent Line */

.footer-top-accent {
  height: 4px;
  background: #16a34a;
}

/* Grid Layout */

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 80px;
  padding: 100px 0 80px;
}

/* Logo */

.footer-logo {
  height: 42px;
  margin-bottom: 24px;
  /* filter: brightness(0) invert(1); */
}

/* Brand Typography */

.footer-tagline {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 14px;
}

.footer-description {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.8;
  max-width: 340px;
}

/* Column Headings */

.footer-column-links h4,
.footer-column-newsletter h4 {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 22px;
}

/* Links */

.footer-link-list {
  list-style: none;
}

.footer-link-list li {
  margin-bottom: 12px;
}

.footer-link-list a {
  text-decoration: none;
  color: #9ca3af;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-link-list a:hover {
  color: #16a34a;
  padding-left: 4px;
}

/* .cta-green-link {
  color: #16a34a !important;
  font-weight: 600;
} */

/* Newsletter */

/* Newsletter */

.footer-form{
  display:flex;
  flex-direction:column;
  align-items:center;
  /* gap:16px; */
  margin-top:20px;
  width:100%;
}

/* Input */

.footer-form input{
  width:100%;
  max-width:340px;
  height:52px;
  padding:0 18px;
  border-radius:14px;
  border:2px solid rgba(255,255,255,0.25);
  background:transparent;
  color:#fff;
  font-size:14px;
  outline:none;
  text-align:center;
  transition:all .3s ease;
  margin-bottom: 10px;
}

.footer-form input::placeholder{
  color:#9ca3af;
}

.footer-form input:focus{
  border-color:#16a34a;
}

/* Button */

.footer-submit-btn{
  width:100%;
  max-width:340px;
  height:52px;
  border-radius:14px;
  border:2px solid #16a34a;
  background:#16a34a;
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:all .3s ease;
}

.footer-submit-btn:hover{
  background:#15803d;
  border-color:#15803d;
  transform:translateY(-2px);
}
@media (max-width:600px){

  .footer-form{
    grid-template-columns:1fr;
    justify-items:center;
  }

  .footer-form input,
  .footer-submit-btn{
    max-width:320px;
  }

}
/* Bottom Bar */

.footer-copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
}

.bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.captions {
  font-size: 12px;
  color: #9ca3af;
}

.legal-links {
  display: flex;
  gap: 20px;
}

/* Responsive */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bottom-flex {
    flex-direction: column;
    gap: 15px;
  }

  .footer-description {
    margin: 0 auto;
  }
}

/* footer css end  */
