

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;

}

/* header start */
header {
  background-color: #04a3a5;
  font-weight: bolder;
  color: white;
} 

.info, .menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.info li, .menu li {
  list-style: none;
  padding: 5px;
  color: white;
}

.menu li {
  margin: 0 10px; /* Added margin for spacing */
}

.menu li a:hover {
  color: white;
}

.menu a {
  text-decoration: none;
 
}

.info a, .menu a {
  color: white;
  text-decoration: none;
}


 


        @media (max-width: 545px) {
  .info a, .menu a {
    font-size: 12px;
  }
  .info li, .menu li {
    list-style: none;
    padding: 0px;
    color: white;
  }
}

                          /* -------------------------header start -------------------------*/


                                                   
                             /* -----------=logo,cat,search -----------------------------*/
 .searchBar {
  position: relative;
}

.search-box {
  width: 100%;
  padding-right: 40px;
  /* Adjust padding to ensure space for the search icon */
}

.search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.category-dropdown {
  width: 100%;
  padding: 0.375rem 0.75rem;
  /* Adjust padding for better appearance */
  border: 1px solid rgb(135 132 132);
}

.callUs p {
  color: #04a3a5;
  font-weight: bold;
  font-size: 1.2rem;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .callUs p {
      font-size: 13px;
  }
}

@media only screen and (max-width: 768px) {
  .callUs {
      display: none;
  }
}




.unique-search-bar {
  position: relative;
}

.unique-search-input {
  width: 100%;
  padding: 10px;
  color: black;
  height: 43px;
  border: 1px solid rgb(135 132 132);
  margin-bottom: 5PX;
}

.unique-search-icon {
  position: absolute;
  right: 15px;
  top: 45%;
  transform: translateY(-50%);
  color: black;
}

.unique-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  max-height: 200px;
  overflow-y: auto;
  background-color: #fff;
  display: none;
  z-index: 1000;
}

.unique-search-result-item {
  padding: 10px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.unique-search-result-item:hover {
  background-color: #f0f0f0;
}

/* Responsive */
@media (max-width: 767px) {
  .logo {
      width: 245px; /* Decrease logo width */
      height: auto; /* Ensure aspect ratio is maintained */
      /* Use this line to adjust logo height */
      height: 69px;
  }
}









          
 /*----------------------- orange navbar ---------------------------------*/
 .navbar {
  overflow-y: auto;
  top: 0;
  left: 0;
  background-color: #ff6f00;
  color: #fff;
  width: 100%;
  display: flex;
  justify-content: center; /* Align items horizontally */
  align-items: center; /* Align items vertically */
  
  font-weight: bolder;
}

.navbar ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap; /* Allow wrapping to new lines */
}

.navbar li {
  padding: 0 10px;
}

.navbar a {
  text-decoration: none;
  color: #fff;
  padding: 10px;
  display: block;
}

.navbar a:hover {
  background-color:#04a3a5;
}

.content {
  margin-top: 60px; /* Adjust according to navbar height */
  padding: 18px;
  text-align: center; /* Align content in the center */
}

.toggle-menu {
  cursor: pointer;
  font-size: 37px; /* Adjust the size of the three lines here */
  height: 38px; /* Adjust the height of the three lines here */
  width: 40px; /* Adjust the width of the three lines here */
  margin-left: auto; /* Push to the right */
  display: none; /* Initially hide on large screens */
  margin-bottom: 7px;
}

@media only screen and (max-width: 768px) {
  .toggle-menu {
      display: block;
  }

  .navbar {
      flex-direction: column;
      align-items: center; /* Align items vertically */
      height: auto;
  }

  .navbar ul {
      flex-direction: column;
      display: none;
  }

  .navbar ul.active {
      display: flex;
  }

  .navbar li {
      padding: 10px 0;
  }
}

 /* -------------------------------------orange navbar end -----------------------*/



/* header start */
header {
  background-color: #04a3a5;
  font-weight: bolder;
  color: white;
}

.info, .menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.info li, .menu li {
  list-style: none;
  padding: 5px;
  color: white;
}

.menu li {
  margin: 0 10px; /* Added margin for spacing */
}

.menu li a:hover {
  color: white;
}

.menu a {
  text-decoration: none;
 
}

