@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
  margin: 0;
  padding: 0;
}
/* scroll style  */
::-webkit-scrollbar {
  width: 12px;
}
ul{
  padding: 0;
}
/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: var(--primary);
  box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}
::-webkit-scrollbar-thumb:window-inactive {
background: var(--primary); 
}
ul li{
  list-style: none;
}
html, body {
  overflow-x: hidden;
  color: #444444;
  margin: 0;
}
body{
  font-family: "Roboto", sans-serif;
  font-family: 'Rubik', sans-serif;
}
:root{
  --primary:#FFC107;
  --danger:#c21029;
  --light:#F0F0F0;
  --secondary:#1976D2;
  --dark:#202020;
  --text-black:#121212;
  --main-color-one:#ffae30;
  --text-danger:#c21029;
}
a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/* topbar */
.top-header{
  background: #000;
  padding: 20px 0px;
}
.top-header h3{
  font-size: 21px;
  color: var(--primary);
  margin: 0;
}
.top-header small {
  color: #fff;
  vertical-align: text-bottom;
  font-size: 14px;
}
.top-header small b{
  font-weight: 500;
}
.top-header small i{
  vertical-align: middle;
}
.map-icon i{
  color: var(--secondary);
}
.gst_icon i{
  color: #36d336;
}
.verified_icon i{
  color: var(--primary);
}
.call_btn {
    background: var(--primary);
    padding: 6px 22px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    border: 2px solid var(--primary);
    transition: all 0.5s;
    display: inline-block;
    border-radius: 55px;
}
.call_btn small {
    margin-top: -2px;
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #000;
}

.call_btn:hover {
    background: transparent;
    color: var(--primary);
    border-color:2px solid var(--primary);
}
.call_btn:hover small {
    color: var(--primary);
}
/* Navbar Section */
 .navbar {
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 999;
      transition: all 0.3s ease;
      padding: 20px 0;
      background-color: transparent;
    }

    .navbar.scrolled {
      background-color: #000 !important; /* semi-white background */
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
    }

    .navbar-brand img {
      transition: all 0.3s ease;
      height: 80px;
    }

    .navbar.scrolled .navbar-brand img {
      height: 80px;
    }
.navbar-brand img {
  max-height: 150px;
}
.navbar-expand-lg .navbar-nav .nav-link {
  color: #fff;
  margin-right: 15px;
}
.navbar-expand-lg .navbar-nav .nav-link{
     text-decoration: none;
  position: relative;
  overflow: hidden;
  }
  
.navbar-expand-lg .navbar-nav .nav-link::before, .nav-link::after{
    content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.5s;
  }
.navbar-expand-lg .navbar-nav .nav-link::before{
  top: 0;
  left: 0;
}
.navbar-expand-lg .navbar-nav .nav-link::after{
   bottom: 0;
  right: 0;
}
.navbar-expand-lg .navbar-nav .nav-link:hover::before {
    width: 100%;
  transition: width 0.25s ease-in-out;
  }
.navbar-expand-lg .navbar-nav .nav-link:hover::after {
    width: 100%;
  transition: width 0.25s ease-in-out 0.25s;
  }
.navbar-expand-lg .navbar-nav .nav-link.active::before{
  width: 100%;
  transition: width 0.25s ease-in-out;
}
.navbar-expand-lg .navbar-nav .nav-link.active::after{
 width: 100%;
  transition: width 0.25s ease-in-out 0.25s;
}
.navbar-toggler {
  background-color: #fff;
  color: #000;
  border-color: transparent;
}
.navbar-toggler-icon i{
  color: var(--primary);
  font-size: 30px;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}
