/* Basic nav reset */
.header-menu-list {
    position: relative;
}

.header-menu-navigation {
    list-style: none;
    display: flex;
    gap: 25px;          /* adjust as needed */
    margin: 0;
    padding: 0;
}

.header-menu-navigation > li {
    position: relative; /* important for dropdown positioning */
}

/* Dropdown base */

/*.header-menu-navigation .dropdown-menu {*/
/*    position: absolute;*/
/*    top: 100%;        */
/*    left: 0;*/
/*    list-style: none;*/
/*    margin: 0;*/
/*    padding: 8px 0;*/
/*    background: #ffffff;*/
/*    border-radius: 4px;*/
/*    box-shadow: 0 8px 20px rgba(0,0,0,0.1);*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    transform: translateY(10px);*/
/*    transition: opacity 0.25s ease, */
/*    transform 0.25s ease,*/
/*    visibility 0.25s ease;*/
/*    z-index: 1000;*/
/*}*/


.header-menu-navigation .dropdown-menu{

  position: absolute;
    background-color: #fff;
    color: #fff;
    top: 141%;
    left: 0;
    /*min-width: 100%;*/
    z-index:999;
    opacity: 0;
    visibility: hidden;
    text-align: left;
    transition: 0.3s;
    overflow: hidden;
    /*height: 0;*/
    padding: 20px;
    border-radius: 0 0 10px 10px;
    display: inline-block;
    box-shadow: 0 36px 35px rgba(0, 0, 0, 0.08);
    
}

/* Dropdown items */
.header-menu-navigation .dropdown-menu li a {
    display: block;
    /*padding: 8px 8px;*/
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}
.header-menu-navigation .dropdown-menu li a:hover{
   
}

/* Hover to show dropdown */
.header-menu-navigation .has-dropdown:hover > .dropdown-menu {
   opacity: 1;
    visibility: visible;
    transform: translateY(0);
    /*height: auto;*/
}

/* Optional: change parent link style on hover */
.header-menu-navigation .has-dropdown > a {
    position: relative;
    padding-right: 18px !important; /* space for arrow */
}



.dropdown-menu a{
     position: relative;
    font-size: 14px;
     font-weight: 500;
    padding: 0;
    display: block;
    text-transform: capitalize;
    color: #000;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.dropdown-menu > li a::after{
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0;
    left: auto;
    height: 1px;
    width: 0;
    background-color: #183884;
    transition: 0.7s;
    display: inline-block;
}

.dropdown-menu::after {
    top: -20px;
    left: 16%;
    transform: translateX(-50%);
    position: absolute;
    content: "";
    border: 8px solid transparent;
    border-bottom-color: #321007;
}
.dropdown-menu > li a{
    position:relative;
}
.mobile-menu-top, 
.mobile-menu-open {
    display:none;
}
.dropdowns .dropn-btnmobile {
    display: none;
} 
.dropn-btnmobile.meun-dop-btn{
     display: none;
}

.contact-section {
  padding: 80px 20px;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  background: linear-gradient(135deg, #f4f7ff, #fdfefe);
  border-radius: 20px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-info .badge {
     display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    font-size: 12px;
    border-radius: 20px;
    background: #fff;
    color: #000;
    margin-bottom: 20px;
    border: 1px solid #00000033;
}

/* lightning icon */
/*.contact-info .badge::before {*/
/*  content: "";*/
/*  width: 14px;*/
/*  height: 14px;*/
/*  display: inline-block;*/

/*  background: url("../images/svg/lightning.svg") no-repeat center;*/
/*  background-size: contain;*/
/*  display:none;*/
/*}*/


.contact-info h2 {
  /*font-size: 48px;*/
 font-size: 36px;
  line-height: 1.1;
  margin-bottom: 60px;
  color: #000;
}

.cntacts-info-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top:13rem;
}

.cntcs-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cnt-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position:relative
  
}
.cnt-icon::after {
  content: "";
  position: absolute;
  right: -10px;      /* icon-ku right side gap */
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;      /* line height */
  background-color: #ddd; /* grey line */
}

.cntcs-info-item .small {
  color: #888;
}

.cntcs-info-item p {
  font-weight: 600;
  color: #000;
}

