:root {
    --primary-color: #D18B2C;
    --secondary-color: #4BA3C7;
    --greyl: #4B4F55;
    --greyd: #D9D9D9;
    --backl: #F2F4F8;
    --backd: #0C1021;

    --fontpop: 'Poppins', sans-serif;
    --fontmon: 'Montserrat', sans-serif;
    --font-size-base: 16px;
}



.navbar {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 6rem;
    position: fixed;

    width: 100%;
    transition: .4s linear;
    z-index: 9;
}

.navbar-brand img {
    height: 50px;
}

.navbar.sticky {
    background: rgba(0, 0, 0, 0.3);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);



    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);

    padding: 0.75rem 6rem;
}

.nav-link {

    font-family: var(--fontmon);
    font-weight: 500;
    /* SemiBold */
    font-size: var(--font-size-base);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    color: white;
}




.navbar:hover{
    background-color: var(--backl);
    
}

.navbar:hover .btn-getintouch{
    background-color: transparent;
    color: var(--secondary-color);
    border-radius: 0.8rem;

    font-family: var(--fontmon);
    font-weight: 500;
    /* SemiBold */
    font-size: var(--font-size-base);

    padding-left: 1rem;
    padding-right: 1rem;
    border-color: var(--secondary-color);
    border-width: 2px;
}
.navbar:hover .nav-item .nav-link{
    
    color: black;
}
.navbar:hover .nav-item .nav-link:hover{
  color: var(--secondary-color);
}
.nav-item .nav-link.active{
  color: var(--secondary-color);
}
.othernav .navbar .nav-item .nav-link.active{
  color: var(--secondary-color);
}
.btn-getintouch {
    background-color: transparent;
    color: white;
    border-radius: 0.8rem;

    font-family: var(--fontmon);
    font-weight: 500;
    /* SemiBold */
    font-size: var(--font-size-base);

    padding-left: 1rem;
    padding-right: 1rem;
    border-color: white;
    border-width: 2px;
}

.navbar:hover .btn-getintouch:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    border-width: 2px;
    color: white;
}

.main-wrapper {
    background: transparent;
    position: relative;
}


@media (max-width: 480px) {
    .navbar {
      padding: 0.5rem 1rem;
    }
  
    
  
    .navbar.sticky {
      padding: 0.5rem 1rem;
    }
  
    .navbar-brand img {
      height: 30px;
    }
  
    .navbar-toggler-icon {
      height: 20px;
      width: 20px;
    }
  
   
  
   
  
  
   
  
   
  
  }
  
  @media (min-width: 481px) and (max-width: 768px) {
    
  
    .navbar {
      padding: 1rem 2rem;
    }
  
    
  
    .navbar.sticky {
      padding: 1rem 2rem;
    }
  
    .navbar-brand img {
      height: 30px;
    }
  
    .navbar-toggler-icon {
      height: 20px;
      width: 20px;
    }
  
  
    
  
  
   
   
  
   
  }
  
  @media (min-width: 769px) and (max-width: 1000px) {
    
    .navbar {
      padding: 1rem 4rem;
    }
  
   
    .navbar.sticky {
      padding: 1rem 4rem;
    }
  
    .navbar-brand img {
      height: 40px;
    }
  
    .navbar-toggler-icon {
      height: 24px;
      width: 24px;
    }
  
    
  
  
   
  
    
  }
  @media (max-width: 1000px) {
    .navbar-toggler {
        
        background-color: var(--backl);
    }
}
  
  

/* container fluid  */
@media (min-width: 1300px) {
    .container-fluid {
        max-width: 1300px !important;
    }

}

@media (max-width: 480px) {
    .container-fluid {
        max-width: 360px !important;
    }

}

@media (min-width: 481px) and (max-width: 615px) {
    .container-fluid {
        max-width: 481px !important;
    }
}

@media (min-width: 616px) and (max-width: 768px) {
    .container-fluid {
        max-width: 500px !important;
    }
}

@media (min-width: 769px) and (max-width: 900px) {
    .container-fluid {
        max-width: 769px !important;
    }

}

@media (min-width: 901px) and (max-width: 1000px) {
    .container-fluid {
        max-width: 900px !important;
    }

}

@media (min-width: 1001px) and (max-width: 1199px) {
    .container-fluid {
        max-width: 1001px !important;
    }

}

@media (min-width: 1200px) and (max-width: 1299px) {
    .container-fluid {
        max-width: 1200px !important;
    }

}


/* hero section  */
.main-wrapper {
    position: relative;
    height: 100vh;
    color: #fff;
}

.main-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.main-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.hero-section {
    text-align: center;
    background: transparent;
    padding: 3rem 6rem;
    padding-top: 8rem !important;
    position: relative;
    z-index: 6;
}