.get_start{
  font-family: 'Inter', sans-serif;
  padding: 6px 15px;
  background: var(--secondary);
  color: #000;
  font-weight: 600;
  border-radius: 4px;
}
.get_start:hover{
  color: #000;
}
.qoute:hover{
  animation: shake 0.95s cubic-bezier(.36, .07, .19, .97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}
@keyframes shake {
  10%,
  90% {
      transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
      transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
      transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
      transform: translate3d(4px, 0, 0);
  }
}
/* Banner Section */
.banner_wrapper{
  background:url(../image/banner.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 50px 0px;
  overflow: hidden;
  position: relative;
  z-index: 99;
}
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -99;
}
.head_text{
  font-family: 'Rubik', sans-serif;
  font-size: 40px;
  color: #fff;
  font-weight: 600;
}
.head_text span{
  color: var(--primary);
}
.banner_content p{
  font-family: 'Rubik', sans-serif;
  color: #fff;
  text-transform: capitalize;
  font-size: 14px;
}
.banner_trust{
  display: inline-block;
  width: 80px;
  margin-bottom: 8px;
}
.banner_trust img{
  width: 100%;
}
.verified_text{
  color: #fff;
  font-style: italic;
  position: relative;
  font-size: 15px;
  text-decoration: underline;
  top: -10px;
}
.button {
  padding: 15px 30px;
  text-align: center;
  color: #000;
  text-transform: capitalize;
  font-weight: 600;
  margin-top: 15px;
  z-index: 999;
  margin-bottom: 30px;
  cursor: pointer;
  display: inline-block;
}
.button-5 {
  border-radius: 5px;
  background-color: var(--primary);
  background-image: var(--primary);
  background-image: -moz-linear-gradient(top, #fff 0%, var(--primary) 100%); 
  background-image: -webkit-linear-gradient(top, #fff 0%, var(--primary) 100%); 
  background-image: linear-gradient(to bottom, #fff 0%, var(--primary) 100%); 
  background-size: 300px;
  background-repeat: no-repeat;
  background-position: 0%;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
}
.button-5:hover {
  background-position: -200%;
  color: #000;
  transition: background 300ms ease-in-out;
}
.pulse {
animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
0% {
  box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
}
100% {
  box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
}
}
.register_btn {
  background: var(--secondary);
  padding: 12px 25px;
  color: #fff;
  border-radius: 4px;
  font-size: 15px;
  display: inline-block;
  font-weight: 600;
}
.register_btn:hover{
  background: var(--primary);
  color:#fff;
  
}
.owl-dots.disabled{
  display: none;
}
.banner .owl-carousel .owl-nav.disabled {
  display: inline-block;
  position: absolute;
  bottom: 4%;
  left: 4%;
}
.banner .owl-carousel .owl-nav button.owl-prev {
  background: var(--secondary);
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 28px;
  margin-right: 12px;
}
.banner .owl-carousel .owl-nav button.owl-next {
  background: var(--secondary);
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 28px;
}
/* About Section */
/* .about_wrapper{
  background: url(../image/2.jpg) no-repeat;
  background-size: cover;
  padding: 40px 0px;
} */

.about_content{
  text-transform: capitalize;
  overflow: hidden;
}
.about_content h2{
  font-family: 'Rubik', sans-serif;
  color: var(--primary);
  font-weight: 600;
  font-size: 27px;
  text-transform: capitalize;
  margin-bottom: 15px;
  position: relative;
}
.about_content h2 span{
  color: var(--secondary);
}

.main_heading{
  font-family: 'Rubik', sans-serif;
  color: var(--primary);
  font-weight: 600;
  font-size: 27px;
  text-transform: capitalize;
  margin-bottom: 15px;
  padding-bottom: 10px;
  position: relative;
}
.main_heading::after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    bottom: -24%;
    left: 46%;
    position: absolute;
  }
  .main_heading::before {
    content: '';
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
    position: absolute;
    bottom: -10px;
    right: 43%;
  }
.main_heading span{
  color: var(--secondary);
}
.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
  }

  .info-box .icon-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    justify-content: center;
  }
  .info-box .icon-circle:hover {
    background-color: var(--primary);
  }
  .info-box .icon-circle i {
    font-size: 28px;
    color: #fff;
  }

  .info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }

  .info-text .label {
    font-size: 14px;
    color: #888;
  }

  .info-text .value {
    font-size: 16px;
    font-weight: 600;
    color: #000;
  }