/* RIGHT SIDE FORM */
.contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}

.contact-form input, textarea {
  padding: 9px 13px;
    border-radius: 6px;
    border: 1px solid #ddd;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus,
textarea:focus {
  border-color: #000;
}




.form-control:focus {
    box-shadow:unset;
}

.arrow-line {
  position: relative;
  padding-left: 40px; /* space for arrow */
}

.arrow-line::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 143px;

  background-color: #888; /* exact color */
  -webkit-mask: url("../images/download.svg") no-repeat center;
  -webkit-mask-size: contain;

  mask: url("../images/download.svg") no-repeat center;
  mask-size: contain;
}
.location-section {
  background: #fff8ef;
  padding: 40px 0;
}

.location-row {
  background: #fff8ef;
}

.location-box {
  padding: 30px 25px;
  position: relative;
  height: 100%;
}

.location-box::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  width: 1px;
  height: 60%;
  background: #e6e6e6;
}

/* remove divider on last */
.col-lg-4:last-child .location-box::after {
  display: none;
}

/* badge */
.country-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /*background: linear-gradient(95deg, #078df2, #32b5c5, #06988b);*/
  background:#fff;
  color: #000;
  padding: 4px 45px 4px 4px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 18px;
}

.country-badge img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #fff;
}
.renvia-about_one{
    position:relative;
    padding:4rem 0;
}
.about-us-content{
    padding-left:2rem;
}
.renvia-image-box{
    position: relative;
    /*min-height: 610px;*/
    /*margin-right: -30px;*/
}
.renvia-image.image_one{
        padding-top: 120px;
}
.renvia-image.image_one img{
            width:247px;
                border-radius: 20px;
                height:330px;
                object-fit:cover;
}
.renvia-image.image_two {
    position: absolute;
    right: 0px;
    top: 0px;
}
.renvia-image.image_two {
    position: absolute;
    right: 0px;
    top: 0px;
}
.renvia-image.image_two img {
    border-radius: 20px;
    height: 320px;
    width: 276px;
    object-fit: cover;
}
.renvia-image.image_three {
       position: absolute;
    top: 58%;
    right: 25%;
    z-index: 1;
}
.renvia-ratings-box {
       position: absolute;
    bottom: -69px;
    right: 19%;
    max-width: 163px;
    width: 68%;
}
.renvia-ratings-box img{
    border-radius:20px;
        height: 189px;
    width: 163px;
    object-fit:cover;
}
.renvia-image.image_three img{
        width: 68%;
}
.quality-production-img img{
      height: 100%;
    object-fit: cover;
    width: 100%;
}
@media(min-width:1600px){
    .renvia-image.image_one{
        margin-left:6rem;
    }
}

