body{
  font-family: "Roboto", sans-serif !important; 
}
header {

  padding: 25px 75px;
  position: absolute;
  width: 100%;
  background: linear-gradient(to bottom,rgba(0,0,0,1) 0%,rgba(0,0,0,0)100%);
  z-index: 2;
  
}

header .logo img {
  height: 60px;
 
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar ul {
  display: flex;
}
.navbar a {
  color: white;
  font-size: 22;
  font-weight: normal;
  padding: 10px 8px;
  margin: 0 20px;
}

.navbar ul li:last-child a {
  padding-right: 0px;
}

.navbar li:hover a {
  color: #e02d26;
}

.navbar li.active a {
  border-bottom: 2px solid #f70142;
}

.hero {
  position: relative;
  height: 80vh;
}
.hero img{
    width: 100%;
    position: relative;
    overflow: hidden    ;
object-fit: cover;
    background-position: center;
    height: 80vh;
}

.hero .hero-info{
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%,-50%);
width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;


}

.hero .hero-info h1,.hero .hero-info h2{
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    font-size: 74px;
    margin-top: 0px;

}

.hero .hero-info .hero-subheading{
    font-size: 28px;
    font-weight: 400;
    display: block;
    margin-bottom: 0px;
    color: #fff;
}

.cta-btns{
    display: inline-block;
    background: #f70142;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 14px 35px;
   margin-top: 12px;
   border-radius: 5px;
}

.hero .swiper-pagination {
    bottom: 30px;
    padding-right: 78px;
    text-align: right;
}

.hero .swiper-pagination .swiper-pagination-bullet{
    width: 23px;
    height: 23px;
    background: transparent;
    border:2px solid white;
    opacity: 1;
    outline: none;
}


.hero .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
  border: 2px solid #f70142;
}

header svg{
    display: none;
}
.banner-description{
    font-size: 20px;
    color: rgb(215, 212, 212);
    line-height: 35px;
    font-weight: normal;
    
}
@media(max-width:767px){
    header{
        padding: 20px 20px;
    }

    header svg{
        display: block;
        color: #fff;
    }

    .navbar .menu{
        display: none;
        position: absolute;
        background-color: black;
        left: 0;
        right: 0;
        top: 65px;
    }

    .navbar .menu.open{
        display: block;
    }

    header .logo img{
        height: 40px;
    }

    .navbar ul li{
       padding: 20px 0;
    }

    .navbar li.active a {
        border-bottom: none;
    }

    .hero{
        height: 60vh;
        width: 100%;
    }

    .hero img{
        height: 60vh;
        object-fit: cover;  
        background-position: center;
    }

    .hero .hero-info{   
        width: 100%;
    
    }
    
    .hero .hero-info h1,.hero .hero-info h2{
        font-size: 36px;
    
    }
    
    .hero .hero-info h1 span{
        font-size: 22px;
    }
    
    .cta-btns{
        font-size: 14px;
        padding: 10px 20px;
       
    }

    .hero .swiper-pagination .swiper-pagination-bullet{
        width: 16px;
        height: 16px;
       
    }

    .hero .swiper-pagination {
        padding-right: 10px;
    }
    


}


.features-block{
    padding: 25px;
    background-color: white;
    width: 65%;
    margin: 70px auto;
    display: flex;
    justify-content: space-around;
}

.features-block .block{
    width: 30%;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.features-block .block .img{
    width: 50px;
    height: 50px;
    border: 2px solid #f70142;
    border-radius: 50%;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f70142;
}

.features-block p{
    font-size: 16px;
    font-weight: 500;
    color: #3a3b3d;
    line-height: 22px;
}
.features-block p.slogen{
    font-size: 12px;
    font-weight: normal;
    color: #545456;
}



@media(max-width:912px){
    .features-block{
        width: 95%;
    }
}

@media(max-width:767px){
    .features-block{
        flex-direction: column;
        justify-content: center;
        width: 95%;
    }
    .features-block .block{
        width: 100%;
        justify-content: start;
        margin-top: 20px;
       
    }
    .features-block p{
        font-size: 14px;
    }
    .features-block p.slogen{
        font-size: 12px;
    }
    
}


/*about us section*/

section{
    margin: 70px 0px;
}
#about{
    background-color: #e8e8e85c;
    padding: 30px 0;
}
.about-section{  
    width: 75%;
    margin:0 auto;
    padding: 30px;
    display: flex;
}
.about-section .about-img{
  width: 30%;
  
}
.about-section .about-desc{
  width: 70%;
}
 