.heading1 {
    font-family: var(--fontmon);
    font-weight: bold;
    font-size: 64px;
   

}

  .gradient-text {
    background: linear-gradient(to right,
      #D18B2C 14%, 
      #AF9153 36%, 
      #9F9466 46%, 
      #8E977A 57%, 
      #6D9DA0 79%, 
      #4BA3C7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;

}
.title{
    padding-left: 12rem;
    padding-right: 12rem;
    padding-top:6rem;
}
.heading2 {
    font-family: var(--fontmon);
    font-weight: 500;
    font-size: 16px;
    color: white;
}

.hero-section img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.brand-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.brand-logos img {
    max-width: 100px;
    height: auto;
}
.company {
    padding: 3rem 4rem;
    margin-bottom: 1rem;
    margin-top: 4rem;
    margin-left: 5rem;
    margin-right: 5rem;
    background: rgba(12, 16, 33, 0.3);
    border: 1.5px solid rgba(75, 163, 199, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
  
  }
  @media (max-width: 480px){
    .hero-section{
      padding: 1rem 1rem;
      padding-top: 2rem !important;
    }
    .title {
      padding-left: 1rem;
      padding-right: 1rem;
      padding-top: 2rem;
  }
  .heading1 text{
    font-size: 24px;
  }
 
  .heading2{
    font-size: 14px;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .company {
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    
}
.brand-logos img {
  max-width: 50px;
  height: auto;
}

  }
  @media (min-width: 481px) and (max-width: 768px){
    .hero-section{
      padding: 2rem 2rem;
      padding-top: 3rem !important;
    }
    .title {
      padding-left: 1rem;
      padding-right: 1rem;
      padding-top: 2rem;
  }
  .heading1 text{
    font-size: 32px;
  }
 
  .heading2{
    font-size: 14px;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .company {
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    
}
.brand-logos img {
  max-width: 60px;
  height: auto;
}

  }
  @media (min-width: 769px) and (max-width: 1000px){
    .hero-section{
      padding: 2rem 4rem;
      padding-top: 3rem !important;
      overflow: hidden;
    }
    .heading1 text{
      font-size: 40px;
    }
    .title {
      padding-left: 2rem;
      padding-right: 2rem;
      padding-top: 2rem;
  }

  }
  @media (min-width: 1001px) and (max-width: 1400px){
    .hero-section{
      padding: 2rem 6rem;
      padding-top: 6rem !important;
      overflow: hidden;
    }
    .heading1 text{
      font-size: 50px;
    }
    .title {
      padding-left: 3rem;
      padding-right: 3rem;
      padding-top: 6rem;
  }

  }


  /* about us section  */
  .about-us {
    padding: 3rem 6rem;
    background-color: var(--backl);
  }
  .section-title {
    font-family: var(--fontmon);
    font-size: 36px;
    font-weight: bold;
    
  }
  .parent-container {
    display: flex;
    justify-content: flex-end; /* Pushes content to the right */
    width: 100%;
  }

  .grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 10px;
    width: 90%;
    
}

.grid-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.item1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.item2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.item3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}
.about-us p{
  font-family: var(--fontmon);
  font-size: 16px;
  font-weight: 400;
  color: var(--greyl);
  text-align: justify;
}
.btn-yellow{
  background-color:var(--primary-color);
    color: white;
    border-radius: 0.8rem;

    font-family: var(--fontmon);
    
    font-size: var(--font-size-base);
    font-weight: 500;

    padding-left: 1rem;
    padding-right: 1rem;
    border-color: var(--primary-color);
    border-width: 2.5px;
}
.btn-yellow:hover{
  background-color:var(--secondary-color);
    color: white; 
    border-radius: 0.8rem;

    font-family: var(--fontmon);
    font-weight: 500;
    font-size: var(--font-size-base);

    padding-left: 1rem;
    padding-right: 1rem;
    border-color: var(--secondary-color);
}
@media (max-width: 480px){
  .about-us{
    padding: 1rem 1rem;
  }
  .section-title text{
    font-size: 24px;
  }
  .about-us p {
    
    font-size: 14px;
    
}
.parent-container {
  
  justify-content: flex-start;
  
}
.btn-yellow{
 
    
    font-size: 14px;
    margin-top: 1rem;
}
.btn-yellow:hover{
 
    font-size: 14px;
    margin-top: 1rem;

}
}
@media (min-width: 481px) and (max-width: 768px){
  .about-us{
    padding: 2rem 2rem;
  }
  .section-title text{
    font-size: 24px;
  }
  .about-us p {
    
    font-size: 14px;
    
}
.parent-container {
  
  justify-content: flex-start;
  
}
.btn-yellow{
 
    
    font-size: 14px;
    margin-top: 1rem;
}
.btn-yellow:hover{
 
    font-size: 14px;
    margin-top: 1rem;

}
}
@media (min-width: 769px) and (max-width: 1000px){
  .about-us{
    padding: 2rem 4rem;
  }
  .section-title text{
    font-size: 32px;
  }
  .about-us p {
    
    font-size: 14px;
    
}
.parent-container {
  
  justify-content: flex-start;
  
}
.btn-yellow{
 
    
    font-size: 16px;
    margin-top: 1rem;
}
.btn-yellow:hover{
 
    font-size: 16px;
    margin-top: 1rem;

}
}

/* services */
.services{
  padding: 3rem 6rem;
  background-color: var(--backd);
}
.services a{
  text-decoration: none;
}
.service-box {
  background: #1F2937;
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid var(--primary-color);
  transition: 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
  min-height: 20rem;
}

/* Glowing border effect */
.service-box:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 15px var(--primary-color);
  transform: scale(1.05);
}

/* Animated floating icons */
.service-icon {
  font-size: 50px;
  color: #ffaa33;
  margin-bottom: 15px;
  display: block;
  animation: float 3s infinite ease-in-out;
  transition: 0.3s;
}

/* Bounce effect on hover */
.service-box:hover .service-icon {
  animation: bounce 0.6s ease-in-out;
}
.service-box h3{
  font-family: var(--fontmon);
  font-size: 20px;
  color: white;
}
.service-box p{
  font-family: var(--fontmon);
  font-size: 15px;
  font-weight: 400 !important;
  color: var(--greyd);
}
@keyframes float {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-8px);
  }
}

