@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Header and General Styles */
.header {
  /* background: #333; */
  padding: 15px 0;
  position: relative;
  z-index: 1000;
}

.milton-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.w-number {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.w-number a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin-left: 10px;
}

/* Navigation */
.wrapper {
  position: relative;
}

.wrapper .nav-links {
  display: flex;
  align-items: center;
}

.nav-links li {
  list-style: none;
  position: relative;
}

/* Desktop Links */
.nav-links li a.nav-link {
  font-family: "Madera W01 Regular";
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  line-height: 18px;
  display: inline-block;
  padding: 10px 15px;
  position: relative;
  text-transform: capitalize;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links li a.nav-link:hover,
.nav-links li a.nav-link.active {
  color: #ed1d24;
}

/* Dropdown for Desktop */
.nav-links li.dropdown .desktop-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-links li.dropdown .desktop-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* .nav-links li.dropdown:hover .desktop-link i {
  transform: rotate(180deg);
} */

.nav-links li.dropdown i {
    position: absolute;
    right: -1px;
}

/* Dropdown Menu */
.nav-links .drop-menu {
  position: absolute;
  background: #fff;
  width: 250px;
  line-height: 45px;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 100;
  padding: 10px 0;
}

.nav-links li.dropdown:hover .drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown arrow */
.nav-links li.dropdown:hover .drop-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}

.drop-menu li {
  padding: 0;
}

.drop-menu li a {
  display: block;
  padding: 0 20px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 40px;
}

.drop-menu li a:hover {
  background: #ed1d24;
  color: #fff;
  padding-left: 25px;
}

/* Mobile Item (Hidden on Desktop) */
.nav-links .mobile-item {
  display: none;
}

.dropdown-checkbox {
  display: none;
}

/* Buttons */
.wrapper .btn {
  color: #000000;
  font-size: 24px;
  cursor: pointer;
  display: none;
  background: none;
  border: none;
  padding: 5px;
}


#wa_btn-content {
    box-sizing: border-box;
    display: inline-flex;
    padding: 10px 14px;
    justify-content: center;
    align-items: center;
    color: #6d1515;
    cursor: pointer;
    font-family: inherit,Roboto;
    /* position: absolute; */
    bottom:0px;
    left: 0px;
    right: 0px;
    /* width: 100%; */
    position: relative!important;
}

#blog_hide{
  display:none;
}


@media screen and (max-width: 1140.98px){
   .w-number a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
}
.w-number a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin-left: 10px;
    font-size: 11px;
}

header.header.header-bg .container {
    width: 100%;
    max-width: 1100px;
}
.nav-links li a.nav-link{
  font-size:14px;
}
.w-number img{
  max-width:30px;
  height:30px;
}

}

/* Responsive Styles */
@media screen and (max-width: 991px) {
  .wrapper .btn {
    display: block;
  }
  
  .milton-top {
    justify-content: space-between;
  }
  
  /* .w-number {
    display: none;
  }
   */
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: #242526;
    padding: 80px 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: left 0.4s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  
  #menu-btn:checked ~ .nav-links {
    left: 0;
  }
  
  .wrapper .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
  }
  
  #menu-btn:checked ~ .btn.menu-btn {
    opacity: 0;
    pointer-events: none;
  }
  
  .nav-links li {
    width: 100%;
    margin: 5px 0;
  }
  
  /* Hide desktop links on mobile */
  .nav-links li .desktop-link {
    display: none;
  }
  
  /* Show mobile items */
  /* .nav-links .mobile-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  } */

  .nav-links .mobile-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        padding: 12px 0;
        cursor: pointer;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        line-height: 18px;
        font-family: "Madera W01 Regular";
        font-weight: 600;
    }
  
  .nav-links .mobile-item i {
    transition: transform 0.3s ease;
  }
  
  .dropdown-checkbox:checked + .drop-menu {
    max-height: 500px;
  }
  
  .dropdown-checkbox:checked ~ .mobile-item i {
    transform: rotate(180deg);
  }
  
  /* Mobile Dropdown Menu */
  .nav-links .drop-menu {
    position: static;
    width: 100%;
    max-height: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .drop-menu li a {
    color: #ddd;
    padding-left: 30px;
    font-size: 15px;
  }
  
  .drop-menu li a:hover {
    background: rgba(237, 29, 36, 0.1);
    color: #ed1d24;
  }
  
  /* Remove the dropdown arrow on mobile */
  .nav-links li.dropdown .drop-menu::before {
    display: none;
  }
  
  /* Main navigation links on mobile */
  .nav-links li a.nav-link:not(.desktop-link) {
    display: block;
    width: 100%;
    padding: 12px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 16px;
  }

  .milton-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap:5px;
}
.w-number {
   margin-left: 0px;
}

    .w-number a {
        color: #141414;
        font-size: 14px;
        margin-left: 0px;
        display: inline-block;
    }
    .milton-top {
    display: flex;
    justify-content:start;
    align-items: center;
}
.header {
    padding: 15px 0!important;
    }

    /* span.w-number img {
    width: 35px;
    height: 35px;
} */
.w-number a {
       font-size: 14px!important;
    }

    .milton-top {
    display: flex;
    justify-content: space-between!important;
    align-items: center;
}


}

/* Scrollbar styling for mobile menu */
@media screen and (max-width: 991px) {
  .nav-links::-webkit-scrollbar {
    width: 5px;
  }
  
  .nav-links::-webkit-scrollbar-track {
    background: #242526;
  }
  
  .nav-links::-webkit-scrollbar-thumb {
    background: #ed1d24;
    border-radius: 5px;
  }
 



#wa_btn-content p {
    margin-left: 8px !important;
    font-style: normal;
    font-size:14px !important;
    line-height: 36px !important;
    font-weight: bold !important;
}

#wa_btn-content {
  padding: 3px 14px;
 
}

#blog_hide{
  display: block;
}


}

/* Hide radio inputs */
nav input[type="radio"],
nav input[type="checkbox"] {
  display: none;
}