.about_content h5{
  border-left: 4px solid var(--secondary);
  padding-left: 5px;
  font-size: 15px;
  color: #000;
  padding: 8px;
  font-weight: 600;
  line-height: 28px;
  border-radius: 6px;
}
.about_content p{
  font-size: 15px;
  color: #444444;
  text-align: justify;
}
.service-card {
      transition: all 0.3s ease;
      border: none;
      border-radius: 12px;
      box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
      height: 100%;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .service-card .card-body {
      padding: 25px;
    }

    .service-card h5 {
      font-weight: 600;
      color: var(--primary);
    }

    .service-card p {
      margin-top: 10px;
      color: #333;
    }
.rm_btn {
  padding: 9px 15px;
  text-align: center;
  text-transform: capitalize;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 4px;
  display: inline-block;
  border: 0px;
  font-weight: 500;
  box-shadow: 0px 0px 14px -7px #092edb;
  background-image: linear-gradient(45deg, #092edb 0%, #11266f 51%, #092edb 100%);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.rm_btn:hover {
  background-position: right center;
  /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}
.rm_btn:active {
  transform: scale(0.95);
}
.animate_img{
  animation: animate-ai 1s linear infinite alternate;
}
@keyframes animate-ai{

  0%{

    transform:translateY(0px);

  }

  100%{

    transform:translateY(10px);

  }

}
.about_wrapper{
  position: relative;
  overflow: hidden;
  z-index: 99;
}
.about_content h6{
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  color: #444444;
}
.about_img{
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.heading{
  position: relative;
  font-family: 'Rubik', sans-serif;
  color: #000;
  font-size: 26px;
  font-weight: 500;
  text-transform: capitalize;padding-bottom: 10px;
}
 .main-wrapper {
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      padding: 60px 15px;
    }

    .pulse-circle {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 500px;
      height: 500px;
      border: 2px solid var(--primary);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      animation: pulse 2s infinite;
      z-index: 1;
    }

    @keyframes pulse {
      0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.7;
      }
      50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.4;
      }
      100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.7;
      }
    }

    .center-image {
      height: 380px;
      position: relative;
      width: 380px;
      z-index: 2;
      background-color: #4c7ac566;
      border-radius: 50%;
      object-fit: contain;
      /* max-width: 280px; */
      border: 5px solid aliceblue;
    }

    .avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      position: absolute;
      z-index: 3;
      border: 3px solid #fff;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .avatar-1 { top: 10%; left: 10%; }
    .avatar-2 { top: 30%; right: 5%; }
    .avatar-3 { bottom: 10%; left: 20%; }

    .nps-badge {
      position: absolute;
      bottom: 0;
      left: 0;
      background: #fff;
      padding: 10px 15px;
      border-radius: 20px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 3;
    }

    .nps-badge img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
    }

    .nps-badge span {
      font-weight: bold;
    }
.super-button {
  position: relative;
  display: inline-block;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  background: linear-gradient(145deg, #0f0f0f, var(--primary));
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: #fff;
  font-size: 16px;
  margin: 0 auto;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  z-index: 1;
}

.super-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, #00ffff, #ff00ff, #00ffff);
  animation: rotate 4s linear infinite;
  z-index: -2;
}

.super-button::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #0a0a0a;
  border-radius: inherit;
  z-index: -1;
}

.super-button:hover {
  transform: scale(1.05);
  color: #fff;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
}

.super-button:hover .arrow {
  transform: translateX(6px);
}

.arrow {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease-in-out;
  color: #00ffff;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.heading::before{
  content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ccc;
    bottom: 1px;
    left: calc(50% - 60px);
}
.heading::after{
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--secondary);
  bottom: 0;
  border-radius: 4px;
  left: calc(50% - 20px);
}
/* service_wrapper */
.service_wrapper{
  background: url(../image/2.jpg) no-repeat;
  background-size: cover;
  padding: 50px 0;
}
.product_image_box{
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  background-color: #fff;
  border-radius: 6px;
  height: 43vh;
  display: block;
  transition: all 0.3s ease-in-out;
  padding: 15px 10px;
  position: relative;
}
.offer-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: red;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 10;
  text-transform: uppercase;
  overflow: hidden;
  font-family: 'Rubik', sans-serif;
}
/* ribbion */
/* common */
.ribbon {
    width: 89px;
    height: 100px;
    overflow: hidden;
    position: absolute;
  }
  .ribbon::before,
  .ribbon::after {
    position: absolute;
    z-index: -1;
    content: '';
    display: block;
    border: 3px solid #c50808;
  }
  .ribbon span {
    font-family: 'Montserrat', sans-serif;
    position: absolute;
    display: block;
    width: 165px;
    padding: 2px 0;
    font-size: 12px;
    font-weight: 600;
    background-color: #d00;
    color: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
  }