.about-section .about-img img{
  width: 80%;
  border-radius: 10px;
}
.sub-heading{
    font-size: 16px;
    font-weight: 500;
    color: #f70142;
    margin-top: 0px;
    margin-bottom: 20px;
}

 .heading{
    font-size: 36px;
    color: #3a3b3d;
    font-weight: 500;
    margin-bottom: 10px;
}

.about-section .desc{
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
    color: #555;
    margin-top: 20px;
}

@media(max-width:767px){
  /* Media query */
  .about-container{
    margin-top: 20px !important;
    display: block;
  }
  .about-container .description{
    width: 100% !important;
    padding-left: 5px !important;

    padding-right: 5px !important;
  }
   .about-container .image{
    display: none;
  }
  .about-container .image img{
    width: 75%;
    border-radius: 10px;
  }
    .about-section p{
        font-size: 14px;
    }

    .about-section{  
      width: 75%;
      margin:0 auto;
      padding: 30px;
      display: flex;
    }
    .about-section .about-img{
     display: none;
      
    }
    .about-section .about-desc{
      width: 100%;
    }
 
    
    .about-section{
        width: 95%;}
    
        section{
            margin: 40px 0px;
        }
        .why-choose-container{
          width: 95%;

        }
      .why-choose-container .point-container{
        display: block !important;
      }
    .why-choose-container .point-container .point{
      width: 100% !important;
      margin-bottom: 10px;
    }


    .our-products .container{
      width: 85%  !important;
      margin-left: auto;
      margin-right: auto;
      display: block !important;  
      gap: 10px;;
    }
    .our-products .container .content{
      width:  100% !important;
    }
    .our-products .container .image{
        width: 100% !important; 
        margin-bottom: 20px !important;
    }
    .our-products .container .image img{
      width: 100% !important;
      border-radius: 5px;
    }
    .our-products .container .content{
      width: 100%;
    }
     
}

.parts-section{
    width: 85%;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
}

section .slogen{
    color: #3a3b3d;
    font-size: 14px;
}


