.site-header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}

.logo-img {
  width: 120px;
  height: auto;
}


.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-blue);
}

.nav-link i {
  font-size: 12px;
}

.mobile-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  margin-left: auto;
}

.mobile-view {
  display: none;
  background: var(--white-color);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1) !important;
  position: sticky;
  padding: 12px 0px;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: all 0.5s ease-in-out;
}

.mobile-menu {
  display: none;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 99;
  align-items: center;
}

.slidein-menu {
  display: none;
}

@media (max-width: 1240px) {
  .social-links-header {
    margin: 25px 0px;
  }

  .main-nav ul li {
    padding: 20px 0 !important;
  }

  .social-links-header ul {
    margin: 0px !important;
    padding: 0px !important;
  }

  .social-links-header ul li {
    margin-bottom: 12px;
  }

  .social-links-header ul li i {
    color: var(--primary-blue);
  }

  .social-links-header ul li:last-child {
    margin-bottom: 0px;
  }

  .site-header {
    display: none;
  }

  .mobile-sidebar {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    max-height: 100vh;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: left 0.3s ease;
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }

  .mobile-sidebar.active {
    left: 0;
  }

  .sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav-list>li {
    width: 100%;
    padding: 0;
    /* border-bottom: 1px solid #f5f5f5; Removed to use specific mobile-navigation styles */
  }

  .nav-link {

    width: 100%;
    justify-content: space-between;
    font-weight: 500;
  }

  .mobile-navigation .mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-top: 20px;
  }

  .mobile-navigation .mobile-nav-list>li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .mobile-navigation .mobile-nav-link {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: capitalize;
    cursor: pointer;
  }

  .mobile-navigation .mobile-dropdown {
    display: none;
    /* Controlled by JS toggle */
    padding-left: 20px;
    list-style: none;
    margin: 0;
  }



  .mobile-navigation .mobile-dropdown-item {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important;
  }

  .mobile-navigation .mobile-dropdown-item:last-child {
    border-bottom: none !important;
  }

  .mobile-navigation .mobile-dropdown-item:last-child {
    border-bottom: none;
  }

  .fa-angle-down {
    transition: transform 0.3s;
  }

  .rotate-180 {
    transform: rotate(180deg);
  }

  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
  }

  .mobile-overlay.active {
    display: block;
  }

  .sidebar-footer {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
  }

  .close-sidebar {
    position: static;
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid #ddd;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }

  .close-sidebar:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
  }

  .mobile-toggle {
    display: block;
    margin-left: auto;
    background: transparent;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 4px;
    padding: 5px 12px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
  }







  .mobile-view {
    display: block;
    box-shadow: var(--hard-shadow);
  }

  .mobile-menu {
    display: block;
  }

  .slidein-menu {
    display: block;
  }

  .header-logo-wrap img,
  .slidein-logo img {
    width: 100px;
  }

  .ham-btn {
    height: 30px;
    width: 30px;
    right: 5px;
    top: 4px;
    position: relative;
    cursor: pointer;
  }

  .ham-btn span {
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background: var(--primary-color);
    display: block;
  }

  .ham-btn span:nth-child(1) {
    top: 2px;
    width: 80%;
    right: -5px;
  }

  .ham-btn span:nth-child(2) {
    top: 11px;
    right: -5px;
  }

  .ham-btn span:nth-child(3) {
    bottom: 7px;
    right: -5px;
    width: 135%;
  }

  .slidein-menu {
    position: fixed;
    width: 365px;
    height: 100vh;
    background: var(--white-color);
    top: 0;
    left: -120%;
    padding: 20px 30px;
    padding-bottom: 100px;
    /* Extra padding for bottom content */
    box-sizing: border-box;
    transition: all 0.5s ease-in-out;
    z-index: 10000;
    /* Ensure on top of everything */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .slidein-menu.open {
    left: 0;
    transition: all 0.5s ease-in-out;
  }

  nav {
    min-height: auto;
  }

  .ham-btn.cross span {
    background: var(--primary-color);
  }

  .ham-btn.cross span:nth-child(2) {
    display: none;
  }

  .ham-btn.cross span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
    right: 0;
    width: 100%;
  }

  .ham-btn.cross span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: auto;
    top: 10px;
    right: 0;
    width: 100%;
  }

  .nav-bdr-btm {
    margin-top: 20px;
    width: 100%;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    height: 2px;
  }

  .slidein-menu .m-nav-bar .m-menu-list li:first-child {
    padding-top: 0;
  }

  .slidein-menu .m-nav-bar {
    margin-top: 20px;
  }

  .slidein-menu .m-nav-bar .m-menu-list li {
    position: relative;
    padding-top: 12px;
  }

  .m-menu-list li a {
    color: var(--black-color);
    display: block;
    line-height: 2;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.5s ease-in-out;
  }

  .m-menu-list li a:hover {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    width: fit-content;
    transition: all 0.5s ease-in-out;
  }

  .sidebar-menu {
    color: var(--black-color);
    transition: all 0.5s ease-in-out;
  }

  .sidebar-menu:hover .expand i {
    color: var(--primary-color);
    transition: all 0.5s ease-in-out;
  }

  .sub-menu {
    display: none;
    color: var(--black-color);
  }

  .sub-menu ul li {
    padding-top: 5px !important;
  }

  .sub-menu ul li a {
    font-size: 16px;
    margin-left: 15px;
  }

  .sub-sub-menu {
    display: none;
  }

  .expand i {
    color: var(--black-color);
  }

  .expand1 {
    line-height: 3;
    font-weight: 500;
  }










}





@media (min-width: 1241px) {

  .mobile-toggle,
  .close-sidebar,
  .mobile-overlay,
  .mobile-sidebar {
    display: none !important;
  }

  .main-nav,
  .header-action {
    display: block !important;
  }

  /* Reset Nav List Layout just in case shared classes leak */
  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }

  .nav-list>li {
    width: auto;
    border: none;
  }

  .nav-link {
    width: auto;
    padding: 0;
  }
}

/* Social Links Styles */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f2f5;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary-blue);
  color: #fff;
}

/* Dropdown Menu Styles */
.nav-list>li {
  position: relative;
  padding: 15px 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 260px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  overflow: hidden;
}

.nav-list>li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-item {
  display: block;
  padding: 15px 20px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.2s;
  text-transform: capitalize;
}

.dropdown-item:hover {
  color: #fff;
  background-color: var(--primary-blue);
  padding-left: 25px;
}

@media (max-width: 1240px) {
  .swiper-full-wrap {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .testimonials-section .swiper {
    width: 100% !important;
  }
}