.ribbon-top-left::before,
.ribbon-top-left::after {
    border-top-color: transparent;
    border-left-color: transparent;
}
/* top right*/
  .ribbon-top-right {
    top: -3px;
    right: -3px;
}
.ribbon-top-right::before,
.ribbon-top-right::after {
    border-top-color: transparent;
    border-right-color: transparent;
}
.ribbon-top-right::before {
    top: 0;
    left: 4px;
}
.ribbon-top-right::after {
    bottom: 14px;
    right: 0;
}
.ribbon-top-right span {
    left: -22px;
    top: 30px;
    transform: rotate(45deg);
}
  /* ribbion end */


.product_image_box img {
  transform: scale(1);
  transition: all 0.3s ease-in-out;

}
.product_image_box:hover img {
  transform: scale(1.2);
}
.product_title{
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
  padding: 15px 0px;
  position: relative;
}
.product_title::after{
  content: '';
  position: absolute;
  bottom: 5px;
  left: 42%;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
}
.qutote_btn {
  padding: 15px 25px;
  text-align: center;
  color: #000;
  background-color: var(--primary);
  text-transform: capitalize;
  font-weight: 600;
  margin-top: 15px;
  z-index: 999;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
.qutote_btn:hover {
  background-color: var(--secondary);
  color: #fff;
  
}
.down_arrow{
  color: var(--secondary);
  display: block;
  font-size: 30px;
}
.quote_text{
  font-size: 25px;
  color: #000;
  font-weight: 400;
}
.quote_text span{
  font-family: "Roboto", sans-serif;
  color: var(--secondary);
  font-weight: 700;
  font-size: 28px;
}
.modal-body p {
  margin-bottom: 10px;
}
.modal-body p span{
  color: var(--secondary);
}

/* Our Clients Section */
.client-logo {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 150px; /* Fixed height for consistency */
      overflow: hidden;
      background-color: #f8f9fa; /* Light background for contrast */
      border-radius: 8px; /* Rounded corners for a modern look */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .client-logo img {
      max-width: 80%; /* Ensure images don't overflow */
      max-height: 80%; /* Maintain aspect ratio */
      object-fit: contain; /* Prevent distortion */
    }
    .client-logo:hover {
      transform: scale(1.05); /* Slight zoom on hover */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow on hover */
    }
    @media (max-width: 767.98px) {
      .client-logo {
        height: 100px; /* Smaller height for mobile */
      }
    }
/* enquiry-section */
.enquiry_section{
  position: relative;
}
.enquiry_section:after{
  position: absolute;
  content: '';
  background: url(../image/cb.png) no-repeat;
  width: 300px;
  height:204px;
  bottom: 0px;
  right: 0px;
}
.enquiry_section::before{
  position: absolute;
  content: '';
  background: url(../image/sm_gi.jpg) no-repeat;
  width: 300px;
  height:200px;
  top: -24px;
  left: -50px;
}
.enquiry_form{
  position: relative;
  padding: 50px 25px;
  background: #88c3ff;
  border-radius: 6px;
}
.enq_btn{
  background-color: var(--secondary);
  padding: 10px 15px;
  color: #fff;
  outline: none;
  border: 0;
  font-size: 16px;
  border-radius: 6px;
}
/* Footer Page */
footer {
  background-color: #000;
    color: #fff;
}
ul {
    padding: 0px;
}
ol, ul {
    margin-bottom: 0px;
}

.social-icon {
    padding: 0;
    margin-bottom: 0px;
        float: right;
}
.copyright{
  font-size: 15px;
  color: #000;
}
.copyright a{
  color: #000;
  text-decoration: underline;
}
.product_list li {
    list-style: none;
    display: inline-block;
    margin-bottom: 10px;
}
.product_list li i{
  font-size: 25px;
  color: #fff;
  vertical-align: middle;

}
.product_list li a{
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
}
.product_list li a:hover {
    color: var(--primary);
}
.social-icon li i {
    font-size: 14px;
    color: #262725;
    border: solid 2px #ffffff;
    height: 31px;
    width: 31px;
    text-align: center;
    vertical-align: middle;
    border-radius: 100px;
    line-height: 27px;
    margin-right: 15px;
    transition: 1s;
    background: #fff;
}
.social-icon li i:hover {
    border: solid 2px #262725;
    color: #ffffff;
    background: #262725;
}

.phone-no i {
    position: relative;
    margin-right: 4px;
    font-size: 33px;
    top: 5px;
}
.phone-no {
    margin-top: -22px;
    text-align: right;
}
.footer-day-time {
    padding-bottom: 30px;
    border-bottom: 2px solid #7a6f6f;
    padding-top: 14px;
    margin-bottom: 55px;
}
.footer-day-time ul li {
    display: inline;
    margin-right: 20px;
}
.footer-day-time ul li:last-child {
    margin-right: 0px;
}
.phone-no a {
    color: #fff;
    font-family: PlayfairDisplay-Black;
    font-size: 30px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}
.phone-no a:hover {
    color: var(--primary);
}
.footer-top {
    background: #2f2f2f;
    padding:50px 0 50px;
}
.footer-top h4 {
    font-size: 19px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.footer-top p {
    font-size: 15px;
    line-height: 2;
    font-weight: 400;
}

footer p {
  margin-bottom:0;
}
.footer-logo {
    display: block;
    margin-bottom: 32px;
}
.address1 li {
    list-style: none;
    position: relative;
    padding: 0px 0 14px 34px;
    line-height: 26px;
    font-size: 15px;
    transition: all 0.3s ease-in-out;
    font-weight: 400;
}
ul.address1 span {
    position: absolute;
    width: 40px;
    max-width: 40px;
    left: 0;
}
.address1 li a {
    color: #fff;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}
.address1 li a:hover {
    color: var(--primary);
}
ul.address1 i {
    width: 20px;
    position: absolute;
    left: 0px;
    text-align: center;
    font-size: 28px;
    top: 0;
}

ul.address1 i.fa-envelope {
    font-size: 18px;
    top: 4px;
}
footer ul.social-icon {
    float: left;
}
footer .social-icon li i:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.footer-bottom {
    background: var(--primary);
    padding: 10px 0px;
}
.footer-bottom ul li {
    display: inline;
    margin-right: 20px;
    font-size: 18px;
}
.footer-bottom ul li a{
    color:#000;
}

.footer-bottom ul {
    float: right;
}

.footer-bottom ul li:last-child {
    margin-right: 0;
}
.copyright {
    font-size: 18px;
}












/****** About Page *******/

.all_page_banner img{
  width: 100%;
  height: 420px;
  background-attachment: fixed;
  object-fit: cover;
  z-index: 99;
}
.all_page_banner{
  position: relative;
}
.banner_text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  text-align: center;
  color: #fff;
}
.banner_text h1{
  font-size: 35px;
  color: var(--primary);
}
.banner_text h1 span{
  color: var(--secondary);
}
/* Product Detail */
.product_detail_section{
  padding: 50px 0px;
  
  background-size: cover;
}
.productdetail_image_box{
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  background-color: #fff;
  padding: 30px;
}
.product_detail_name{
  color: #000;
  font-size: 22px;
  text-align: center;
}
 .product-card {
      border: 1px solid #ddd;
      padding: 15px;}

.whatsapp_price_btn{
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  padding: 10px 15px;
  display: inline-block;
  background: #25D366;
  color: #000;
  border-radius: 6px;
  margin-top: 15px;
  transition: all 0.3s ease-in-out;
}
.whatsapp_price_btn:hover{
  color: #000;
}
/* Related Products */
.related_products_wrapper{
  background-color: var(--light);
  padding: 20px 0px;
}
.relatedproduct_image_box{
  background-color: #fff;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.relatedproduct_title{
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  color: #000;
  padding: 10px 15px;
  text-align: center;
  background-color: var(--primary);
}
.section_icon {
    font-size: 32px;
    color: var(--primary);
}
.lead {
    font-size: 20px;
    font-weight: 400;
}
.expertise_icon{
  color: var(--primary);
  display: block;
  font-size: 18px;
}
.expertise_text{
  font-size: 14px;
}
.section-title {
      font-size: 28px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 20px;
    }
.card-custom {
      transition: all 0.3s ease;
      border-radius: 12px;
     box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
      border: none;
      background: #fff;
    }
.card-custom:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
.card-custom .icon {
      font-size: 36px;
      color: var(--primary);
      margin-bottom: 10px;
    }
ul.custom-list {
      list-style: none;
      padding-left: 0;
    }

    ul.custom-list li {
      padding: 8px 0;
      display: flex;
      align-items: center;
    }

    ul.custom-list li i {
      color: var(--primary);
      margin-right: 10px;
    }

    .section-padding {
      padding: 60px 15px;
    }

    @media (max-width: 767px) {
      .section-title {
        font-size: 22px;
      }
    }
/* .banner_text h2 span{
  color: #000;
} */
.banner_text h1{
  font-size: 28px;
  font-weight: 700;
}
.quote_content i{
  font-size: 25px;
  color: var(--primary);
}
/* Service Page */
.service_content h5{
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
}
.service_content i{
  font-size: 15px;
  color: #000;
  display: block;
  margin-bottom: 15px;
}
.service_content ul li{
  margin-bottom: 20px;
  color: #000;
  font-size: 16px;
}
/* Testimonials */
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: #111;
  text-align: left;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 45px;
  text-align: left;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: var(--primary);
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #4c7ac566;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}
/* Contact Page */
.contact-box{
  background: aliceblue;
    padding: 23px 25px;
    border-radius: 4px;
}
.contact .info p a{
  color: var(--text-black);
  font-size: 1rem;
  display: inline-block;
  margin: 0.75rem 0;
}
.contact .form-group{
  margin-bottom: 1.5rem;
}
.contact .form-control{
  border: none;
  padding: 0.375rem 1.1875rem;
  height: 3.75rem;
  font-size: 1rem;
  box-shadow: 0 0.1875rem 1.25rem 0 rgb(0 0 0 / 12%);
}
.contact_icons{
  font-size: 20px;
  margin-right: 5px;
  vertical-align: middle;
}
p{
  margin: 0;
}
.contact_text{
  color: #444444;
}
.contact .textarea{
  width: 100%;
  border-radius: 0.25rem;
  padding: 0.75rem 1.1875rem;
  border: none;
  font-size: 1rem;
  margin-top: 0.3125rem;
  box-shadow: 0 0.1875rem 1.25rem 0 rgb(0 0 0 / 12%);
}
.contact .textarea:focus{
  border: none;
  outline: none;
}
/* Terms And Conditions */
.choose_content h6{
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 15px;
}
.choose_content p{
  font-size: 16px;
  line-height: 28px;
}

.contact-section {
      padding: 60px 15px;
    }

    .contact-card {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
      /* height: 100%; */
    }

    .contact-info li {
      list-style: none;
      margin-bottom: 25px;
      display: flex;
      align-items: flex-start;
    }

    .contact-info li i {
      font-size: 22px;
      color: var(--primary);
      margin-right: 12px;
      min-width: 24px;
    }

    .social-icons a {
      font-size: 22px;
      color: var(--primary);
      margin-right: 15px;
      transition: 0.3s ease;
    }

    .social-icons a:hover {
      color: var(--secondary);
      transform: scale(1.2);
    }

    .form-control:focus {
      box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
    }

    .btn-primary {
      border-radius: 50px;
      padding: 10px 25px;
    }
.hover-effect {
    transition: all 0.3s ease;
  }

  .hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }

  .social-icons a {
    font-size: 22px;
    color: var(--primary);
    margin-right: 15px;
    transition: 0.3s ease;
  }

  .social-icons a:hover {
    color: var(--secondary);
    transform: scale(1.2);
  }
  .text-muted {
    color: #6c757d !important;
    font-size: 15px;
}
/* Contact Page */
.contact_us_wrapper{
  background-color: var(--light)
}
.contact_box{
  background-color:#fff;
  padding:  20px 15px;
  border-radius: 4px;
  height: 22vh;
}
.contact_box i{
  font-size: 24px;
  color: var(--secondary);
  margin-bottom: 10px;
}
.contact_box h4{
  font-size: 20px;
  color: var(--primary);
}
.contact_box a{
  color: #000;
}
.contact_box h4 span{
  color: var(--secondary);
}
.contact_box p{
  font-size: 15px;
}
/********** Responsive Breakpoins *********/



/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  /* Index Page */
  .head_text{
    font-size: 28px;
  }
  .banner_wrapper{
    padding: 40px 0px;
  }
  .navbar-collapse{
  padding: 13px 20px;
  background-color: #000;
}
  .banner_text{
    top: 66%;
  }

  .banner_content {
    margin-top: 43px;
}
  .banner_content h1{
    font-size: 22px;
  }
  .banner_content h1 span{
    font-size: 28px;
  }
  .contact_box h4 {
    font-size: 18px;
  }
  .contact_box p{
  font-size: 13px;
}
  .main_heading::after {
        left: 30%;
    }
  .about_wrapper:after{
    display: none;
  }
  .coinfall_gif{
    right:0;
  }
  .rm_btn {
    padding: 7px 19px;
  }
  .hero_container{
    margin-bottom: 30px;
  }
  .sub_heading{
    font-size: 13px;
  }
  .content h5{
    font-size: 18px;
  }
  .content p{
    font-size: 14px;
  }
  /* About Page */
  .all_page_banner img{
    height: 135px;
  }
  .banner_text h1{
    font-size: 18px;
  }
  .banner_text h2{
    font-size: 18px;
  }
  .heading{
    font-size: 25px;
  }
  .trendzoomer_texts{
    font-size: 14px;
    line-height: 25px;
  }
  /* Terms and Condition */
  .choose_content h2{
    font-size: 20px;
  }
  .choose_content h2 span{
    font-size: 25px;
  }
  .choose_content p{
    font-size: 14px;
    line-height: 25px;
  }
  .choose_content h6{
    font-size: 14px;
    margin-bottom: 13px;
  }
  .phone-no {
    margin-top: 7px;
    text-align: left;
  }
  .phone-no a{
    font-size: 18px;
  }
  .phone-no i {
    margin-right: 4px;
    font-size: 18px;
  }
  .quote_text{
    font-size: 21px;
  }
  .product_image_box{
    height: auto;
  }
  .copyright{
    font-size: 16px;
  }
  .quote_text span{
    font-size: 25px;
  }
  .footer-bottom ul {
    float: left;
  }
  .footer-bottom ul li {
    display: inline;
    margin-right: 12px;
    font-size: 18px;
}
.footer-bottom ul li a {
    color: #000;
    font-size: 14px;
}
.enquiry_section:after{
  display: none;
}
.enquiry_section::before{
  display: none;
}
  /* Footer */
  .footer-content .contact-widget {
    margin-left: 0px;
  }
  .footer-bottom .footer-nav{
    text-align: start;
  }
  .footer-bottom {
    padding: 15px 0px 0px 0px;
  } 
}

/* // Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) { 
  .mail_text{
    margin-right: 8px;
  }
  .head_text{
    font-size: 35px;
  }
  .phone-no a{
    font-size: 25px;
  }
  .navbar-collapse{
  padding: 13px 20px;
  background-color: #000;
}
  .main_heading::before{
    bottom: -10px;
    right: 43%;
  }
  .main_heading::after{
    left: 41%;
  }
  .product_image_box{
    height: 35vh ;
  }
  .enquiry_section:after{
  display: none;
}
.enquiry_section::before{
  display: none;
}
  .super-button{
    font-size: 12px;
  }
  .hero_container{
    margin-bottom: 30px;
  }
  .banner_wrapper{
    padding: 40px 0px;
  }
  .all_page_banner img{
    height: 200px;
  }
  .banner_text h1 {
    font-size: 18px;
  }
  .banner_text h1 {
    font-size: 18px;
  }
  .choose_content h2{
    font-size: 30px;
  }
  .choose_content h2 span {
    font-size: 35px;
  }
  
.phone-no {
    margin-top: 0px;
    text-align: left;
}
.banner_content {
    margin-top: 35px;
}
.footer-bottom ul {
    float: left;
  }
  .phone-no a {
        font-size: 19px;
    }
    .phone-no i {
      font-size: 28px;
    }
  /* Footer */
  .footer-content .contact-widget {
      margin-left: 0px;
  }
  .footer-bottom .footer-nav{
      text-align: start;
   }
  .footer-bottom {
      padding: 15px 0px 0px 0px;
   }
  .footer-content {
      padding: 31px 0px 30px 0px;
   }
}

/* // Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .head_text{
    font-size: 24px;
  }
  .content h5{
    font-size: 15px;
  }
  .content p{
    font-size: 13px;
  }
  .product_image_box{
    height: auto;
  }
  .navbar-collapse{
  padding: 13px 20px;
  background-color: #000;
}
  .choose_content h2{
    font-size: 23px;
  }
  .choose_content h2 span{
    font-size: 26px;
  }
  .footer-content .contact-widget {
    margin-left: 0;
  }
}

/* // Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) { 
  .phone-no a{
    font-size: 25px;
  }
  .main_heading::before{
    bottom: -10px;
    right: 43%;
  }
  .main_heading::after{
    left: 41%;
  }
  
}

/* // X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
 
}