@keyframes bounce {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-15px);
  }
}
@media (max-width: 480px){
  .services{
    padding: 1rem 1rem;
    
  }
  .service-box{
    padding: 1rem;
  }
  .service-box p {
   
    font-size: 14px;
    
}
.service-box h3 {
 
  font-size: 16px;
  
}
}
@media (min-width: 481px) and (max-width: 768px){
  .services{
    padding: 2rem 2rem;
    
  }
  .service-box{
    padding: 1.5rem;
  }
  .service-box p {
   
    font-size: 14px;
    
}
.service-box h3 {
 
  font-size: 16px;
  
}
}
@media (min-width: 769px) and (max-width: 1000px){
  .services{
    padding: 2rem 4rem;
    
  }
}
/* why choose us  */
.whychoose{
  padding: 3rem 6rem;
  background-color: var(--backl);
  position: relative;
  overflow: hidden;
}
.whychoose-content{
  position:relative;
  z-index: 2;
}
.icon-box {
  text-align: left;
  margin-bottom: 30px;
}

.icon-box img {
  max-width: 50px;
  margin-bottom: 15px;
}

.icon-box h5 {
  font-size: 20px;
  font-family: var(--fontmon);
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--backd);
}

.icon-box p {
  font-family: var(--fontmon);
  font-size: 14px;

  color: var(--greyl);
}

.image-wrapper {
  position: absolute;
  top: 0%;
  right:0%;
  bottom: 0;

  z-index: 0;
  overflow: hidden;
  width: auto;
  height: 100%;
  
}



.image-wrapper img {
  width: 100%; /* Ensures the image spans the width of the container */
  height: 110%; /* Ensures the image spans the height of the container */
  object-fit: cover; 
  object-position: center;
  position: relative;
  z-index: 0;
}
.image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom, 
    rgba(242, 244, 248, 0) 78%, 
    rgba(242, 244, 248, 1) 88%
  ), 
  linear-gradient(
    to left, 
    rgba(242, 244, 248, 0) 78%, 
    rgba(242, 244, 248, 1) 88%
  );
  z-index: 1; /* Layer above the image */
  pointer-events: none; /* Prevent blocking interactions */
}
@media (max-width: 480px){
  .whychoose{
    padding: 1rem 1rem;
  }
  .image-wrapper::after {
    
    background: rgba(216, 213, 213, 0.8);
    
  }
  .icon-box h5 {
    font-size: 16px;
    
    margin-bottom: 5px;
    
}
}
@media (min-width: 481px) and (max-width: 768px){
  .whychoose{
    padding: 2rem 2rem;
  }
  .image-wrapper::after {
    
    background: rgba(216, 213, 213, 0.8);
    
  }
  .icon-box h5 {
    font-size: 16px;
    
    margin-bottom: 5px;
    
}

}
@media (min-width: 769px) and (max-width: 1000px){
  .whychoose{
    padding: 2rem 4rem;
    background: rgba(216, 213, 213, 0.8);
  }
  .image-wrapper::after {
    
    background: rgba(216, 213, 213, 0.8);
    
  }
}


/* products section */
.products{
   padding: 3rem 6rem;
   background-color: var(--backl);
   
}

.product-section {
  background-color: var(--backd);
  padding: 4rem 4rem;
  padding-bottom: 5rem !important;
  border-radius: 2rem;
 
  
}

.btn-custom {
  background-color: #f7a942;
  border: none;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 8px;
  transition: 0.3s ease-in-out;
}
.btn-custom:hover {
  background-color: #e68a20;
}
.slider-wrapper {

  overflow: hidden;
  max-width: 100%;
  margin: auto;
  margin-bottom: 1rem !important;

}

.product-content h5{
  font-family: var(--fontmon);
  font-size: 20px;
  color: var(--secondary-color);
}

.product-content h1{
  font-family: var(--fontmon);
  font-size: 32px;
  color: #fff;

}
.product-content p{
  font-family: var(--fontmon);
  font-size: 14px;
  color: var(--greyd);
  
}
.swiper-pagination{
  
  bottom: 8% !important;
}
.swiper-pagination-bullet {
  background-color: var(--backl) !important; /* Change to your desired color */
  opacity: 1; /* Make sure it's fully visible */
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color) !important; /* Color for active dot */
}

