body {
  overflow-x: hidden;
}
* {
  margin: 0%;
  padding: 0%;
  /* box-sizing: border-box; */
  /* font-family: 'Lato', sans-serif; */
}

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;500;600;700&display=swap');

:root {
  --fs-96: 96px;
  --fs-68: 68px;
  --fs-50: 50px;
  --fs-48: 48px;
  --fs-40: 40px;
  --fs-38: 38px;
  --fs-30: 30px;
  --fs-28: 28px;
  --fs-24: 24px;
  --fs-24: 22px;
  --fs-20: 20px;
  --fs-18: 18px;
  --fs-16: 16px;
  --fs-14: 14px;
  --fs-12: 12px;
  --primary-color: #2435E4;
  --secondary-color: #729E40;
  --tertiory-color: #F8FFF2;
  --fw-bold: 700;
  --fw-semibold: 600;
  --fs-regular: 400;

}

/* nav bar start */
.custom-navbar {
  background: #ffffff;
  padding: 25px 0;
  margin-top: 20px;

}

.logo {
  height: 45px;
}

/* GREY NAV CONTAINER (DESKTOP) */
.nav-pill-box {
  background: #f1f1f1;
  border-radius: 60px;
  padding: 14px 32px;     
  display: flex;
  gap: 16px;              
}


.nav-pill-box .nav-link {
  padding: 10px 22px;
  color: #555;
  font-weight: 500;
  border-radius: 50px;
}

.nav-pill-box .nav-link.active {
  background: #ffffff;
  color: #1e3cff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.nav-pill-box .nav-link:hover {
  color: #1e3cff;
}

.navbar-toggler {
  border: none;
}

.custom-navbar .btn-primary:hover {
  background-color: #729E40;
  border-color: #729E40;
  color: #ffffff;
}

.custom-navbar .btn-primary {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.nav-pill-box .nav-item:first-child .nav-link {
  margin-left: 14px;
}

@media (max-width: 991.98px) {

  .nav-pill-box {
    background: #f1f1f1;
    /* keep grey container */
    padding: 16px;
    flex-direction: column;
  }

  /* Remove white pill on active */
  .nav-pill-box .nav-link.active {
    background: transparent !important;
    box-shadow: none;
    color: #1e3cff;
    /* blue text */
    font-weight: 600;
  }

  /* Normal mobile links */
  .nav-pill-box .nav-link {
    padding: 12px 16px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }
}

.navbar {
    position: relative;
    z-index: 9999;
}

.navbar-collapse {
    z-index: 9999;
}

/* Balanced hamburger size */
.navbar-toggler {
  padding: 6px 10px;
  /* medium size */
  border-radius: 10px;
  border: 2px solid #666;
}

/* Icon size */
.navbar-toggler-icon {
  width: 22px;
  height: 22px;
  background-size: 22px 22px;
}

/* CLEAN MINIMAL HAMBURGER BUTTON */
.navbar-toggler {
  padding: 4px 8px;
  border-radius: 8px;
  border: 1.5px solid #666;
  box-shadow: none !important;
  background: transparent;
}

/* SMALLER ICON */
.navbar-toggler-icon {
  width: 18px;
  height: 18px;
  background-size: 18px 18px;
}

/* REMOVE FOCUS / ACTIVE SHADOW */
.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none;
  box-shadow: none;
}

.navbar-toggler {
  padding: 3px 6px;
  border-radius: 6px;
  border: 1px solid #666;
}

.navbar-toggler-icon {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #f1f1f1;
    border-radius: 28px;
    padding: 22px;
    margin-top: 12px;

  }
}


/* Logo default (desktop) */
.logo {
  height: 62px;          /* ⬅ increased from 45px */
  transition: height 0.3s ease;
}

/* Tablet */
@media (max-width: 991.98px) {
  .logo {
    height: 48px;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .logo {
    height: 42px;
  }
}
.nav-pill-box .nav-link {
  padding: 12px 28px;        /* ⬅ bigger clickable area */
  font-size: 16px;           /* ⬅ slightly bigger text */
  color: #555;
  font-weight: 500;
  border-radius: 50px;
}
.nav-pill-box .nav-link.active {
  background: #ffffff;
  color: #1e3cff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991.98px) {
  .nav-pill-box .nav-link {
    font-size: 16px;
    padding: 14px 18px;
  }
}
@media (max-width: 991.98px) {

  /* Navbar dropdown container */
  .navbar-collapse {
    background: #f1f1f1;
    border-radius: 28px;
    padding: 24px;

    width: 320px;           /* ✅ reduced width */
    max-width: 90%;
    
    position: absolute;
    top: 70px;              /* below navbar */
    right: 16px;            /* ✅ right aligned */
    left: auto;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  }

  /* Pill container */
  .nav-pill-box {
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  /* Nav links */
  .nav-pill-box .nav-link {
    text-align: left;       /* ✅ LEFT ALIGN TEXT */
    padding: 14px 18px;
    font-size: 16px;
    color: #555;
    font-weight: 500;
    border-radius: 14px;
  }

  /* Active link */
  .nav-pill-box .nav-link.active {
    background: #ffffff;
    color: #1e3cff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    font-weight: 600;
  }
}

.hamburger,
.hamburger:focus,
.hamburger:active {
  outline: none;
  box-shadow: none;
  border: none;
}
.mobile-menu-wrapper {
  box-shadow: none;
  border: none;
}
.mobile-menu-wrapper {
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
}
.mobile-menu-wrapper {
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}

.mobile-menu-wrapper.open {
  transform: translateX(0);
}


/* primary-button */
.btn-primary:hover,
.btn-primary:focus {
  background-color: #729E40 !important;
  border-color: #729E40 !important;
  color: #ffffff !important;
}


/* footer  */

.footer-wrapper {
  padding: 60px 40px 20px;

}

.footer {
  max-width: 1300px;
  margin: auto;
  padding: 60px;
  background: linear-gradient(135deg, #0b0b0b, #1a1a1a);
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  color: #fff;
}

/* BRAND */
.footer-brand .logo {
  display: flex;
  /* align-items: center; */
  gap: 10px;
  font-size: 32px;
  font-weight: 700;
}

.logo-icon {
  font-size: 2px;
}

.footer-brand p {
  font-size: 14px;
  color: #cfcfcf;
  margin-top: 8px;
}

.footer-brand .copyright {
  margin-top: 20px;
  line-height: 1.6;
}

.socials {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.socials a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

/* COLUMNS */
.footer-col h4 {
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  color: #cfcfcf;
  font-size: 14px;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.socials img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  /* makes icons white */
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.socials a:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand .logo {
    justify-content: center;
  }

  .socials {
    justify-content: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-col a {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .footer-wrapper {
    padding: 40px 20px 20px;
  }

  .footer {
    padding: 40px 24px 30px;
  }
}