.info a, .menu a {
  color: white;
  text-decoration: none;
}


 


        @media (max-width: 545px) {
  .info a, .menu a {
    font-size: 12px;
  }
  .info li, .menu li {
    list-style: none;
    padding: 0px;
    color: white;
  }
}






/* client list animation start---------------------------------------------- */
.client-list-background {
  background-color: #FFE0EF;
  height: 260px;
  width: 100%;
  overflow: hidden;
}

.our-partners {
  /* margin-top: 30px; */
  color: #3B2871;
  font-size: 30px;
  font-family: Inter, sans-serif;
  text-align: center;
  font-weight: bolder;
}

.partner-carousel {
  display: flex;
  justify-content: flex-start;
  position: relative;
  animation: scroll linear infinite;
  width: max-content;
  margin-top: 16px;
}

.partner-box {
  width: 190px;
  height: 190px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 0;
  margin: 0 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Media query for screens 768px and below */
@media (max-width: 768px) {
  .client-list-background {
    height: 350px;
  }

  .partner-box {
    width: 250px;
    height: 250px;
  }
}



/* Media query for extra small screens (below 576px) */
@media (max-width: 576px) {
  .client-list-background {
    height: 300px;
  }

  .partner-box {
    width: 200px;
    height: 200px;
  }
}
/* client list end------------------------------------- */











        
/* product list animation start---------------------------------------------- */
.product-list-bg {
  background-color: #FFE0EF;
  height: 260px;
  width: 100%;
  overflow: hidden;
}

.product-title {
  /* margin-top: 30px; */
  color: #3B2871;
  font-size: 30px;
  font-family: Inter, sans-serif;
  text-align: center;
  font-weight: bolder;
}

.product-carousel {
  display: flex;
  justify-content: flex-start;
  position: relative;
  animation: scroll linear infinite;
  width: max-content;
  margin-top: 16px;
}

.product-box {
  width: 190px;
  height: 190px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 0;
  margin: 0 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Media query for screens 768px and below */
@media (max-width: 768px) {
  .product-list-bg {
    height: 350px;
  }

  .product-box {
    width: 250px;
    height: 250px;
  }
}

/* Media query for extra small screens (below 576px) */
@media (max-width: 576px) {
  .product-list-bg {
    height: 300px;
  }

  .product-box {
    width: 200px;
    height: 200px;
  }
}
/* product list end------------------------------------- */










/* 
---------------- */

                            .swiper-container {
                              width: 100%;
                              padding: 20px 0;
                              
                          } 
                  
                          .swiper-slide {
                              flex: 0 0 auto;
                              
                              width: calc(50% - 20px); /* Adjust as needed */
                              margin: 0 10px; /* Adjust as needed */
                              background-color: #fff;
                              border: 1px solid #ddd;
                              border-radius: 5px;
                              overflow: hidden;
                              box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
                          }
                                      
                                              .product-info {
                                                  padding: 20px;
                                                  height: 100%; /* Adjust height as needed */
                                              }
                                      
                                              .product-title {
                                                  font-weight: bold;
                                                  margin-bottom: 10px;
                                              }
                                      
                                              .product-description {
                                                  color: #666;
                                                  margin-bottom: 10px;
                                              }
                                      
                                              .review-star > ul {
                                                  list-style: none;
                                                  display: flex;
                                                  justify-content: center;
                                                  align-items: center;
                                                  padding: 0;
                                              }
                                      
                                              .review-star > li {
                                                  padding: 5px;
                                              }
                                      
                                              .fa {
                                                  font-size: 26px;
                                                  transition: .4s;
                                              }
                                      
                                              .checked {
                                                  color: #ff9f43;
                                              }
                                      
                                              .fa:hover {
                                                  transform: scale(1, 3);
                                                  transition: .6s;
                                              }
                                      
                                              @media (max-width: 768px) {
                                                  .swiper-slide {
                                                      width: calc(80% - 20px);
                                                  }
                                              } 





                                                      /* // multiple images sider */
      .super-unique-carousel-container {
        display: flex;
        justify-content: center;
        align-items: center;
        /* height: 100vh; */
        margin: 0;
        background:black;
        font-family: Arial, sans-serif;
        margin-top: 20px;
    }
    .super-unique-carousel {
        width: 80%;
        overflow: hidden;
        position: relative;
    }
    .super-unique-carousel-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }
    .super-unique-carousel-slide {
        min-width: 25%;
        box-sizing: border-box;
        padding: 10px;
        cursor: pointer;
    }
    .super-unique-product-card {
        background: white;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        text-align: center;
        height: 350px; /* Increased height */
    }
    .super-unique-product-card img {
        width: 100%;
        height: 100%; /* Ensures the image covers the card height */
        object-fit: cover;
        border-bottom: 1px solid #ddd;
    }
    .super-unique-product-card h2 {
        font-size: 18px;
        margin: 10px 0;
    }
    .super-unique-product-card p {
        font-size: 14px;
        color: #777;
        margin: 0 10px 10px;
    }
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .super-unique-carousel-slide {
            min-width: 50%; /* Two slides visible */
        }
    }
    @media (max-width: 480px) {
        .super-unique-carousel-slide {
            min-width: 100%; /* One slide visible */
        }
    }

    /* // multiple images sider */




    