.swiper-button-prev, 
.swiper-button-next {
    color: var(--greyl) !important; /* Change arrow color */
    
}
@media (max-width: 480px){
  .products{
    padding: 1rem 1rem;
  }
  .product-section {
    
    padding: 1rem 1rem;
    padding-bottom: 2rem !important;
    
   
    
  }
  .big{
    display: none;
  }
  .swiper-pagination {
    bottom: 2% !important;
}
.product-content h1 {
  
  font-size: 20px;
  
}
.product-content h5 {
  
  font-size: 16px;
  
}
}
@media (min-width: 481px) and (max-width: 768px){
  .products{
    padding: 2rem 2rem;
  }
  .product-section {
    
    padding: 2rem 2rem;
    padding-bottom: 2rem !important;
    
   
    
  }
  
  .swiper-pagination {
    bottom: 2% !important;
}
.product-content h1 {
  
  font-size: 20px;
  
}
.product-content h5 {
  
  font-size: 16px;
  
}
}
@media (min-width: 769px) and (max-width: 1000px){
  .products{
    padding: 2rem 4rem;
  }
  .product-section {
    
    padding: 2rem 2rem;
    padding-bottom: 2rem !important;
    
   
    
  }
}
@media (max-width: 1000px){
     .big{
      display: none;
     }
}
@media (min-width: 1001px){
  .small{
   display: none;
  }
}

/* testimonial  */

/* testimonial section  */
.testimonial {
  padding: 3rem 4rem;
  position: relative;
  background-color: var(--backl);
}

.testimonial-card {
  background-color: var(--secondary-color); /* Adjust based on your image */
  color: white;
  padding: 2rem;
  border-radius: 10px;
  
  max-width: 85%;
  height: 20rem;
}
.testimonial-image img {
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  
}
.testimonial-image{
  height: 90%;
  width: 100%;
  overflow: hidden;
}
.testimonial-text {
  font-family: var(--fontmon);
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  text-align: justify;
}
.testimonial-name {
  font-family: var(--fontmon);
  font-size: 24px;
  color: #fff;
  font-weight: 600;
}
.testprev,
.testnext {
    background-color: transparent;

    border: 2px solid var(--secondary-color);

    border-radius: 8px;

    width: 30px;

    height: 30px;

    display: flex;

    justify-content: center;
    align-items: center;
    cursor: pointer;

    opacity: 1 !important;
}

.testprev:hover {
    background-color: var(--secondary-color);
}

.testprev:hover svg path {
    stroke: #fff;

}

.testnext:hover {
  background-color: var(--secondary-color);
}

.testnext:hover svg path {
    stroke: #fff;

}



.testprev::after,
.testnext::after {
    content: '';

}

.testprev {
    top: 46%;
    left: 0%;
}

.testnext {
    top: 46%;
    right: 0%;
}
@media (max-width: 480px){
  .testimonial {
    padding: 1rem 1rem;
   
  }
  .testimonial-card {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 85%;
    height: 40rem;
}
.testimonial-image {
  height: 85%;
 
}
.testimonial-text {
  
  font-size: 14px;
 
}
.testimonial-name {
  
  font-size: 20px;
  
}
.testprev,
.testnext {
    

    width: 25px;

    height: 25px;

    
}

}
@media (min-width: 481px) and (max-width: 768px){
  .testimonial {
    padding: 2rem 2rem;
   
  }
  .testimonial-card {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 85%;
    height: 36rem;
}
.testimonial-image {
  height: 90%;
  display: flex;
  align-items:center ;
  justify-content: center;
 
}
.testimonial-text {
  
  font-size: 14px;
 
}
.testimonial-name {
  
  font-size: 20px;
  
}
.testprev,
.testnext {
    

    width: 25px;

    height: 25px;

    
}

}
@media (min-width: 769px) and (max-width: 1000px){
  .testimonial {
    padding: 2rem 4rem;
   
  }
  .testimonial-card {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 85%;
    height: 36rem;
}
.testimonial-image {
  height: 90%;
  display: flex;
  align-items:center ;
  justify-content: center;
 
}
}

/* faqs section here  */
.faq {
  padding: 3rem 6rem;
  background: var(--backl);
}

.navbar-nav .nav-link.show {
  color:white;
}

.black {
  color:black;
}