.section-gap{
    position:relative;
    padding:5rem 0;
        background-image: linear-gradient(45deg, #ffffff, #f9f0da);
    background-size: cover;
    background-repeat: no-repeat;
    margin-top:5rem;
}
.logo-shape-absl{
   position: absolute;
    opacity: 0.07;
    inset: 0;
    margin: 0 auto;
    top: -80px;
}
.big-second-title{
   font-size: 25px;
    max-width: 80%;
    margin-top: 1.5rem;
    line-height: 1.5;
}
.about-content-area-2{
    position:relative;
}
.countup-item.style-2 {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    padding: 28px 30px;
    align-items: start;
    text-align: start;
}

.countup-item.style-2 .count-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ecf0f0;
    font-size: 48px;
    color: #1e8a8a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.countup-item.style-2 .count-icon img{
        filter: brightness(0.1) invert(0.2);
}
.countup-item.style-2 .steps {
    position: absolute;
    top: 28px;
    inset-inline-end: 30px;
    color:#364e52l;
    font-size: 20px;
    line-height: 1;
    font-weight: 600;
}
.countup-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
    padding: 68px 50px 74px 50px;
    position: relative;
}
.countup-item.style-2 .count-inner {
    padding-top: 60px;
}
.countup-item.style-2 .count-text {
    color: #364e52;
    font-weight: 500;
}
.customers-box.style-2 .customers-bg {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: luminosity;
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    opacity: 0.15;
    z-index: -1;
        
}
.count-inner .key-content h3{
            font-size: 60px;
}
.customers-box.style-2 {
      padding:20px;
    height:100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius:10px;
    background-position: center;
}
.customers-box.style-2::before{
        background-color: #8E9AAF;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}
.customers-text{
   color: #fff;
    position: relative;
    font-size: 30px;
    display: flex;
    height: 100%;
    align-items: flex-end;
    text-shadow: 2px 2px black;
}
.customers-box.style-2 .star-icon{
        position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    inset-inline-end: 120px;
    transform: translateY(-50%);
        animation: zoomEffect 3s linear infinite;
    
}
@keyframes zoomEffect {
	0%,
	100% {
		transform: scale(0.9);
	}
	50% {
		transform: scale(1.2);
	}
}

.about-content .big-title{
    font-size:45px;
}

.certifications-sw::after {
    right:0;
    background-image:linear-gradient(-90deg, rgb(255 255 255) 0%, rgba(233, 237, 237, 0) 100%) !important;
}
.certifications-sw::before,.certifications-sw::after {
    content: "";
    position: absolute;
    width: 148px;
    height: 100%;
    background-image: linear-gradient(90deg, rgb(255 255 255) 0%, rgba(233, 237, 237, 0) 100%);
    top: 0;
   
    z-index: 2;
}
.certifications-sw{
    position:relative;
    padding:4rem 0 !important;
}
.certifications-sw .swiper-wrapper{
    transition-timing-function:linear !important
}
.our-certifications-ion .title-conten.new{
    display:flex;
        gap: 50px;
}
.title-conten.new p{
        width: 60%;
}
.clients-sponsors-outer{
    position:relative;
}
.client-content {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px dashed #c9d1d1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
        inset: 0;
    margin: auto;
    text-align: center;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}
.client-content .sec-title {
    max-width: 200px;
    width: 100%;
    letter-spacing: 0;
    font-weight: 600;
    margin-bottom: 0;
}
.image-concept{
    padding:5rem 0;
}
.responsible-sourcing img{
    height:500px;
    object-fit: cover;
}
.client-content .client-numbers {
    color: #000;
    background-color: #fff4ea;
    line-height: 1.2;
    border-radius: 50px;
    padding: 0 5px;
}
.our-certifications-ion{
    padding: 4rem 0 6rem;
    position:relative;
   background: linear-gradient(180deg, #f5f5f5 0, #fff 39%, #fefefe 87%, #f8f8f8 100%);
}
.made-india-img img{
  
}
.made-india-sec .all-client-logho{
    gap:8px
}
.mySwiper-productionsd .swiper-pagination-bullet-active{
    background:#000 !important;
}

.lour-clientd-logo{
    position:relative;
       /*padding: 90px 0 50px;*/
       padding: 20px 0;
    
}
.lour-clientd-logo .row{
    align-items:center;
}
.lour-clientd-logo .single-icon-wrap {
    box-shadow: unset;
}

.lour-clientd-logo .services-btn-wrap .th-btn-2{
        max-width: fit-content;
}

.mySwiper-productionsd .swiper-slide img{
    width:100%;
    height:500px;
    object-fit: cover;
}

/*.lour-clienp {*/
/*    position:relative;*/
/*}*/

/*.lour-clienp::before {*/
/*       content: "";*/
/*    position: absolute;*/
/*    top: -16px;*/
/*    right: 0;*/
/*    width: 2px;*/
/*    height: 100%;*/
/*    background-color: #d0d0d0;*/
/*}*/

/*.clientd-btn-us {*/
/*       position: relative;*/
/*    font-size: 16px;*/
/*    color: #000;*/
/*    font-weight:300;*/
/*    border-bottom: 1px solid #000000;*/
/*    max-width: fit-content;*/
/*    margin-bottom: 0.61rem;*/
/*}*/

.lour-clienp h4{
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 1rem;
}
.lour-clienp i{
        position: relative;
    left: 0.3rem;
    top: 0.2rem;
}

.clientd-logo-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}


.clientd-logo-swiper img{
    width:80px;
}
.error-img h3{
    font-size: 250px;
    font-weight: 800;
}
.error-img h5{
    font-size:30px;
}
.errorr{
    padding:1rem 0 4rem;
}