/* testinonials css start */
.gtco-testimonials {
position: relative;
margin-top: 30px;
}

.gtco-testimonials h2 {
font-size: 30px;
text-align: center;
color: #333333;
margin-bottom: 50px;
}

.owl-stage-outer {
padding: 30px 0;
}

.owl-nav {
display: none;
}

.owl-dots {
text-align: center;
}

.owl-dots span {
position: relative;
height: 10px;
width: 10px;
border-radius: 50%;
display: block;
background: #fff;
/* border: 2px solid #01b0f8; */
margin: 0 5px;
}

.owl-dots .active span {
/* background: #01b0f8; */
height: 12px;
width: 12px;
margin-bottom: -1px;
}

.card {
background: #fff;
box-shadow: rgba(240, 46, 170, 0.4) -5px 5px, rgba(240, 46, 170, 0.3) -10px 10px, rgba(240, 46, 170, 0.2) -15px 15px, rgba(240, 46, 170, 0.1) -20px 20px, rgba(240, 46, 170, 0.05) -25px 25px;
/* box-shadow: 0 8px 30px -7px #c9dff0; */
margin: 0 20px;
padding: 0 10px;
border-radius: 20px;
border: 0;
}

.card h5 {
color: #01b0f8;
font-size: 21px;
line-height: 1.3;
}

.card h5 span {
font-size: 18px;
color: #666666;
}

.card p {
font-size: 18px;
color: #555;
padding-bottom: 15px;
}

.fa {
font-size: 26px;
transition: .4s;
}

.checked {
color: #ff9f43;
}

.fa:hover {
transform: scale(1.3);
transition: .6s;
}

.card-body ul {
padding: 0;
list-style: none;
display: flex;
justify-content: center;
margin: 15px 0;
}

.card-body ul li {
margin: 0 5px;
}

/* testinonials css eND */









/* client list animation start */
.client-list-color {
  background-color: #FFE0EF;
  height: 252px;
  width: 100%;
  overflow: hidden;
}

.our-clients {
  margin-top: 30px;
  color: #3B2871;
  font-size: 30px;
  font-family: Inter, sans-serif;
  text-align: center;
  font-weight: bolder;
}



.client-container {
  display: flex;
  justify-content: center;
  position: relative;
  animation: scroll 75s linear infinite; /* Adjust this value for speed */
  width: max-content;
  margin-top: 16px;
}