/* coordination  */
.coordination {
  padding: 3rem 4rem;
  background: #F5F5F5;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  background: rgba(12, 16, 33, 0.3);
    border: 1.5px solid rgba(75, 163, 199, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  height: 150px;
  margin-left: 40px;
  margin-right: 40px;
}

.accordion-button {
  background-color: #fff;
  border: none;
  font-size: 16px;
  font-weight: bold;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 3px 4px 13px rgba(0, 0, 0, 0.1), 19px 4px 20px rgba(0, 0, 0, 0.1);
  padding-left: 3rem;
  padding-right: 3rem;

}


.accordion-item {
  border: none;
  border-radius: 10px;
  background: #f8f9fa;

}

.accordion-header {
  font-family: var(--fontmon);

  font-size: 20px;

  font-weight: 600;
}



.accordion-body {
  font-size: 14px;
  line-height: 1.5;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: #fff;
  box-shadow: 3px 4px 13px rgba(0, 0, 0, 0.1), 19px 4px 20px rgba(0, 0, 0, 0.1);
  padding-left: 3rem;
  padding-right: 3rem;
  font-family: var(--fontmon);

  font-size: 14px;

  font-weight: 500;
  color: #626060;
}

.accordion-button:not(.collapsed) {

  background-color: #fff;
  box-shadow: none;
}

@media (max-width: 480px) {
  .faq {
      padding: 1rem 1rem;
  }

 

  .accordion-button {
      font-size: 14px;
      padding: 10px;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
  }

  .accordion-header {
      font-size: 16px;
  }

  .accordion-body {
      font-size: 12px;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
  }
}

@media (min-width: 480px) and (max-width: 768px) {
  .faq {
      padding: 2rem 2rem;
  }

  .accordion-button {
      font-size: 15px;
      padding: 14px;
      padding-left: 2.5rem;
      padding-right: 2.5rem;
  }

  .accordion-item {
      border-radius: 9px;
  }

  .accordion-header {
      font-size: 19px;
  }

  .accordion-body {
      font-size: 13px;
      padding-left: 2rem;
      padding-right: 2rem;
  }
}
@media (min-width: 769px) and (max-width: 1000px){
  .faq{
    padding: 2rem 4rem;
  }
}

/* insights and article  */

.insights{
  padding: 3rem 6rem;
  background-color: var(--backl);
}

.news-card {
  height: 20 rem;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  
}

.image-news{
  height: 10rem; 
  width: 100%; 
  object-fit: cover;
}


.card-title-news{
  font-family: var(--fontmon);
  font-size: 16px;
  font-weight: 600;
}
.card-text-news{
  font-family: var(--fontmon);
  font-size: 13px;
  font-weight: 400;
  color: var(--greyl);
}
.news-card a{
  font-family: var(--fontmon);
  font-size: 13px;
  font-weight: 400;
  color: var(--secondary-color);
  text-decoration: none;
}
.news-card a:hover{
  
  text-decoration: underline;
  text-decoration-color: var(--secondary-color);
}
@media (max-width: 480px){
  .insights{
    padding: 1rem 1rem;
  }
}
@media (min-width: 481px) and (max-width: 768px){
  .insights{
    padding: 2rem 2rem;
  }
}
@media (min-width: 769px) and (max-width: 1000px){
  .insights{
    padding: 2rem 4rem;
  }
}


/* footer  */
footer {
  background-color: var(--backd);
  color: #ffffff;
  padding: 3rem 6rem;
}

.footer-logo img {
  max-width: 100px;
}

.footer-section h5 {
  font-family: var(--fontmon);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--greyd);
  text-decoration: none;
  font-family: var(--fontmon);
  font-size: 16px;
}
.footer-section p {
  color: var(--greyd);
  text-decoration: none;
  font-family: var(--fontmon);
  font-size: 16px;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}


.footer-heading{
  font-family: var(--fontmon);
  font-size: 32px;
  font-weight: 500;
  color: #fff;
}



.footer-bottom {
  border-top: 1px solid #ffffff20;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.875rem;
}

.custom-input-group {
   
  max-width: 31rem;
 background-color: #FAF9F9;
  border-radius: 1rem;
  padding: 1rem;
}

.custom-input {
  display: flex;
  margin-left: 1rem;
  align-items: flex-start;

  border: none;
  box-shadow: none;
  background-color: #FAF9F9;
  
  padding: 8px;
  padding-left: 0%;
  border: 0px solid #ccc;
  border-radius: 0px 0 0 0px;
  outline: none;
}

.form-control{
  outline: none;
}
@media (max-width: 480px){
  footer{
    padding: 1rem 1rem;
  }
  .footer-heading {
    
    font-size: 20px;
   
}
}
@media (min-width: 481px) and (max-width: 768px){
  footer{
    padding: 2rem 2rem;
  }
}
@media (min-width: 769px) and (max-width: 1000px){
  footer{
    padding: 2rem 4rem;
  }
}

/* services page  */
.service-page{
  padding: 3rem 6rem;
  background-color: var(--backl);
  padding-top: 8rem !important;
}
.othernav .navbar{
  background-color: var(--backl);
}
.othernav .navbar .sticky{
  background: rgba(0, 0, 0, 0.3);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);



    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);

    padding: 0.75rem 6rem;
}
 .othernav .navbar .nav-item .nav-link{
   color: #0C1021;
   
 }
 
 .othernav .navbar .btn-getintouch{
  background-color: transparent;
  color: var(--secondary-color);
  border-radius: 0.8rem;

  font-family: var(--fontpop);
  font-weight: 500;
  /* SemiBold */
  font-size: var(--font-size-base);

  padding-left: 1rem;
  padding-right: 1rem;
  border-color: var(--secondary-color);
  border-width: 2.5px;
}
.serve-title{
  font-family: var(--fontmon);
  font-size: 24px;
  font-weight: 800;
  color: #0C1021;
}
.service-page h4{
  font-family: var(--fontmon);
  font-size: 20px;
  font-weight: 500;
  color: #0C1021;
}
.service-page p{
  font-family: var(--fontmon);
  font-size: 16px;
  font-weight: 500;
  color: var(--greyl);
}
.softimage{
  justify-content: flex-end;
}
@media (max-width: 480px){
  .service-page{
    padding: 1rem 1rem;
    
  }
  .softimage{
    justify-content: flex-start;
  }
}
@media (min-width: 481px) and (max-width: 768px){
  .service-page{
    padding: 2rem 2rem;
    
  }
  .softimage{
    justify-content: flex-start;
  }
 
}
@media (min-width: 769px) and (max-width: 1000px){
  .service-page{
    padding: 2rem 4rem;
    
  }
  .softimage{
    justify-content: flex-start;
  }
}

