/* ==========================
NAVBAR
========================== */

/* .site-nav {
position: fixed;
top: 15px;
left: 0;
width: 100%;
z-index: 1000;
} */

.site-nav {
  position: fixed;
  top: 15px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}
.site-nav.scrolled {
  top: 0;
}

.site-nav.scrolled .nav-inner {
  background: #92bde7; /* scroll aana color */
  border-radius: 0;
  width: 97%;
  /* max-width:100%; */
  border-radius: 20px;
}



.site-nav.scrolled .nav-btn {
  background: #ffc107;
}

/* .site-nav.scrolled .nav-links li a.active{
    background:#fff;
    color:#1b5e20;
} */

.nav-inner {
  width: 95%;
  max-width: 1400px;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  padding: 5px 25px;
  height: 80px;

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

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ==========================
LOGO
========================== */

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 28px !important;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ==========================
DESKTOP MENU
========================== */

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 35px;
  margin-bottom: 0px !important;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #ffc107;
}

.nav-links li a.active {
  background: #ffc107;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
}

/* ==========================
DROPDOWN
========================== */

.nav-dd {
  position: absolute;
  top: 40px;
  left: 0;
  min-width: 220px;
  background: #fff;
  list-style: none;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.nav-dd li {
  width: 100%;
}

.nav-dd li a {
  display: block;
  padding: 12px 15px;
  color: #333;
}

.nav-dd li a:hover {
  background: #f5f5f5;
}

.nav-links li:hover .nav-dd {
  opacity: 1;
  visibility: visible;
}

/* ==========================
RIGHT SIDE
========================== */

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-btn {
  background: #ffc107;
  color: #fff;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #4d8d30;
}

/* ==========================
HAMBURGER
========================== */

.nav-ham {
  display: none;
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
  color: #2e7d32;
}

/* ==========================
MOBILE OVERLAY
========================== */

.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9999;
}

.mob-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mob-panel {
  position: absolute;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 90%;
  height: 100%;
  background: #fff;
  transition: 0.4s;
  overflow-y: auto;
}

.mob-overlay.active .mob-panel {
  right: 0;
}

.mob-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  border-bottom: none;
  /* border-bottom: 1px solid #eee; */
}

.mob-menu li {
  border-bottom: none;
}

.mob-header img {
  height: 70px;
}

.mob-close {
  border: none;
  background: none;
  font-size: 28px;
  cursor: pointer;
}

.mob-menu {
  list-style: none;
}

.mob-menu li a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
}

.mob-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 15px;
}

.mob-toggle-btn {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 18px;
}

.mob-sub {
  display: none;
  background: #f8f9fa;
  margin: 10px 15px;
  border-radius: 12px;
  overflow: hidden;
  padding: 8px 0;
  list-style: none;
}
.mob-sub li {
  list-style: none !important;
  border: none !important;
  margin: 0;
  padding: 0;
}

.mob-sub.show {
  display: block;
}

.mob-sub li::marker {
  display: none;
}

.mob-sub li a {
  display: block;
  padding: 14px 20px 14px 50px;
  text-decoration: none !important;
  color: #444;
  font-size: 15px;
  position: relative;
  border: none !important;
}

.mob-sub li a::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #5ea73a;
  font-size: 14px;
  font-weight: 700;
}

.mob-sub li a:hover {
  background: #eef7e8;
  color: #5ea73a;
}

.mob-menu,
.mob-sub {
  list-style: none !important;
  padding-left: 0;
}

.mob-menu li,
.mob-sub li {
  list-style: none !important;
  border-bottom: none !important;
}

.mob-menu li a,
.mob-sub li a {
  text-decoration: none !important;
  border: none !important;
}

.mob-toggle-btn {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 18px;
}

.mob-toggle-btn i {
  transition: 0.3s;
}

/* .mob-toggle-btn.active i{
    transform:rotate(180deg);
} */

.mob-btn {
  display: block;
  margin: 15px;
  text-align: center;
  background: #5ea73a;
  color: #fff !important;
  border-radius: 8px;
}