.filter-box{
    margin: 30px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-box .btn-pill{
    color: #f70142;
    font-weight: 400;
    font-size: 16px;
    padding: 10px 30px;
    border: 2px solid #f70142;
    cursor: pointer;
}


.filter-box .btn-pill.active{
    background-color: #f70142;
    color: white;
}



.parts-box{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 5px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.parts-box .box{
    width: 25%;
    height: 300px;
    /* background-color: white; */
    flex-direction: column;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.parts-box .box img{
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;

}

.overlay p{
    font-size: 22px;
    font-weight: 400;
    color: white;

}

.icon .part-image{
    font-size: 16px;
    color: #f70142;
    text-align: center;
    cursor: pointer;
}

@media(max-width:767px){
    .parts-box{
       display: block;
    }

    .parts-box .box{
        width: 100%;
        margin-top: 20px;
    }
    .icon {
       visibility: hidden;
    }

}

.primary{
  color: #f70142;
}



.banner-center{
    width: 100%;
    height: 300px;
    background: #3a3b3d;
    margin: 10px 0px;

    position: relative;
    background-image: url("../images/slider/5.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

   
}

.banner-center::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);

}

.banner-center .content{
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
 
}
.banner-center h2{
    color: #fff;
    margin-bottom: 10px;

}
.banner-center a{
   margin-top: 20px;
}



@keyframes slides {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  .logos {
    overflow: hidden;
    padding: 30px 0px;
    white-space: nowrap;
    position: relative;
  }
  
  .logos:before, .logos:after {
    position: absolute;
    top: 0;
    content: '';
    width: 250px;
    height: 100%;
    z-index: 2;
  }
  
  .logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255,255,255,0), rgb(255, 255, 255));
  }
  
  .logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255,255,255,0), rgb(255, 255, 255));
  }
  
  .logo_items {
    display: inline-block;
    animation: 35s slides infinite linear;
  }
  
  .logos:hover .logo_items {
    animation-play-state: paused;
  }
  
  .logo_items img{
    height: 100px;
  }




  /**footer*/
  footer{
    position: relative;
    background: #140B5C;
    width: 100%;

  }
  footer::before{
    content: '';
    position: absolute;
    left: 0;
    top: 160px;
    height: 1px;
    width: 100%;
    background: #505050;
  }
  footer .content{
    max-width: 1250px;
    margin: auto;
    padding: 30px 40px 40px 40px;
  }
  footer .content .top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin-bottom: 50px; */
  }
  .content .top .logo-details{
    color: #fff;
    font-size: 30px;
  }
  .content .top .media-icons{
    display: flex;
  }
  .content .top .media-icons a{
    height: 40px;
    width: 40px;
    margin: 0 8px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s ease;
  }
  .top .media-icons a:nth-child(1){
    background: #4267B2;
  }
  .top .media-icons a:nth-child(1):hover{
    color: #4267B2;
    background: #fff;
  }
  .top .media-icons a:nth-child(2){
    background: #1DA1F2;
  }
  .top .media-icons a:nth-child(2):hover{
    color: #1DA1F2;
    background: #fff;
  }
  .top .media-icons a:nth-child(3){
    background: #E1306C;
  }
  .top .media-icons a:nth-child(3):hover{
    color: #E1306C;
    background: #fff;
  }
  .top .media-icons a:nth-child(4){
    background: #0077B5;
  }
  .top .media-icons a:nth-child(4):hover{
    color: #0077B5;
    background: #fff;
  }
  .top .media-icons a:nth-child(5){
    background: #FF0000;
  }
  .top .media-icons a:nth-child(5):hover{
    color: #FF0000;
    background: #fff;
  }
  footer .content .link-boxes{
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  footer .content .link-boxes .box{
    width: calc(100% / 5 - 10px);
  }
  .content .link-boxes .box .link_name{
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    position: relative;
  }
  .link-boxes .box .link_name::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 35px;
    background: #fff;
  }
  .content .link-boxes .box li{
    margin: 6px 0;
    list-style: none;
  }
  .content .link-boxes .box li a{
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.4s ease
  }
  .content .link-boxes .box li a:hover{
    opacity: 1;
    text-decoration: underline;
  }
  .content .link-boxes .input-box{
    margin-right: 55px;
  }
  
 
  footer .bottom-details{
    width: 100%;
    background: #f70142;
  }
  footer .bottom-details .bottom_text{
    max-width: 1250px;
    margin: auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
  }
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a{
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
  }
  .bottom-details .bottom_text a:hover{
    opacity: 1;
    text-decoration: underline;
  }
  .bottom-details .bottom_text a{
    margin-right: 10px;
  }
  @media (max-width: 900px) {
    footer .content .link-boxes{
      flex-wrap: wrap;
    }
    footer .content .link-boxes .input-box{
      width: 40%;
      margin-top: 10px;
    }
  }
  @media (max-width: 700px){
    footer{
      position: relative;
    }
    .content .top .logo-details{
      font-size: 26px;
    }
    .content .top .media-icons a{
      height: 35px;
      width: 35px;
      font-size: 14px;
      line-height: 35px;
    }
    footer .content .link-boxes .box{
      width: calc(100% / 3 - 10px);
    }
    footer .content .link-boxes .input-box{
      width: 60%;
    }
    .bottom-details .bottom_text span,
    .bottom-details .bottom_text a{
      font-size: 12px;
    }
  }
  @media (max-width: 520px){
    footer::before{
      top: 298px;
    }
    footer .content .top{
      flex-direction: column;
    }
    .content .top .media-icons{
      margin-top: 16px;
    }
    footer .content .link-boxes .box{
      width: calc(100% / 2 - 10px);
    }
    footer .content .link-boxes .input-box{
      width: 100%;
    }
  }

  .address{
    font-size: 14px;
    color: white;
    font-weight: 400;
    line-height: 25px;
  }

  /*about page css*/
  .hero-inner{
    position: relative;
    width: 100%;
    height: 400px;
    background: #3a3b3d;
    background-image: url("../images/slider/alnoor-auto-parts.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

  }
  .hero-inner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
  }

  .hero-inner .inner-hero-content{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .inner-hero-content h2,p{
    color: white;
  }
  .wrapper{
    width: 75%;
    margin: 0 auto;
    padding: 30px 0;
    text-align: center;
  }

  .heading span{
    color: #f70142;
  }

  .description-about{
    color: #3a3b3d;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    margin-top: 30px;
  }



.parts-box{
  display: none;
}

.parts-box.active{
  display: flex;
}


 

/*contact section css*/

.contact-container{
  width: 100%;
  padding: 50px;
  display: flex;
  background-color: white;
  margin-top: 30px;
  gap: 50px;

}

.contact-container .map-section
{
  width: 50%;

}

.add-sec{
  margin: 10px 0;
}

.contact-container .map-section .address{
  display: flex;
  align-items: flex-start;

  gap: 10px;
  color: #3a3b3d;
  text-align: left;
  font-size: 18px;
  margin-top: 20px;
  font-weight: 400;
}

.contact-container .map-section svg{
  color:#f70142;
  width: 25px;
  height: auto;
}
.map-section iframe{
  margin-top: 30px;
}


.form-sec{
  width: 50%;
  text-align: left;
}

.text-wrapper{
  text-align: left;
}

.text-wrapper .sub-heading{
  font-size: 26px;
  margin-bottom: 10px;
}

form{
  margin-top: 30px;
}

form label{
  display: block;
  font-size: 16px;
  margin-top: 20px;
}

form input, form textarea{
  width: 90%;
  padding: 14px;
  border: 1px solid #f70142;
  border-radius: 5px;
  margin-top: 5px;
  border-radius: 0;
}

button.cta-btns{
  outline: none;
  border: none;
  cursor: pointer;
}

iframe{
  height: 300px;
}

@media(max-width:767px){
  .contact-container{
    flex-direction:  column-reverse;
    padding: 40px 30px;
  }
  .contact-container .map-section{
    width: 100%;
  }

  iframe{
    height: 200px;
  }
  .form-sec{
    width: 100%;
  }
  form input, form textarea{
    width: 100%;
  } 
  .wrapper{
    width: 96%;
  }
  .heading{
    font-size: 30px;
  }
}

.popular-brands{
  /* text-align: center; */
  display: flex;
  justify-content: center; /* Center items horizontally */
  align-items: center;     /* Center items vertically */
  gap:20px;
  margin-top: 15px;
}
.popular-brands h2{
  color: #777;
}

.about-container{
  margin-top: 50px;
  display: flex;
}
.about-container .description{
  width: 65%;
}
.about-container .image{
  width: 35%;
}
.about-container .image img{
  width: 75%;
  border-radius: 10px;
}
.about-container .description p{
  text-align: left;
  color: #888 !important;
  line-height: 28px;
  margin-bottom: 8px;
}

.why-choose-container{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.why-choose-container .point-container{
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.why-choose-container .point-container .point{
  text-align: left;
  padding: 20px;
  border: solid 1px #ddd;
  border-radius: 5px;
  width: 33.3%;

}
.why-choose-container .point-container .point h4{
margin-bottom: 10px;
color: #f70142;

}
.why-choose-container .point-container .point p{
  font-weight: normal;
  color: #888;
  line-height: 26px;
  font-size: 16px;

}
.about-promises{
    margin-top: 25px !important;
    text-align: left;
    margin-left: 10px;
}
.about-promises li{
  list-style: disc;
  color: #888;
  margin-bottom: 15px;
  line-height: 28px;
}

.our-products{
  background: #e8e8e85c;
  padding-top: 50px;
  padding-bottom: 50px;
}
.our-products .container{
  width: 80% ;
  margin-left: auto;
  margin-right: auto;
  display: flex;  
  gap: 10px;;
}
.our-products .container .image{
    width: 40%;
}
.our-products .container .image img{
  width: 90%;
  border-radius: 5px;
}
.our-products .container .content{
  width: 60%;
}
.our-products .container .content .heading{
  margin-bottom: 30px !important;
}

.our-products .container .content h3{
  color: #f70142;
  margin-bottom: 15px;

} 
.our-products .product-container{
  margin-bottom: 20px;
}
.our-products .container .content p{
  color: #888; 
  font-size: 16px;
  line-height: 28px;
}