.box {
  width: 200px;
  height: 100px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 10px;
  margin: 0 20px;
  margin-top: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-list {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .box {
    width: 160px;
    margin: 0 15px;
  }

  .logo-list {
    width: 90px;
  }
}

@media (max-width: 480px) {
  .box {
    width: 120px;
    margin: 0 10px;
  }

  .logo-list {
    width: 92px;
  }
}
/* client list end */








                                                /* <!-- start of footer --> */
                        
                                /* ul {
                                  margin: 0px;
                                  padding: 0px;
                              } */
                              .footer-section {
                                background: black;
                                position: relative;
                              }
                              .footer-cta {
                                border-bottom: 1px solid  #373636;
                              }
                              .single-cta i {
                                color: #ff5e14;
                                font-size: 30px;
                                float: left;
                                margin-top: 8px;
                              }
                              .cta-text {
                                padding-left: 15px;
                                display: inline-block;
                              }
                              .cta-text h4 {
                                color: #fff;
                                font-size: 20px;
                                font-weight: 600;
                                margin-bottom: 2px;
                              }
                              .cta-text span {
                                color: white;
                                font-size: 15px;
                              }
                              .footer-content {
                                position: relative;
                                z-index: 2;
                              }
                              .footer-pattern img {
                                position: absolute;
                                top: 0;
                                left: 0;
                                height: 330px;
                                background-size: cover;
                                background-position: 100% 100%;
                              }
                              .footer-logo {
                                margin-bottom: 30px;
                              }
                              .footer-logo img {
                                  max-width: 200px;
                              }
                              .footer-text p {
                                margin-bottom: 14px;
                                font-size: 15px;
                                    color:white;
                                line-height: 28px;
                                font-weight: 600;
                              }
                              .footer-social-icon span {
                                color: #fff;
                                display: block;
                                font-size: 20px;
                                font-weight: 700;
                                font-family: 'Poppins', sans-serif;
                                margin-bottom: 20px;
                              }
                              .footer-social-icon a {
                                color: #fff;
                                font-size: 16px;
                                margin-right: 15px;
                              }
                              .footer-social-icon i {
                                height: 40px;
                                width: 40px;
                                text-align: center;
                                line-height: 38px;
                                border-radius: 50%;
                              }
                              .facebook-bg{
                                background: #3B5998;
                              }
                              .twitter-bg{
                                background: #55ACEE;
                              }
                              .google-bg{
                                background: #DD4B39;
                              }
                              .footer-widget-heading h3 {
                                color: #fff;
                                font-size: 20px;
                                font-weight: 600;
                                margin-bottom: 40px;
                                position: relative;
                              }
                              .footer-widget-heading h3::before {
                                content: "";
                                position: absolute;
                                left: 0;
                                bottom: -15px;
                                height: 2px;
                                width: 50px;
                                background: #ff5e14;
                              }
                              .footer-widget ul li {
                                display: inline-block;
                                float: left;
                                width: 50%;
                                margin-bottom: 12px;
                              }
                              .footer-widget ul li a:hover{
                                color: #ff5e14;
                              }
                              .footer-widget ul li a {
                                color:white;
                                text-transform: capitalize;
                              }
                              .subscribe-form {
                                position: relative;
                                overflow: hidden;
                              }
                              .subscribe-form input {
                                width: 100%;
                                padding: 14px 28px;
                                background: #2E2E2E;
                                border: 1px solid #2E2E2E;
                                color: #fff;
                              }
                              .subscribe-form button {
                                  position: absolute;
                                  right: 0;
                                  background: #ff5e14;
                                  padding: 13px 20px;
                                  border: 1px solid #ff5e14;
                                  top: 0;
                              }
                              .subscribe-form button i {
                                color: #fff;
                                font-size: 22px;
                                transform: rotate(-6deg);
                              }
                              .copyright-area{
                                background: #202020;
                                padding: 25px 0;
                              }
                              .copyright-text p {
                                margin: 0;
                                font-size: 14px;
                                color: #878787;
                              }
                              .copyright-text p a{
                                color: #ff5e14;
                              }
                              .footer-menu li {
                                display: inline-block;
                                margin-left: 20px;
                              }
                              .footer-menu li:hover a{
                                color: #ff5e14;
                              }
                              .footer-menu li a {
                                font-size: 14px;
                                color: #878787;
                              }

                              iframe{
                                  height: 200px;
                                  width: 350px;
                                 
                              }
                              @media (max-width: 768px) {
                                iframe{
                                    width: calc(80% - 20px);
                                }
                            }
                             

                                 
/* whats app icon */
        .whatsapp-icon {
          position: fixed;
          bottom: 20px; /* Adjust this value to move the icon up or down */
          right: 20px;  /* Adjust this value to move the icon left or right */
          width: 60px;
          height: 60px;
          z-index: 1000;
          cursor: pointer;
          border-radius: 50%;
          box-shadow: 0 4px 8px rgba(0,0,0,0.2);
          transition: transform 0.3s;
      }

      .whatsapp-icon:hover {
          transform: scale(1.1);
      }

      .whatsapp-icon img {
          width: 100%;
          height: 100%;
          border-radius: 50%;
      }
      /* whats app icon end */