.nav-links a.active,
.mob-menu a.active {
  background: #5ea73a;
  color: #fff !important;
  border-radius: 8px;
  padding: 10px 18px;
}

.mob-menu a.active {
  margin: 8px 15px;
  display: block;
}

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

@media (max-width: 991px) {
  .nav-links {
    display: none;
  }

  .nav-btn {
    display: none;
  }

  .nav-ham {
    display: block;
  }

  .nav-inner {
    width: 95%;
    height: 70px;
    padding: 5px 15px;
  }

  .nav-logo img {
    height: 75px;
  }
}

@media (max-width: 767px) {
  .nav-inner {
    width: 94%;
    height: 65px;
    padding: 5px 12px;
  }

  .nav-logo img {
    height: 65px;
  }

  .mob-panel {
    width: 300px;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    width: 95%;
    height: 60px;
    padding: 5px 10px;
  }

  .nav-logo img {
    height: 55px;
  }

  .mob-panel {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 360px) {
  .nav-inner {
    height: 55px;
  }

  .nav-logo img {
    height: 80px;
  }
}

/* ==================================================== */
/* Footer */
/* ===================================================== */

.footer {
  background: #eef4ed;
  padding: 48px 0 20px;
}

.footer-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1.5fr 1fr;
  gap: 40px;

  border-bottom: 1px solid #ddd;
  padding-bottom: 30px;
}

/* Logo */

.footer-brand img {
  margin-bottom: 25px;
  max-width: 220px;
}

.footer-dots {
  margin: 20px 0;
}

.footer-dots span {
  width: 14px;
  height: 14px;
  background: #555;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.footer-btn {
  display: inline-block;
  background: #ffc107;
  color: #fff;
  text-decoration: none;

  padding: 12px 22px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.footer-social h6 {
  margin-bottom: 10px;
}

.footer-social a {
  font-size: 22px;
  margin-right: 12px;
  color: #333;
}

/* Columns */

.footer-col h4 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #111;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

/* .footer-col ul li{
margin-bottom:12px;
color:#333;
} */

.footer-col ul li {
  margin-bottom: 8px;
  line-height: 1.5;
  padding-left: 0;
}

.footer-col ul li a {
  text-decoration: none;
  color: #333;
}

.footer-col ul li a:hover .footer-col p {
  line-height: 1.8;
  color: #333;
}

.footer-col i {
  margin-right: 8px;
  color: #111;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  color: #666;
}

/* ==========================
LAPTOP
========================== */

@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================
TABLET
========================== */

@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
/* ==========================
MOBILE
========================== */

@media (max-width: 767px) {
  .footer {
    padding: 50px 0 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: left;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand img {
    display: block;
    margin: 0 auto 20px;
  }

  .footer-btn {
    display: block;
    width: 100%;
    text-align: center;
  }

  .footer-social {
    text-align: center;
  }

  .footer-col {
    width: 100%;
  }

  .footer-col h4 {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: left;
  }

  .footer-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .footer-col ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 12px;
    line-height: 1.8;
  }

  .footer-col ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #58a93a;
    font-size: 18px;
  }

  .footer-col ul li a {
    display: block;
    color: #333;
    text-decoration: none;
  }

  .footer-col ul li a:hover {
    color: #58a93a;
  }

  .footer-col p {
    text-align: left;
    line-height: 1.9;
    color: #333;
    margin: 0;
  }

  .footer-col:nth-child(3) ul li,
  .footer-col:nth-child(4) p {
    word-break: break-word;
  }

  .footer-col i {
    margin-right: 8px;
  }

  .footer-bottom {
    font-size: 14px;
    padding-top: 15px;
    text-align: center;
  }
}

/* ==========================
SMALL MOBILE
========================== */

@media (max-width: 480px) {
  .footer-col h4 {
    font-size: 18px;
  }

  .footer-brand img {
    margin-left: 4px;
    max-width: 180px;
  }

  .footer-btn {
    width: 100%;
  }
}
