
body {
    overflow-x: hidden;
    transition: 0.3s;
  }
  
  #header {
    position: relative;
    z-index: 3;
  }
  
  .header-menu.style-one {
    /* position: relative; */
    transition: all ease 0.5s;
    z-index: 2;
  }
  
  .header-menu>.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
  }
  
  .header-menu .menu-main {
    height: 100%;
  }
  
  .header-menu .menu-main>ul {
    height: 100%;
  }
  
  .flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .header-menu .menu-main>ul>li {
    cursor: pointer;
    position: relative;
    height: 100%;
    display: flex;
  }
  
  li {
    list-style: none;
  }
  
  .header-menu .menu-main>ul>li a {
    position: relative;
    padding: 8px 25px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    transition: all ease 0.4s;
  }
  
  .header-menu .menu-main>ul>li a::before {
    position: absolute;
    content: "";
    left: 12px;
    bottom: 5px;
    width: 0;
    height: 2px;
    background-color: var(--blue);
    transition: all ease 0.4s;
  }
  
  .header-menu .menu-main>ul>li .sub-nav {
    position: absolute;
    left: -10px;
    top: 50px;
    padding: 18px 20px;
    background-color: #fff;
    border-radius: 0 0 16px 16px;
    z-index: 5;
    box-shadow: 0px 10px 25px 0px rgba(54, 95, 104, 0.1);
    transition: all ease-in-out 0.3s;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: top center;
  }
  
  .header-menu .menu-main>ul>li .sub-nav .sub-nav-item {
    border-radius: 8px;
    position: relative;
  }
  
  .header-menu .menu-main>ul>li .sub-nav .sub-nav-item:first-child::before {
    content: "";
    position: absolute;
    background: transparent;
    width: calc(100% + 40px);
    top: -18px;
    left: -20px;
    bottom: 0;
  }
  
  .header-menu .right-block {
    justify-content: right;
  }
  
  .header-menu .right-block a.button {
    margin-right: 40px;
  }
  
  .hover-button {
    position: relative;
    overflow: hidden;
  }
  
  .hover-button.bg-blue::before {
    background-color: #082c50;
  }
  .hover-button::before {
    position: absolute;
    content: "";
    top: var(--y);
    left: var(--x);
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color:#072e53;
    transition: all linear 0.3s;
    z-index: 1;
  }
  
  .hover-button span, .hover-button i {
    transition: all linear 0.4s;
    z-index: 2;
  }
  
  .logo img{
    width: 250px;
  }

  .bg-img img{
    width: 100%;
    border-radius: 15px;
  }

  .heading2 {
    color: white !important;
    font-family: "Readex Pro", sans-serif;
    font-size: 60px;
    font-weight: 600;
    line-height: 80px;
    text-transform: capitalize;
  }

  .client-section-brand{
    margin: 20px;
    padding: 50px 0px;
  }

  .clients-slide{
    margin-top: 10px;
  }

  .clients-slide img{
    padding: 30px;
  }

  .section-about .content {
    padding: 40px;
    border-radius: 16px;
    background: linear-gradient(212deg, #ef4d36 0%, #e05e4c8c 100%);
    transition: background 1s ease;
}
.section-about .content .line {
  border: 1px solid rgba(229, 229, 229, 0.1);
  margin: 30px 0px;
}
.our_story{
  padding: 50px 0px;
  text-align: justify;
}
.main-item{
  position: relative;
}
.serv-title h4 {
  position: absolute;
  bottom: 15px;
  background: #ffffffc9;
  width: 100%;
  text-align: center;
  padding: 10px 0px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
}
.our-service-section {
  margin: 20px 0px;
  padding: 30px 0px;
}
.section-news{
  margin: 0px 0px;
  padding: 50px 0px
}
.blog-content {
    padding: 20px 15px;
    font-size: 18px;
    font-weight: 700;
    height: 140px;
    overflow: hidden;
}

.blog-content-view {
    padding: 20px 15px;
    font-size: 18px;
    font-weight: 700;
    height: 100%;
    overflow: hidden;
}
.list-news{
  margin: 50px 0px;
}

.section-news.style-six {
  padding: 60px;
  border-radius: 16px;
  background: #ededed;
  transition: background 1s ease;
}

.section-testimonial{
  padding: 40px 0px;
}

.section-testimonial .heading3{
  padding-top:40px;
}

#header {
  width: 100%;
  z-index: 1000;
}

.header-menu {
  background-color: #fff; /* Background color for the header */
  transition: all 0.3s ease; /* Smooth transition for the sticky effect */
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow when sticky */
  z-index: 1000; /* Ensure it stays on top of other elements */
}