/* products page  */

.main {
  position: relative;
  height: 15rem;
  color: #fff;
  padding-top: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.main .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
.products-page{
  padding: 4rem 6rem;
  background-color: var(--back);

}


.page-title {
  font-family: var(--fontmon);
  
  font-weight: bold;
  position: relative;
  z-index: 2;

}

.product-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 1.5rem;
  backdrop-filter: blur(10px);


  transition: all 0.3s ease-in-out;
}

.product-card:hover {

  background: rgba(62, 65, 70, 0.2);


  backdrop-filter: blur(10px);


  transition: all 0.3s ease-in-out;
}


.product-title {
  font-size: 24px;
  font-weight: bold;
  font-family: var(--fontmon);
}

.product-card p {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--fontmon);
}

.product-card h5 {
  font-size: 24px;
  font-weight: bold;
  font-family: var(--fontmon);
}

.product-features {
  list-style: none;
  padding: 0;
}

.product-features li {
  display: flex;
  align-items: center;
  font-family: var(--fontmon);
  font-size: 16px;
  font-weight: 600;

}


.divider {
  border: 0;
  height: 1.5px;
  background-color: var(--grey);
  margin: 10px;
}

@media (max-width: 480px) {
  .products-page {
    padding: 2rem 1rem;
  }
  .main{
    padding: 5rem 1rem;
    height: 12rem;
  }

  .page-title text{
    font-size: 25px;
    padding-left: 1rem;
  }
  .page-title{
    padding-top: 2rem;
  }

  .product-card {
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .product-title {
    font-size: 20px;
  }

  .product-card p {
    font-size: 12px;
  }

  .product-card h5 {
    font-size: 20px;
  }

  .product-features li {
    font-size: 14px;
  }

  .divider {
    margin: 5px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .products-page {
    padding: 2rem 2rem;
  }
  .main{
    padding: 5rem 2rem;
    height: 15rem;
  }
  

  .page-title text{
    font-size: 28px;
    padding-left: 1rem;
  }
  .page-title{
    padding-top: 3rem;
  }

  .section-title {
    font-size: 36px;
  }

  .product-card {

    padding: 1.5rem;
    border-radius: 1rem;
    width: 20rem;
  }


  .product-title {
    font-size: 20px;
  }

  .product-card p {
    font-size: 12px;
  }

  .product-card h5 {
    font-size: 20px;
  }

  .product-features li {
    font-size: 14px;
  }

  .divider {
    height: 1px;
    margin: 8px;
  }
}

@media (min-width: 769px) and (max-width: 1000px) {
  .products-page {
    padding: 3rem 4rem;
  }
  .main{
    padding: 5rem 4rem;
  }

  .section-title {
    font-size: 36px;
  }

  .product-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1.2rem;
  }

  .product-title {
    font-size: 20px;
  }

  .product-card p {
    font-size: 12px;
  }

  .product-card h5 {
    font-size: 20px;
  }

  .product-features li {
    font-size: 14px;
  }

  .divider {
    height: 1px;
    margin: 8px;
  }
}

@media (min-width: 769px) and (max-width: 1000px) {
  .products-page .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .products-page .col-md-4 {
    width: calc(50% - 10px);
    padding: 0 10px;
  }

  .product-card {
    width: 100%;
  }
}

@media (min-width: 1001px) and (max-width: 1300px) {
  .products-pages {
    padding: 3rem 4rem;
  }

  .section-title {
    font-size: 36px;
  }

  .product-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1.2rem;
  }

  .product-title {
    font-size: 20px;
  }

  .product-card p {
    font-size: 12px;
  }

  .product-card h5 {
    font-size: 20px;
  }

  .product-features li {
    font-size: 14px;
  }

  .divider {
    height: 1px;
    margin: 8px;
  }
}

@media (min-width: 1001px) and (max-width: 1300px) {
  .products-page .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .products-page .col-md-4 {
    width: calc(50% - 10px);
    padding: 0 10px;
  }

  .product-card {
    width: 100%;
  }
}


/* get in touch  */
.contact-section {
  padding: 3rem 6rem;
  background-color: var(--backl);
}

.form-label {
  font-weight: 500;
}
.map-embed{
margin-bottom: 2rem;
}





.contact-details i {
  color: var(--secondary-color);
  margin-right: 8px;
}

.map-embed {
  border: 0;
  width: 100%;
  height: 80%;
}

@media (max-width: 480px){
  .contact-section {
    padding: 1rem 1rem;
    
  }
 
}
@media (min-width: 481px) and (max-width: 768px) {
  .contact-section {
    padding: 2rem 2rem;
    
  }
  
}
@media (min-width: 769px) and (max-width: 1000px) {
  .contact-section {
    padding: 3rem 3rem;
    
  }
  
}



/* about company  */
.about{
  background-color: var(--backl) !important;
  padding: 3rem 4rem;
}


.aboutpic {
  width: 35rem;
  height: 25rem;

  overflow: hidden;
}

.small-img {
    width: 200px;
}

.aboutpic img {
  width: 100%;
  height: 100%;
  object-fit: cover;



}

.main-heading {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: var(--fontmon);
}

.profile-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
}

.aboutpara p{
  font-family: var(--fontmon);
  font-size: 16px;
  text-align: justify;
  color: var(--grey);
}
.aboutpara h1{
  font-family: var(--fontmon);
  font-size:32px;
 
  color: var(--secondary-color);
  padding-bottom: 1rem;
}
@media (max-width: 480px){
  .about{
    
    padding: 1rem 2rem;
  }
  .aboutpara p{
   
    font-size: 14px;
   
  }
  .aboutpara h1{
   
    font-size:28px;
   
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media (min-width: 480px) and (max-width: 768px){
  .about{
    
    padding: 2rem 3rem;
  }
  .aboutpara h1{
   
    font-size:28px;
   
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media (min-width: 769px) and (max-width: 1000px){
  .about{
    
    padding: 3rem 3rem;
  }
  .aboutpara h1{
   
    font-size:28px;
   
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}


/* news details  */
.sidebar-title {
  font-weight: 600;
 
}
.trending-item {
  display: flex;
  margin-bottom: 15px;
  /* border-radius: 1rem; */
}
.trending-item:hover{
  background-color: var(--secondary-color);
  cursor: pointer;
}
.trending-item img {
  width: 8rem;
  height: 5rem;
  object-fit: cover;
  
  margin-right: 10px;
}
.trending-item small {
  font-size: 0.85rem;
}
.newsimage {
  position: relative;
  height: 26rem;

 


}

.newsimage img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
  
  


}
.datenews{
  color: #525252;
}
.datenews img{
height: 2rem;
}
.news-title1{
font-size: 1rem;
font-weight: 600;
}

@media (max-width: 480px){

.mainpart {
padding: 3rem 1rem;
}
.main-content {
padding-right: 1rem;
}
.news-title1 {
font-size: 0.8rem;
font-weight: 600;
}
.trending-item small {
font-size: 0.7rem;
}
}
@media (min-width: 481px) and (max-width: 768px){

.mainpart {
padding: 3rem 2rem;
}
.main-content {
padding-right: 1rem;
}
}



/* gallery  */
.gallery{
  padding: 3rem 6rem;
  background-color: var(--backwhite);

}


.image-container {
  position: relative;
  overflow: hidden;
}
.image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.download-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.6);
  color: white;
  padding: 8px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
}
.download-btn:hover {
  background: rgba(255, 255, 255, 1);
}

@media (max-width: 480px){
  .gallery{
      padding: 2rem 1rem;
  }

}
@media (min-width: 481px) and (max-width: 768px){
  .gallery {
    padding: 2rem 2rem;
   
  }
 
}
@media (min-width: 769px) and (max-width: 1000px){
  .gallery {
    padding: 2rem 4rem;
   
  }
}


/* privacy policies  */

.policies{
  padding: 3rem 6rem;
  background-color: var(--backwhite);
}
.privacy-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.privacy-title {
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
}
.privacy-text {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}
.privacy-link {
  color: var(--primary-color);
  text-decoration: none;
}
.privacy-link:hover {
  text-decoration: underline;
}



@media (max-width: 480px){
  .policies{
      padding: 2rem 1rem;
  }
 
}
@media (min-width: 481px) and (max-width: 768px){
  .policies{
    padding: 2rem 2rem;
   
  }
 
}
@media (min-width: 769px) and (max-width: 1000px){
  .policies{
    padding: 2rem 4rem;
   
  }
}


/* New Products listing */

.main {
  position: relative;
  height: 15rem;
  color: #fff;
  padding-top: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.main .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
.products-page{
  padding: 4rem 6rem;
  background-color: var(--back);

}


.page-title {
  font-family: var(--fontmon);
  font-weight: bold;
  position: relative;
  z-index: 2;
}

.product-card {
  padding: 1rem;
  background: rgba(209, 139, 44, 0.2);
  border-radius: 1.5rem;
  backdrop-filter: blur(10px);
  min-height: 25rem;
  border: none;
  transition: all 0.3s ease-in-out;
}

.product-card {
  position: relative;
  overflow: hidden;
}
.product-image {
  height: 20rem; 
  width: 100%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  overflow: hidden; 
  border-radius: 1rem; 
}

.product-image img {
  border-radius: 1rem;
  object-fit: cover; 
  transition: opacity 0.4s ease-in-out;
}


.product-details {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.5rem;
  padding: 2rem;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.buttom-fix {
  margin-bottom: 10px; /* This will push the button to the bottom */
}

.overlay-content {
  
  font-family: var(--fontmon);
  font-weight: 600;

color: rgb(0, 0, 0);
font-size: 1.2rem;
text-align: center;
opacity: 1;
transition: opacity 0.4s ease-in-out;
}

.navbar:hover .nav-item .nav-link.active{
  color: var(--secondary-color);
}
/* .product-image .overlay-content {
  position: absolute;
  top: 90%;
    left: 24%;
    font-family: var(--fontmon);
    font-weight: 600;
  transform: translate(-50%, -50%);
  color: rgb(0, 0, 0);
  font-size: 1.2rem;
  text-align: center;
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
} */
.product-card:hover .product-image img {
  opacity: 0;
}

.product-card:hover .product-details {
  opacity: 1;
  transform: translateY(0);
}
.product-card:hover .product-details .btn-yellow:hover{
  background-color:var(--secondary-color);
    color: white; 
    border-radius: 0.8rem;

    font-family: var(--fontmon);
    font-weight: 500;
    font-size: var(--font-size-base);

    padding-left: 1rem;
    padding-right: 1rem;
    border-color: var(--secondary-color);
}
.product-card:hover .product-image .overlay-content {
  opacity: 1;
}

.product-title {
  font-size: 24px;
  font-weight: bold;
  font-family: var(--fontmon);
}

.product-card p {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--fontmon);
}

.product-card h5 {
  font-size: 24px;
  font-weight: bold;
  font-family: var(--fontmon);
}

.product-features {
  list-style: none;
  padding: 0;
}

.product-features li {
  display: flex;
  align-items: center;
  font-family: var(--fontmon);
  font-size: 16px;
  font-weight: 600;

}


.divider {
  border: 0;
  height: 1.5px;
  background-color: var(--grey);
  margin: 10px;
}

.buttom-fix {
  position: absolute; /* Positioning relative to the nearest positioned ancestor */
  bottom: 0.1rem; /* Distance from the bottom of the parent container */
  margin-top: auto;
}

@media (max-width: 480px) {
  .products-page {
    padding: 2rem 1rem;
  }
  .main{
    padding: 5rem 1rem;
    height: 12rem;
  }

  .page-title text{
    font-size: 25px;
    padding-left: 1rem;
  }
  .page-title{
    padding-top: 2rem;
  }

  .product-card {
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .product-title {
    font-size: 20px;
  }

  .product-card p {
    font-size: 12px;
  }

  .product-card h5 {
    font-size: 20px;
  }

  .product-features li {
    font-size: 14px;
  }

  .divider {
    margin: 5px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .products-page {
    padding: 2rem 2rem;
  }
  .main{
    padding: 5rem 2rem;
    height: 15rem;
  }
  

  .page-title text{
    font-size: 28px;
    padding-left: 1rem;
  }
  .page-title{
    padding-top: 3rem;
  }

  .section-title {
    font-size: 36px;
  }

  .product-card {

    padding: 1.5rem;
    border-radius: 1rem;
    width: 20rem;
  }


  .product-title {
    font-size: 20px;
  }

  .product-card p {
    font-size: 12px;
  }

  .product-card h5 {
    font-size: 20px;
  }

  .product-features li {
    font-size: 14px;
  }

  .divider {
    height: 1px;
    margin: 8px;
  }
}

@media (min-width: 769px) and (max-width: 1000px) {
  .products-page {
    padding: 3rem 4rem;
  }
  .main{
    padding: 5rem 4rem;
  }

  .section-title {
    font-size: 36px;
  }

  .product-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1.2rem;
  }

  .product-title {
    font-size: 20px;
  }

  .product-card p {
    font-size: 12px;
  }

  .product-card h5 {
    font-size: 20px;
  }

  .product-features li {
    font-size: 14px;
  }

  .divider {
    height: 1px;
    margin: 8px;
  }
}

@media (min-width: 769px) and (max-width: 1000px) {
  .products-page .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .products-page .col-md-4 {
    width: calc(50% - 10px);
    padding: 0 10px;
  }

  .product-card {
    width: 100%;
  }
}

@media (min-width: 1001px) and (max-width: 1300px) {
  .products-pages {
    padding: 3rem 4rem;
  }

  .section-title {
    font-size: 36px;
  }

  .product-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1.2rem;
  }

  .product-title {
    font-size: 20px;
  }

  .product-card p {
    font-size: 12px;
  }

  .product-card h5 {
    font-size: 20px;
  }

  .product-features li {
    font-size: 14px;
  }

  .divider {
    height: 1px;
    margin: 8px;
  }
}

@media (min-width: 1001px) and (max-width: 1300px) {
  .products-page .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .products-page .col-md-4 {
    width: calc(50% - 10px);
    padding: 0 10px;
  }

  .product-card {
    width: 100%;
  }
}

@media (max-width: 480px){
  .coordination{
    padding: 1rem 1rem;
  }
}
@media (min-width: 481px) and (max-width: 768px){
  .coordination{
    padding: 2rem 2rem;
  }
}
@media (min-width: 769px) and (max-width: 1000px){
  .coordination{
    padding: 2rem 4rem;
  }
}