body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font);
}

html {
  scroll-behavior: smooth;
}

:root {
  /* **************font family initialization******************** */
  --font: "Inter", serif;
  font-family: "Inter", serif;

  /* **************font size initialization******************** */

  --radius: 1px;
  --para-size: 14px;
  --topbar-size: 16px;
  --heading-size: 18px;
  --heading2-size: 22px;
  --heading3-size: 25px;
  --title-size: 30px;
  --large-text: 40px;

  /* **********website color initilaization******************* */

  --topbar-color: #1e1e20;
  --primary-color: #f70100;
  --secondary-color: #393a39;
  --white: #fff;
  --heading-color: #1b1b1b;
  --para-color: #5c5c5c;
  --hover-text: #fff;
  --btn-color: #f70100;
  --btn-color2: #393a39;
  --hover-color1: #393a39;
  --hover-color2: #f70100;
  --bg1-color: #ffffff;
  --bg2-color: #f1f1f1;
  --border-light: #b0afb3;
  --light-color: #e6e6e6;

  --dark-overlay-gradient: linear-gradient(
    rgba(30, 30, 30, 0.85),
    rgba(30, 30, 30, 0.95)
  );

  --gradient1-color: linear-gradient(
    rgba(255 16 16 / 48%),
    rgba(30, 30, 30, 0.95)
  );

  --overlay-color: rgba(236, 230, 255, 0.7);
  --footer-color: #181a26;

}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1380px;
  }
  .hide{
    display: none !important;
  }
}

@media (min-width: 1440px) {
  .container-fluid {
    max-width: 1439px;
  }
}
ul {
    padding-left: 1.1rem;
}
.bgsec{
  background-color: var(--bg2-color) !important;
}
.main-btn {
  padding: 11px 9px;
  color: var(--white);
  border: 1px solid var(--primary-color) !important;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font2);
  white-space: nowrap;
  background: var(--primary-color);
  outline: none;
  transition: 0.2s ease-in-out;
  justify-content: center;
  text-decoration: none;
  border-radius: var(--radius);
  line-height: 1;
}

.main-btn:hover {
  background: var(--secondary-color);

  border: 1px solid var(--secondary-color) !important;
}

.main-btn2 {
  padding: 11px 9px;
  color: var(--white);
  border: 1px solid var(--btn-color2);
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font2);
  white-space: nowrap;
  background: var(--btn-color2);
  outline: none;
  transition: 0.2s ease-in-out;
  justify-content: center;
  border-radius: var(--radius);
  line-height: 1;
  text-decoration: none;
}

.main-btn2:hover {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.productBrochureandvideo a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px dashed #cdcdcd;
    padding: 5px 8px;
    font-weight: 500;
    border-radius: 5px;
    gap: 2px;
    transition: 0.3s;
    text-decoration: none;
    font-size: 14px;
    color: var(--text-color);

}

.productBrochureandvideo a:hover{
  border: 1px dashed var(--hover-color2);
    color: var(--hover-color2);
}
    .shine-btn {
      position: relative;
      overflow: hidden;
    }

    .shine-btn::before {
      content: "";
      position: absolute;
      top: 0;
      left: -75%;
      width: 10%;
      height: 100%;
      background: linear-gradient(
        140deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
      );
      animation: shine 3s infinite;
    }

    @keyframes shine {
      0% { left: -75%; }
      100% { left: 125%; }
    }


.social {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 30px;
  margin-bottom: 0;
  padding: 0;
}

.social li a {
  color: var(--white);
}

.social li a:hover {
  opacity: 1;
  color: var(--hover-color2);
}

header {
  position: relative;
  z-index: 999;
}

header.stricky-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  animation-name: fadeInDown;
  animation-duration: 0.6s;
  animation-fill-mode: both;
}

.logo img {
  max-width: 255px;
  width: auto;
  height: auto;
}

.menubar {
  position: relative;
  background-color: var(--secondary-color);
  z-index: 1;
}

.menubar.stricky-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  animation-name: fadeInDown;
  animation-duration: 600ms;
  animation-fill-mode: both;
}

.top-bar {
  background-color: var(--white);
  position: relative;
  padding: 8px 0;
  z-index: 1;
}

.call-now {
  display: flex;
  align-items: center;
  padding-right: 25px;
  margin-right: 25px;
  border-right: 1px solid var(--border-light);
}

.top-bar .call-now:last-child {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}

.call-now .icon-bx {
  margin-right: 12px;
  display: flex;
  align-items: center;
  color: var(--para-color);
}

.call-now .con-bx {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.call-now .con-bx span {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--para-color);
}

.call-now .con-bx span:last-child {
  margin-top: 2px;
}

.call-now .con-bx span a {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  font-family: var(--font2);
  text-decoration: none;
}

.call-now .con-bx span a:hover {
  color: var(--primary-color);
}

.top-icons {
  margin-right: 30px;
  display: flex;
  gap: 10px;
}

.top-icons img {
  width: 80px;
}

.search-bx {
  display: flex;
  align-items: center;
}
.search-bx input {
  background-color: transparent;
  border: 0;
  outline: 0;
  color: white;
  height: 50px;
}

.search-bx input::placeholder {
  color: white;
  opacity: 0.5;
}

.search-bx button {
  background-color: transparent;
  border: 0;
  outline: 0;
  color: white;
  padding: 5px 8px;
}

.search-bx button:hover {
  color: var(--primary-color);
}

.navigation .nav-header {
  display: none;
  padding: 12px 20px;
}

.navigation .navbar button {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border: 0;
  outline: 0;
  color: #fff;
  font-size: 25px;
  border-radius: 0;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  position: relative;
  z-index: 99;
  padding: 5px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.navigation .navbar button span {
  display: block;
  position: absolute;
  height: 3px;
  width: 70%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 15%;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.navigation .navbar button span:nth-child(1) {
  top: 8px;
}

.navigation .navbar button span:nth-child(2),
.navigation .navbar button span:nth-child(3) {
  top: 18px;
}

.navigation .navbar button span:nth-child(4) {
  top: 28px;
}

.navigation .navbar button.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.navigation .navbar button.open span:nth-child(2) {
  transform: rotate(45deg);
}

.navigation .navbar button.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.navigation .navbar button.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.navigation .menu {
  display: block;
}

.navigation .menu ul {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
}

.navigation .menu ul li {
  display: inline-block;
  position: relative;
}

.navigation .menu ul li a {
  padding: 9px 9px;
  display: block;
  color: var(--white);
  transition: all 0.3s ease;
  font-size: 14px;
  font-family: var(--font2);
  background: transparent;
  text-decoration: none;
}

.navigation .menu ul li.active a,
.navigation .menu ul li:hover a {
  color: var(--primary-color);
  background: transparent;
  text-decoration: none;
  font-size: 14px;
}

.navigation .menu ul li ul.ls-dropdown {
  top: 100%;
  left: 0;
  text-align: left;
}

.navigation .menu ul li ul.ls-dropdown li:last-child {
  border: 0;
}

.navigation .menu ul li ul.ls-dropdown li ul.ls-dropdown {
  left: 100%;
  margin-top: -36px;
}

.navigation .menu ul li ul.ls-dropdown li ul.ls-dropdown li ul.ls-dropdown {
  left: -100%;
  margin-top: -31px;
}

.navigation .menu ul li ul.ls-dropdown {
  position: absolute;
  width: 285px;
  display: none;
  z-index: 99999;
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.4);
  background: #fff;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

.navigation .menu ul li:hover ul.ls-dropdown {
  display: block;
}

.navigation .menu ul li:hover ul.ls-dropdown li ul.ls-dropdown {
  display: none;
  transition: all 0.3s ease;
  width: max-content;
  min-width: 190px;
}

.navigation .menu ul li ul.ls-dropdown li:hover ul.ls-dropdown {
  display: block;
}

.navigation .menu ul li ul.ls-dropdown li {
  display: block;
  padding: 0;
  width: 100%;
}

.navigation .menu ul li ul.ls-dropdown li:last-child a:after {
  display: none;
}

.navigation .menu ul li ul.ls-dropdown li a:hover {
  color: white;
  background-color: var(--primary-color);
}

.navigation .menu ul li ul.ls-dropdown li:hover a {
  color: white;
    background-color: var(--primary-color);
}

.navigation .menu ul li ul.ls-dropdown li:hover ul.ls-dropdown li a {
  background: #fff;
  color: #333;
}

.navigation .menu ul li ul.ls-dropdown li:hover ul.ls-dropdown li a:hover {
  color: #fff;
    background-color: var(--primary-color);
}

.navigation .menu ul li ul.ls-dropdown li a {
  color: var(--heading-color);
  font-size: 14px;
  padding: 8px 15px;
  position: relative;
  display: block;
  text-transform: capitalize;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navigation ul li.ls-submenu a button {
  border: 0;
  background: transparent;
  outline: 0;
  padding: 0;
  margin: 0 0 0 3px;
  color: var(--white);
}

.navigation ul li.ls-submenu a button svg {
  width: 14px;
  height: 14px;
}

.navigation ul li.ls-submenu:hover svg {
  transform: rotateZ(180deg);
  color: var(--primary-color);
}

.navigation ul li.ls-submenu:hover ul.ls-dropdown li.ls-submenu svg {
  color: #242424;
}

.navigation ul li.ls-submenu ul.ls-dropdown li a button {
  float: right;
  color: #333;
}

.navigation ul li.ls-submenu ul.ls-dropdown li a button svg {
  transform: rotateZ(-90deg);
}

.navigation ul li.ls-submenu ul.ls-dropdown li.ls-submenu:hover svg {
  color: #fff;
}

.navigation .navbar {
  display: none;
  padding: 12px 0;
  margin: 0;
}

.navigation .menu ul > li:hover > ul.ls-dropdown {
  visibility: visible;
  opacity: 1;
}

.navigation .menu ul > li > ul.ls-dropdown > li > ul.ls-dropdown {
  left: 100%;
  margin-top: -36px;
}

.navigation
  .menu
  ul
  > li
  > ul.ls-dropdown
  > li
  > ul.ls-dropdown
  > li
  > ul.ls-dropdown {
  left: -100%;
  margin-top: -31px;
}

.navigation .menu ul > li > ul.ls-dropdown > li:hover > ul.ls-dropdown {
  visibility: visible;
  opacity: 1;
}

.navigation .menu ul > li ul.ls-dropdown {
  position: absolute;
  min-width: 190px;
  width: max-content;
  max-width: 390px;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
  background: #fff;
  margin: 0;
  padding: 0;
  text-align: left;
}

.navigation .menu ul > li ul.ls-dropdown li {
  display: block;
  padding: 0;
  width: 100%;
}

.Marquee {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.Marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 15s linear infinite;
}

/* Keyframes: move text fully out, then restart cleanly */
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.Marquee-tag {
  display: inline-block;
  padding-left: 1rem;
  font-size: 1.2rem;
  white-space: nowrap;
}

.g-recaptcha {
  transform: scale(0.95);
  transform-origin: 0 0;
  margin-top: 2px;
}

.leadseo h1,
.leadseo h2,
.leadseo h3,
.leadseo h4,
.leadseo h5,
.leadseo h6 {
  font-weight: 600;
  font-size: var(--heading-size);
  color: var(--heading-color);
  font-family: var(--font);
}

.leadseo p,
.leadseo ul,
.leadseo li {
  font-size: var(--para-size);
  color: var(--para-color);
  line-height: 1.6;
  margin-bottom: 7px;
}

/* *******************************footer section code*************************************** */

.footer-contact-section {
  background-image: url("../images/home-bg-4.webp");

  background-size: cover;

  background-attachment: fixed;

  background-position: center;

  background-repeat: no-repeat;

  position: relative;
}

/* Overlay Effect */

.footer-contact-section::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;
  /* 
    background-color: rgba(30, 30, 32, 0.95); */

  z-index: 1;
}

.footer-content-wrapper {
  position: relative;

  z-index: 2;
}

.leadsurepara {
  font-size: 14px;
}
.leadsuresubheading{
  color: var(--heading-color);
  font-size: 14px;
}

.contact-info p a {
  margin-bottom: 0.2rem !important;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-align: left;
}

.contact-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.contact-icon-wrapper svg {
  color: var(--white);
}

.contact-title {
  font-size: var(--heading-size);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.contact-info {
  font-size: var(--para-size);
  color: var(--white);
  line-height: 1.6;
}

.contact-info a {
  color: var(--white);
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--primary-color);
}

/* ******************2nd footer section code************************ */

/* --- Footer Main Area --- */
.footer-area {
  color: var(--white);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2px;
  filter: brightness(0) invert(1);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  max-width: 240px;
  width: auto;
  max-height: 100px;
  height: auto;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background-color: var(--light-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}

.social-btn:hover {
  background-color: var(--hover-color1);
  transform: translateY(-3px);
}

/* Links List */
.footer-links {
  list-style: none;
  padding: 0;
  font-size: var(--para-size);
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--light-color);
  padding-left: 5px;
}

.contact-itemf {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.contact-icon {
  /* width: 45px;
    height: 45px;
    background-color: var(--icon-bg); */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border-radius: 4px; */
  flex-shrink: 0;
  cursor: pointer;
  margin-top: 6px;
  margin-right: 13px;
  font-size: 12px;
}

/* --- Copyright Bar --- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px;
  font-size: 12px;
}

.visibility-text {
  color: #a1a1a1;
}

.bottom-links a {
  color: #a1a1a1;
  text-decoration: none;
  margin-left: 10px;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-widget-title {
    margin-top: 30px;
  }

  .social-links {
    margin-bottom: 20px;
  }

  .title-no-margin-mobile {
    margin-top: 0 !important;
  }
}

/* Popular Searches */
.foot08-head {
  color: var(--white);
}

.ft-sep {
  margin-right: 30px;
}

.foot08-popular-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 5px;
  font-size: var(--para-size);
}

.foot08-popular-list li {
  color: var(--white);
}

.foot08-popular-list li:last-child::after {
  content: "";
}
.foot08-popular-list li::after {
    content: "|";
    margin: 0 1px;
    color: var(--border-light);
}

.foot08-popular-list a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.foot08-popular-list a:hover {
  color: var(--hover-color2);
}

.foot08-muted {
  color: var(--white-color) !important;
}

/* ************************************************hero section code section ***************************************/

.eyebrow-section {
  color: var(--primary-color);

  align-content: center;

  font-size: var(--para-size);

  display: inline-block;

  line-height: 1;

  margin-bottom: 15px;

  text-transform: uppercase;

  font-weight: 600;

  letter-spacing: 0.5px;
}

.leadsure {
  padding: 56px 0;
}

.ledsureheading {
  font-weight: 600;

  font-size: var(--heading3-size);

  color: var(--heading-color);

  margin-bottom: 10px;
}

.section-title {
  font-weight: 600;

  font-size: clamp(20px, 3.6vw, 30px);

  line-height: 1;

  color: var(--heading-color);

  text-align: center;

  letter-spacing: 0.2px;

  margin: 4px 0 30px;
}

.section-title2 {
  font-weight: 600;

   font-size: clamp(13px, 1.8vw, 16px);

  line-height: 1;

  color: var(--primary-color);

  /* padding: 5px 10px; */
  border-radius: 10px;

  text-align: center;

  letter-spacing: 0.2px;

  margin: 4px 0 30px;
}

.colordhead {
  color: var(--primary-color);
}

.heading-text {
  font-size: var(--title-size);

  font-weight: 600;

  color: var(--heading-color);
}
.heading-text2 {
  font-size: var(--title-size);

  font-weight: 600;

  color: var(--heading-color);
}

.heading-underline {
  height: 4px;

  width: 60px;

  border-radius: 2px;

  background: var(--primary-color);
}

main,
main img {
  overflow: hidden;

  display: block;

  width: 100%;
}

/* #carouselExampleAutoplaying img {

    aspect-ratio: 1920 / 700;



} */
/* s;dosdk */

.carousel-control-next,
.carousel-control-prev {
  line-height: 0;

  position: absolute;

  top: 50%;

  display: block;

  width: 38px;

  height: 38px;

  padding: 0;

  transform: translate(0, -50%);

  cursor: pointer;

  color: #fff;

  border: 0;

  outline: 0;

  background-color: rgba(0, 0, 0, 0.1);

  backdrop-filter: blur(2px);

  border-radius: 100%;

  z-index: 9;

  opacity: 1;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  height: 16px;

  width: 16px;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
    background-color: var(--primary-color);


  opacity: 1;
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

@media (max-width: 980px) {
  .carousel-control-next,
  .carousel-control-prev {
    width: 20px;

    height: 35px;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    height: 13px;

    width: 13px;
  }

  .carousel-control-prev {
    left: 0px;

    border-radius: 0 3px 3px 0;
  }

  .carousel-control-next {
    right: 0px;

    border-radius: 3px 0px 0px 3px;
  }
}

.swiper-next,
.swiper-prev {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  z-index: 5;

  display: inline-flex;

  align-items: center;

  justify-content: center;
}

.swiper-button-next,
.swiper-button-prev,
.swiper-next,
.swiper-prev {
  border: 1px solid #eee;

  background-color: white;

  color: var(--text-light);

  width: 35px;

  height: 35px;

  z-index: 2;

  border-radius: 100%;

  text-align: center;
}

.swiper-next svg,
.swiper-prev svg {
  width: 18px;

  height: 18px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover,
.swiper-next:hover,
.swiper-prev:hover {
  color: white;

  background: var(--liner);

    background-color: var(--primary-color);


  border-color: var(--pri);
}

.swiper-button-next,
.swiper-next {
  right: 25px;

  left: auto;
}

.swiper-button-prev,
.swiper-prev {
  left: 25px;

  right: auto;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 13px;

  font-weight: 600;
}

.swiper_wrap {
  /* height: 100%;  */

  width: 100%;

  position: relative;

  display: block;

  text-align: left;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  display: none;
}

.swiper-wrapper {
  display: flex;

  align-items: stretch;
}

.swiper-slide {
  height: auto;
}

.swiper-prev {
  left: -22px;

  right: auto;
}

.swiper-next {
  right: -22px;

  left: auto;
}

/* *****************tagline css******************* */

/* ***********************about us section************************************* */

.about-section {
  position: relative;
  background: var(--bg2-color);
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  aspect-ratio: 4 / 1;
  background-image: url("../images/fl1.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  /* ✅ places it on the right side */
  animation: bounceY 4s ease-in-out infinite;
  z-index: 0;
  opacity: 0.5;
}

@keyframes bounceY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
    /* move upward */
  }
}

.img-container img {
  aspect-ratio: 1/1;
  object-fit: cover;
  height: 100%;
border-radius: 0.5rem;
  width: 100%;
}

/* General Container for About Section */

.aboutleft {
  background-color: var(--bg1-color);

  padding: 2rem 1rem;

  border-radius: 0.5rem;

  box-sizing: border-box;
}

/* Solution Banner Styling */

.solution-banner {
  background-color: var(--primary-color);

  color: #fff;

  padding: 1rem 2rem;

  border-top-left-radius: 10px;

  border-top-right-radius: 10px;

  font-weight: 500;

  font-size: var(--para-size);

  text-align: center;

  display: inline-block;

  width: 100%;

  box-sizing: border-box;

  margin-bottom: 20px;
}

/* Feature Item Styling */

.feature-item {
  display: flex;

  align-items: center;

  margin-bottom: 1.25rem;

  /* Consistent space between items */
}

.feature-item .icon-wrapper {
  flex-shrink: 0;

  width: 60px;

  height: 60px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-right: 1.5rem;

  /* Increased margin for better separation */
}

.feature-item .icon-wrapper svg {
  color: var(--primary-color);

  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); */
}

.feature-item .feature-title {
  font-weight: 700;

  font-size: var(--para-size);

  margin-bottom: 0.5rem;

  color: var(--heading-color);
}

.feature-item .feature-text {
  color: var(--para-color);

  font-size: var(--para-size);

  line-height: 1.5;
}

.testimonial-card {
  background-color: var(--bg1-color);

  border: none;

  border-radius: 1rem;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card .card-body {
  padding: 2rem;
}

.testimonial-card .quote-text {
  color: var(--heading-color);

  font-size: var(--heading-size);

  line-height: 1.6;
}

/* *******************our products section********************************* */

.services-section {
  background-color: var(--bg1-color);
}

.custom-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  border-radius: var(--radius);

  background-color: var(--bg2-color);
}

.card-footer {
  background-color: var(--bg2-color) !important;
}

.custom-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.img-ratio {
  position: relative;

  width: 100%;

  padding-top: 100%;

  overflow: hidden;
}

.img-ratio img {
  aspect-ratio: 1 / 1;

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: auto;

  object-fit: cover;
}

.card-img-container {
  overflow: hidden;
}

.card-img-top-custom {
  transition: transform 0.4s ease;
}

.custom-card:hover .card-img-top-custom {
  transform: scale(1.05);
}

.link-custom {
  color: var(--btn-color2);

  font-size: var(--para-size);
}

.link-custom svg {
  color: var(--primary-color);
}

.link-custom:hover {
  color: var(--hover-color2);
}

.card-title {
  position: relative;
  display: block;
  padding-bottom: 10px;
  margin: 0 0 8px;
  font-size: var(--heading-size);
  font-weight: 500;
  color: var(--heading-color);

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-title::before {
  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  /* align dot right under text */

  height: 10px;

  width: 10px;

  border-radius: 50%;

  background: var(--primary-color);
}

.card-title::after {
  content: "";

  position: absolute;

  left: 10px;

  /* line starts after the dot */

  bottom: 3px;

  /* visually centered with dot */

  width: calc(100% - 12px);

  height: 2px;

  background: var(--primary-color);
}

.card-text {
  font-size: var(--para-size);

  color: var(--para-color);

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.card-title-link {
  text-decoration: none;
}

.card-title:hover {
  color: var(--hover-color2);
}

/* ********************matrix sectio code******************************* */

/* --- Main Section with Background --- */

.hero-with-form-section {
  background: url("../images/home-bg-1.webp") no-repeat center center;

  background-size: cover;

  background-size: cover;

  background-position: center;

  background-attachment: fixed;
}

@media (max-width: 991.98px) {
  .hero-with-form-section {
    padding: 3rem 0;
  }
}

.hero-content .hero-main-heading {
  font-size: var(--title-size);

  font-weight: 600;

  color: var(--white);

  line-height: 1.6;

  margin-bottom: 3.5rem;

  text-transform: uppercase;
}

/* --- Left Side: Statistics --- */

.stat-item {
  text-align: left;

  padding: 0 1rem;

  margin-bottom: 2rem;

  display: flex;

  align-items: center;

  gap: 1rem;
}

.stat-item .icon-wrapper svg {
  color: var(--white);

  opacity: 0.9;
}

.stat-item .stat-number {
  font-size: var(--title-size);

  font-weight: 700;

  color: var(--white);

  line-height: 1;
}

.stat-item .stat-label {
  font-size: var(--heading-size);

  color: var(--white);

  line-height: 1.6;
}

/* --- Right Side: Enquiry Form --- */

.enquiry-form-wrapper {
  background-color: var(--bg1-color);

  color: var(--heading-color);

  padding: 25px;

  border-radius: var(--radius);
}

.enquiry-form-wrapper .form-heading {
  font-size: var(--heading2-size);

  font-weight: 600;

  color: var(--primary-color);
}

.enquiry-form-wrapper .form-subheading {
  color: var(--para-color);

  margin-bottom: 1rem;
}

.form-control,
.input-group-text {
  border: 1px solid var(--border-light);

  padding: 0.85rem 1rem;

  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--secondary-color);

  box-shadow: 0 0 0 0.2rem rgba(229, 109, 72, 0.25);
}

/* vision mission section code */

/********************************* mission and vision section code************************** */

.features-section {
  padding: 76px 0;

  background-color: var(--bg1-color);
}

.feature-card {
  /* Using position relative to be the anchor for the absolute positioned icon */

  position: relative;

  /* Ensures cards in the same row have the same height */

  width: 100%;

  height: 100%;
}

.feature-card-content {
  padding: 45px 30px 30px 30px;

  border: 1px solid var(--btn-color);

  border-radius: var(--radius);

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);

  text-align: center;

  height: 100%;
}

.feature-card-icon {
  width: 85px;

  height: 85px;

  border-radius: 50%;

  background-color: var(--bg1-color);

  display: flex;

  align-items: center;

  justify-content: center;

  position: absolute;

  top: -45px;

  /* Half of height (70px) */

  left: 15%;

  transform: translateX(-50%);
}

.feature-card-icon svg {
  width: 45px;

  height: 45px;

  color: var(--primary-color);
}

.feature-card-title {
  font-size: 24px;

  font-weight: 600;

  color: var(--heading-color);

  margin-bottom: 0.75rem;
}

.feature-card-text {
  color: var(--para-color);

  font-size: 14px;

  line-height: 1.6;

  display: -webkit-box;

  -webkit-line-clamp: 7;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

/* ********************why choose us section code******************** */

.why-choose-us-section {
  position: relative;

  background: url("../images/home-bg-5.webp") no-repeat center center;

  background-size: cover;

  background-position: center;

  background-attachment: fixed;

  overflow: hidden;
}

.image-wrapperA {
  position: relative;

  padding: 1rem;

  /* Creates the inset frame effect */

  border-radius: var(--radius);

  width: 100%;
}

.image-wrapperA img {
  aspect-ratio: 4/3;

  width: 100%;

  height: auto;

  border-radius: var(--radius);
}

/* The building graphic effect */

.image-wrapperA::before {
  content: "";

  position: absolute;

  top: -10%;

  left: -20%;

  width: 50%;

  height: 120%;

  background-size: cover;

  background-repeat: no-repeat;

  opacity: 0.5;

  z-index: -1;
}

.text-contentA .subheadingA {
  color: var(--primary-color);

  font-weight: 600;

  font-size: 0.9rem;

  text-transform: uppercase;

  letter-spacing: 1px;

  margin-bottom: 0.5rem;
}

.text-contentA .headingA {
  color: var(--white);

  font-weight: 700;

  font-size: var(--title-size);

  margin-bottom: 2rem;
}

.feature-boxA {
  background-color: var(--secondary-color);

  padding: 2rem 1rem;

  text-align: center;

  border: 1px solid var(--topbar-color);

  border-radius: var(--radius);

  transition: transform 0.3s ease, border-color 0.3s ease;

  height: 100%;
}

.feature-boxA:hover {
  transform: translateY(-8px);

  border-color: var(--primary-color);

  background-color: var(--hover-color2);
}

.feature-boxA svg {
  color: var(--white);

  margin-bottom: 1rem;
}

.feature-boxA .labelA {
  color: var(--white);

  font-size: var(--para-size);

  font-weight: 500;

  margin-bottom: 0;
}

/* ****************************SEO CONTENT SECTION CODE****************** */

/* 2. Hero Section Background & Overlay */

.medical-hero-section {
  position: relative;

  background: url("../images/home-bg-3.webp");

  background-size: cover;

  background-position: center;

  background-attachment: fixed;

  /* Parallax-like effect */
}

.medical-hero-section::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  /* background-color: var(--dark-overlay-gradient); */

  z-index: 1;
}

.seo-image {
  aspect-ratio: 4/3;

  width: 100%;

  overflow: hidden;
}

.seo-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.scroll-hero h2 {
  font-size: var(--title-size);

  font-weight: 600;

  color: var(--white);
}

.scroll-hero p {
  font-size: var(--para-size);

  color: var(--white);
}

/* Ensure content is above the overlay */

.medical-hero-section .container {
  position: relative;

  z-index: 2;
}

/* .scrollable-box {

    background: var(--gradient1-color);

    padding: 2rem;

    border-radius: var(--radius);

    color: var(--white);

    max-height: 490px;

    overflow-y: auto;

    scrollbar-width: none;

} */

.stats-heading {
  font-size: var(--heading-size);

  color: var(--white);
}

.scrollable-box h2,
.scrollable-box h3 {
  font-size: var(--heading-size);

  font-weight: 600;
}

.scrollable-box p,
.scrollable-box li,
.scrollable-box ul {
  font-size: var(--para-size);

  line-height: 1.6;
}

.scrollable-box li,
.scrollable-box ul {
  padding-left: 15px;
}

.feature-copy .scrollable-box {
  max-height: 414px;
  /* same as 2nd section */
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.scroll-hero strong {
  color: var(--white);
}

.read-more-toggle:checked ~ .scrollable-box {
  overflow-y: auto;
  scrollbar-width: thin;
}

.scrollable-box {
  /* background: var(--gradient1-color); */
  /* padding: 2rem; */
  border-radius: var(--radius);
  color: var(--white);
}

.read-more-toggle {
  display: none;
}

.read-more-btn2 {
  display: block;
  margin-top: 10px;
  cursor: pointer;
}

.read-more-btn2::after {
  content: "Show More...";
  color: var(--white);
  font-size: var(--para-size);
}

.read-more-toggle:checked ~ .read-more-btn2::after {
  content: "Show Less...";
  color: var(--white);
}

/* Basic smooth scroll */
.scrollable-box {
  scroll-behavior: smooth;
}

/* Chrome, Edge, Safari */
.scrollable-box::-webkit-scrollbar {
  width: 6px;
}

.scrollable-box::-webkit-scrollbar-track {
  background: transparent;
}

.scrollable-box::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 6px;
}

/* Hover (very subtle) */
.scrollable-box::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* Firefox */
.scrollable-box {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.4) transparent;
}

/* *******************************blog section code***************************** */

.blog-sectionind {
  /* background-color: var(--bg2-color); */
}

.blog-cardind {
  background-color: var(--bg1-color);

  border-radius: var(--radius);

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);

  transition: transform 0.3s ease, box-shadow 0.3s ease;

  width: 100%;

  height: 100%;

  display: flex;

  flex-direction: column;
}

.blog-cardind:hover {
  transform: translateY(-5px);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.card-img-wrapperind {
  position: relative;
}

.card-img-wrapperind .card-img-topind {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.date-badgeind {
  position: absolute;

  top: 15px;

  right: 15px;

  background-color: var(--primary-color);

  color: var(--white);

  border-radius: var(--radius);

  padding: 8px 10px;

  text-align: center;

  font-weight: 600;

  font-size: 14px;

  line-height: 1.1;
}

.date-badgeind span {
  font-size: 18px;

  display: block;
}

.blog-card-bodyind {
  padding: 25px;

  flex-grow: 1;

  display: flex;

  flex-direction: column;
}

.card-title-wrapperind {
  margin-bottom: 0.75rem;
}

.card-title-wrapperind .card-titleind {
  font-size: var(--heading-size);

  font-weight: 600;

  color: var(--heading-color);

  line-height: 1.3;

  overflow: hidden;

  text-overflow: ellipsis;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  margin-bottom: 1px;

  -webkit-box-orient: vertical;

  text-decoration: none;
}

.card-titleind:hover {
  color: var(--hover-color2);
}

.card-text-wrapperind {
  flex-grow: 1;

  margin-bottom: 1rem;
}

.card-text-wrapperind .card-textind {
  color: var(--para-color);

  font-size: var(--para-size);

  line-height: 1.4;

  overflow: hidden;

  text-overflow: ellipsis;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;
}

/* ******************Project section code**************************************** */
  .portfolio-section {
            background-color: var(--bg2-color);
            overflow: hidden; /* Prevent horizontal scroll from slider */
        }

        .section-header .headingB {
            font-size: var(--title-size);
            font-weight: 600;
            color: var(--heading-color);
            max-width: 100%;
            margin: 0 auto;
        }


        .portfolio-slide {
            height: auto;
            display: flex;
        }

        /* --- Portfolio Card Styling --- */
        .portfolio-card {
            width: 100%;
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
            transition: transform 0.3s ease;
            background: #fff;
            display: flex;
            flex-direction: column;
        }

        .portfolio-card:hover {
            transform: translateY(-5px);
        }

        .portfolio-card .portfolio-image {
            aspect-ratio: 4/3;
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .portfolio-card:hover .portfolio-image {
            transform: scale(1.05);
        }

        .portfolio-card .portfolio-caption {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 1.5rem;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.7) 0%,
                rgba(0, 0, 0, 0) 60%,
                rgba(0, 0, 0, 0) 100%
            );
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            pointer-events: none; /* Allow clicks through to card */
        }

        .portfolio-title {
            font-size: var(--heading-size);
            font-weight: 600;
            color: var(--white);
            margin-bottom: 0.25rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .portfolio-subtitle {
            font-size: var(--para-size);
            color: var(--white);
            margin-bottom: 0;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .portfolio-card .location-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background-color: rgba(30, 30, 30, 0.7);
            backdrop-filter: blur(5px);
            color: var(--white);
            border-radius: 50rem;
            font-size: var(--para-size);
            font-weight: 500;
            align-self: flex-start;
            pointer-events: auto;
        }

  

/* *******************WORKING PROCESS SECTION CODE******************** */

.process-section {
  position: relative;

  padding: 9rem 0 4.5rem 0;

  background: url("../images/home-bg-2.webp") no-repeat center center;

  background-size: cover;

  background-attachment: fixed;

  /* Parallax effect for the main background */

  overflow: hidden;

  /* Crucial for containing the scrolling text */
}

.scrolling-text {
  position: absolute;

  top: 1.2rem;

  left: 83%;

  font-size: 6vw;

  font-weight: 800;

  color: rgba(255, 255, 255, 0.9);

  white-space: nowrap;

  will-change: transform;

  z-index: 1;
}

.process-section .container {
  position: relative;

  z-index: 2;

  /* Ensures content is on top of the scrolling text */
}

.section-header101 {
  margin-bottom: 2.5rem;

  max-width: 600px;
}

.section-header101 .heading101 {
  color: var(--white);

  font-size: var(--title-size);

  font-weight: 600;

  margin-bottom: 1rem;

}

.section-header101 .subheading101 {
  color: var(--white);

  font-size: 13px;

  opacity: 0.8;
}

.process-step101 {
  text-align: center;

  position: relative;

  padding: 1rem;

  background-color: color-mix(in srgb, var(--secondary-color) 70%, transparent);

  opacity: 0.8;
}

/* Dashed line connector */

.process-step101:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 27px;

  /* Aligns with the middle of the number circle */

  left: 50%;

  width: 100%;

  height: 1px;

  background-image: linear-gradient(
    to right,
    var(--border-color) 50%,
    transparent 50%
  );

  background-size: 10px 1px;

  z-index: 1;
}

.step-number101 {
  width: 55px;

  height: 55px;

  margin: 0 auto 1.5rem auto;

  border: 2px solid var(--border-color);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: 600;

  color: var(--white);

  background-color: var(--topbar-color);

  position: relative;

  z-index: 2;

  /* Sits on top of the dashed line */

  transition: border-color 0.3s ease;
}

.process-step101:hover .step-number101 {
  background-color: var(--hover-color2);
}

.step-title101 {
  color: var(--white);

  font-weight: 600;

  font-size: var(--heading-size);

  margin-bottom: 0.5rem;
}

.step-description101 {
  color: var(--white);

  opacity: 0.7;

  font-size: var(--para-size);
}

/* Animation for fade-in on scroll */

.fade-in {
  opacity: 0;

  transform: translateY(30px);

  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.is-visible {
  opacity: 1;

  transform: translateY(0);
}

/* faq section code******************************** */

.faq-container {
  position: relative;
  overflow: hidden;
  background-color: var(--bg1-color);
}

.faq-container::before {
  content: "";
  position: absolute;
  inset: 0;
  aspect-ratio: 4 / 1;
  background-image: url("../images/fl1.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  /* ✅ places it on the right side */
  animation: bounceY 4s ease-in-out infinite;
  z-index: 0;
  opacity: 0.2;
}

.left-section {
  padding: 10px;

  min-height: 1px !important;

  transition: min-height 0.3s ease;
}

.faq-title {
  font-size: var(--title-size);

  font-weight: 600;

  color: var(--heading-color);

  margin-bottom: 10px;

  line-height: 1.2;
}

.faq-description {
  color: var(--para-color);

  font-size: var(--para-size);

  line-height: 1.5;

  margin-bottom: 10px;
}

.right-section {
  flex: 1;

  padding: 20px;
}

.faq-item {
  position: relative;

  margin-bottom: 10px;

  border-left: 8px solid var(--primary-color);

  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  background: var(--bg1-color);

  /* background-color: transparent; */

  border: none;

  padding: 15px 40px 18px 10px;

  font-size: var(--heading-size);

  font-weight: 500;

  color: var(--header-color);

  cursor: pointer;

  width: 100%;

  text-align: left;

  position: relative;

  transition: all 0.3s ease;

  box-shadow: 5px 5px 27px rgba(0, 0, 0, 0.1);
}

.faq-question::after {
  content: "\f107";

  font-family: "Font Awesome 6 Free";

  font-weight: 900;

  position: absolute;

  right: 3%;

  top: 50%;

  transform: translateY(-50%) rotate(-90deg);

  transition: transform 0.3s ease;

  font-size: 16px;

  color: var(--btn-color);
}

.faq-answer {
  max-height: 0;

  overflow: hidden;

  transition: 0.3s ease;

  padding: 0;

  color: var(--para-color);

  font-size: var(--para-size);

  line-height: 1.6;

  box-shadow: 5px 5px 27px rgba(0, 0, 0, 0.1);
}

/* Active states */

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-item.active .faq-answer {
  max-height: 200px;

  padding: 5px 10px 5px 10px;
}

@media (max-width: 768px) {
  .faq-wrapper {
    flex-direction: column;
  }

  .right-section {
    padding: 10px;
  }
}

/* ***************************our partner section code****************************** */

.partners-section {
  background-color: var(--bg2-color);
}

.partner-heading {
  font-size: var(--title-size);

  color: var(--heading-color);

  font-weight: 600;
}

.partner-para {
  color: var(--para-color);

  font-size: var(--para-size);
}

/* 2. Swiper Container & Slide Styling */

.swiper {
  width: 100%;

  height: 100%;
}

.swiper-slide {
  text-align: center;

  font-size: 18px;

  background: transparent;

  /* display: flex; */

  justify-content: center;

  align-items: center;

  padding: 1rem 0;
}

.swiper-slide img {
  display: block;

  height: auto;

  object-fit: cover;

  box-shadow: 0 4px 15px rgb(78 78 78 / 20%);
  transition: filter 0.3s ease, opacity 0.3s ease;
}

/* approve para section code */
.approve-section {
  background-color: var(--bg1-color);
}

.approve-heading {
  font-size: var(--title-size);

  color: var(--heading-color);

  font-weight: 600;
}

.approve-para {
  color: var(--para-color);

  font-size: var(--para-size);
}

/* ************************************AFT PRODUCTS SECTION CODE********************************* */

.aftproducts-section {
  background-color: var(--bg2-color);
}

.aftproducts-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  border-radius: var(--radius);

  background-color: var(--bg1-color);
}

.card-footer {
  background-color: var(--bg1-color);
}

.aftproducts-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.aftproducts-img-ratio {
  position: relative;

  width: 100%;

  padding-top: 100%;

  overflow: hidden;
}

.aftproducts-img-ratio img {
  aspect-ratio: 1 / 1;

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: auto;

  object-fit: cover;
}

.aftproducts-img-container {
  overflow: hidden;
}

.aftproducts-img-top {
  transition: transform 0.4s ease;
}

.aftproducts-card:hover .aftproducts-img-top {
  transform: scale(1.05);
}

.aftproducts-link {
  color: var(--btn-color2);

  font-size: var(--para-size);
}

.aftproducts-link svg {
  color: var(--primary-color);
}

.aftproducts-link:hover {
  color: var(--hover-color2);
}

.aftproducts-title {
  position: relative;

  display: inline-block;

  text-decoration: none;

  -webkit-line-clamp: 1;

  -webkit-box-orient: vertical;

  overflow: hidden;

  font-size: var(--heading-size);

  font-weight: 600;

  color: var(--heading-color);

  margin: 0 0 8px;

  display: block;
}

.hastag {
  font-size: var(--topbar-size);

  color: var(--primary-color);

  font-weight: 600;

  margin: 8px 0px;
}

.read-more-btn2::after.aftproducts-text {
  font-size: var(--para-size);

  color: var(--para-color);

  display: -webkit-box;

  -webkit-line-clamp: 1;

  -webkit-box-orient: vertical;

  overflow: hidden;


  text-overflow: ellipsis;

  /* min-height: calc(1.1em * 2); */
}

.aftproducts-title-link {
  text-decoration: none;
}

.aftproducts-title:hover {
  color: var(--hover-color2);
}


.aftproducts-section .heading-text {
  font-size: 22px;
}
.aft-slider-nav {
  display: flex;
  gap: 8px;
}


.aft-prev,.aft-prev1,.aft-next1,
.aft-next {
  width: 38px;
  height: 38px;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--para-color);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
}

/* Hover */
.aft-prev:hover,
.aft-next:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  color: var(--white);
  border: none;
}

.zis1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: var(--heading-size);
    color: var(--heading-color);
    font-weight: 500;
    font-family: var(--font);
}
.zis1 a{
  color: var(--heading-color);
}


/* *********************category page section code************************** */
.lab-section {
  background-color: var(--bg1-color);
}

.left-content-wrapper {
  float: left;
  max-width: 400px;
  width: 100%;
  margin-right: 2rem;
  margin-bottom: 0.5rem;
}

.content-section {
  display: flow-root;
}

.form-wrapper-115 label {
  color: black;
  font-size: 13px;
}


.contact-card-115 .card-text-115 a {
  text-decoration: none;
  color: var(--primary-color);
}

.contact-card-115 .card-text-115 a:hover {
  color: var(--secondary-color);
}

/* Image Container - 1:1 Aspect Ratio */

.image-container {
  aspect-ratio: 1/1;

  position: relative;

  width: 100%;

  padding-bottom: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  /* 1:1 Aspect Ratio */

  overflow: hidden;

  border-radius: 0;

  margin-bottom: 20px;
}

.image-container img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}



/* Clear Float */

.clearfix::after {
  content: "";

  display: table;

  clear: both;
}

/* ************** Table Styles ******************** */

        .table-section {
           
            background-color: var(--bg1-color);
        }

        .table-nav-tabs {
            justify-content: start;
            border-bottom: none;
        }

        .table-nav-tabs .nav-link {
            transition: 0.2s ease-in-out;
        }
    .nav-tabs .nav-link.active {
      background-color: var(--primary-color) !important;
      color: var(--white) !important;

    }
.nav-tabs .nav-link {
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
    background-color: var(--white) !important;
    color: var(--heading-color);
    border: 1px solid var(--primary-color);
}
   
.nav-tabs .nav-link:hover{
    
    color: var(--primary-color);
}


table tr:nth-child(even) {
    background-color: #efedec;
    color: var(--para-color);
}

table tr:nth-child(odd) {
    background-color: var(--white);
    color: var(--para-color);
}


.table-responsive.custom-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  border: 1px solid var(--primary-color);
  min-width: 1000px;
  cursor: pointer;
  overflow: hidden;
}



.table-responsive.custom-table {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}


.table-responsive.custom-table table thead {
  position: sticky;
  top: 0;
  background-color: var(--secondary-color);
  z-index: 10;
}

.table-responsive.custom-table table thead tr {
  background-color: var(--secondary-color);
}

.table-responsive.custom-table table thead td,
.table-responsive.custom-table table thead th {
  color: var(--white);
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 6px 8px;
  text-align: left;
  border-bottom: 1px solid var(--primary-color);
  white-space: nowrap;
}



.table-responsive.custom-table table tbody tr {
  border-bottom: 1px solid var(--light-color);
  transition: background-color 0.2s ease;
}

.table-responsive.custom-table table tbody tr:hover {
  background-color: var(--bg2-color);
  color: var(--white) !important;
}

.table-responsive.custom-table table tbody tr:last-child {
  border-bottom: none;
}


.table-responsive.custom-table table tbody td {
  padding: 6px 8px;
  font-size: 12px;
  color: var(--para-color);
  white-space: nowrap;
}

.table-responsive.custom-table table tbody td:first-child {
  color: var(--white);
  font-weight: 500;
  background-color: var(--primary-color);
  font-size: 13px;
  
}

.table-responsive.custom-table::-webkit-scrollbar {
  height: 6px;
  width: 6px;
}

.table-responsive.custom-table::-webkit-scrollbar-track {
  background: var(--primary-color);
}

.table-responsive.custom-table::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}

.table-responsive.custom-table::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}



.material-wrap-container {
        padding: 15px 0;
    }

    /* Labels: Based on your .catrogery-heaading class */
    .catrogery-heaading {
        font-size: 15px;
        font-weight: 700;
        color: #212529;
        margin-bottom: 5px;
        display: block;
    } 
    .darkclr{
      background: var(--bg2-color);
      padding: 5px 10px;
    }

@media (max-width: 992px) {
  .table-responsive.custom-table table {
    min-width: 800px;

  }
}

@media (max-width: 576px) {
  .table-responsive.custom-table table {

    min-width: 600px;
  }
}


/* ******************************realted category section code****************************************** */

.section-14 {
  background: var(--bg1-color);
}

.card-14 {
  height: 100%;

  border-radius: var(--radius);
}

/* Aspect ratio wrapper */

.card-img-wrapper12 {
  height: 100%;

  width: auto;

  overflow: hidden;
}

.card-img-wrapper12 img {
  aspect-ratio: 1 / 1;

  width: 100%;

  height: 100%;

  object-fit: contain;

  background: var(--background2-color);

  transition: all 0.5s ease;

  border-radius: var(--radius);

  /* object-fit: contain;

    object-position: center; */
}

.heading-text {
  font-size: var(--title-size);

  font-weight: 600;

  color: var(--heading-color);
}

.heading-underline {
  height: 4px;

  width: 60px;

  border-radius: 2px;

  background: var(--secondary-color);
}

.catogery_link {
  color: var(--header-color);
}

.card-img-wrapper12 img:hover {
  transform: scale(1.05);
}

/* Typography */

.catrogery-heaading {
  color: var(--heading-color);

  font-size: var(--heading-size);

  font-weight: 600;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.desc-14 {
  color: var(--para-color);

  font-size: var(--para-size);

  line-height: 1.6;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  margin-bottom: 5px;
}

/* ***************************SEO SECTION CODE****************** */

.section-highlight {
  background: var(--bg1-color);
}

.feature-copy {
  position: relative;

  color: var(--para-color);

  font-size: 14px;

  line-height: 1.6;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

  background: var(--background2-color);

  padding: 18px 10px;

  overflow: hidden;
}

/* Collapse content initially */

.feature-copy .seo-content61 {
  max-height: 315px;

  /* collapsed */

  overflow: hidden;

  transition: max-height 0.5s ease;
}

.scrollcard {
  width: 100%;
}

.scrollcard img {
  aspect-ratio: 1/1;
}

.seo-content61 h2 {
  font-size: var(--heading-size);

  color: var(--heading-color);

  font-weight: 600;
}

.seo-content61 h3,
.seo-content61 h4,
.seo-content61 li,
.seo-content61 ul,
.seo-content61 p {
  font-size: var(--para-size);

  color: var(--para-color);
}

/* Hidden checkbox */

.read-more-toggle {
  display: none;
}

/* Expand when checked */

.read-more-toggle:checked ~ .seo-content61 {
  max-height: 2000vh;

  /* enough so text flows under image */
}

/* Read more button */

.read-more-btn {
  display: block;

  text-align: left;

  /* button floats right side */

  margin-top: 10px;

  color: var(--btn-color);

  font-size: var(--heading-size);

  cursor: pointer;

  transition: color 0.3s;
}

/* Button hover */

/* .read-more-btn:hover {

    color: var(--secondary-color);

} */

/* Toggle text dynamically */

.read-more-btn::after {
  content: "Show More...";

  color: var(--secondary-color);

  font-size: var(--para-size);
}

.read-more-toggle:checked ~ .read-more-btn::after {
  content: "Show Less...";

  color: var(--secondary-color);

  font-size: var(--para-size);
}

/************************** about us page /*********************************** */

.section-11 {
  position: relative;
  background: var(--bg2-color);
  overflow: hidden;
}

.section-11::before {
  content: "";
  position: absolute;
  inset: 0;
  aspect-ratio: 4 / 1;
  background-image: url("../images/fl2.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  /* ✅ places it on the right side */
  animation: bounceY 4s ease-in-out infinite;
  z-index: 0;
  opacity: 0.3;
}


.aboutimageZ{
  max-width: 470px !important;
}

/* ***************************SEO SECTION CODE****************** */

.section-about {
  background: var(--bg2-color);
}

.feature-about {
  position: relative;

  color: var(--para-color);

  font-size: 14px;

  line-height: 1.6;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

  background: var(--background2-color);

  padding: 18px 10px;

  overflow: hidden;
}

/* Collapse content initially */

.feature-about .seo-contentabout61 {
  max-height: 315px;

  /* collapsed */

  overflow: hidden;

  transition: max-height 0.5s ease;
}

.scrollcardabout {
  width: 100%;
}

.scrollcardabout img {
  aspect-ratio: 1/1;
}

.seo-contentabout61 h2,
.seo-contentabout61 h3,
.seo-contentabout61 h4,
.seo-contentabout61 h5,
.seo-contentabout61 h6 {
  font-size: var(--heading-size);

  color: var(--heading-color);

  font-weight: 600;
}

.seo-contentabout61 li,
.seo-contentabout61 ul,
.seo-contentabout61 p {
  font-size: var(--para-size);

  color: var(--para-color);
}

/* Hidden checkbox */

.read-more-toggle {
  display: none;
}

/* Expand when checked */

.read-more-toggle:checked ~ .seo-contentabout61 {
  max-height: 2000vh;

  /* enough so text flows under image */
}

/* Read more button */

.read-more-btn {
  display: block;

  text-align: left;

  /* button floats right side */

  margin-top: 10px;

  color: var(--btn-color);

  font-size: var(--heading-size);

  cursor: pointer;

  transition: color 0.3s;
}

/* Button hover */

/* .read-more-btn:hover {

    color: var(--secondary-color);

} */

/* Toggle text dynamically */

.read-more-btn::after {
  content: "Show More...";

  color: var(--primary-color);

  font-size: var(--para-size);
}

.read-more-toggle:checked ~ .read-more-btn::after {
  content: "Show Less...";

  color: var(--secondary-color);

  font-size: var(--para-size);
}

/* ****************************blog page code**************************** */

.blog-section05 {
  background: var(--bg2-color);
}

/* 1. Section Header Styling */

.section-header05 .section-title05 {
  font-size: 2.5rem;

  font-weight: 700;

  /* A deep, professional blue for the main title */

  color: #1a2b48;

  margin-bottom: 0.5rem;
}

.section-header .section-subtitle {
  font-size: 1.1rem;

  color: #6c757d;

  /* Muted text color for the subtitle */
}

/* 2. Blog Card Styling */

.blog-card05 {
  border: none;

  border-radius: var(--radius);

  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);

  overflow: hidden;

  /* Ensures the image corners are rounded */

  transition: transform 0.3s ease, box-shadow 0.3s ease;

  height: 100%;

  /* Makes cards in the same row equal height */
}

.blog-card05:hover {
  transform: translateY(-5px);

  /* Subtle lift effect on hover */

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-card05 .card-img-container05 {
  position: relative;

  /* Anchor for the date badge */
}

.blog-card05 .card-img-top05 {
  aspect-ratio: 16 / 10;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

/* 3. Date Badge Overlay */

.date-badge05 {
  position: absolute;

  top: 1rem;

  /* 16px from top */

  right: 1rem;

  /* 16px from right */

  background-color: var(--primary-color);

  color: var(--white);

  border-radius: var(--radius);

  padding: 0.5rem 0.75rem;

  text-align: center;

  line-height: 1.1;

  font-weight: 600;
}

.date-badge05 .day05 {
  display: block;

  font-size: var(--heading-size);
}

.date-badge05 .month05 {
  display: block;

  font-size: var(--para-size);

  /* text-transform: uppercase; */
}

/* 4. Card Body Content Styling */

.blog-card05 .card-title05 {
  font-size: 1.2rem;

  font-weight: 700;

  margin-bottom: 0.75rem;
}

.blog-card05 .card-title05 a {
  text-decoration: none;

  color: var(--heading-color);

  font-size: var(--heading-size);

  font-weight: 600;

  display: -webkit-box;

  -webkit-line-clamp: 1;

  -webkit-box-orient: vertical;

  overflow: hidden;

  transition: color 0.3s ease;
}

.blog-card05 .card-title05 a:hover {
  color: var(--hover-color2);
}

.blog-card05 .card-text05 {
  color: var(--para-color);

  font-size: var(--para-size);

  line-height: 1.6;

  margin-bottom: 10px;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

/* **************************** NEW FAQ SECTION CODE************************************  */

.faq-section62 {
  background-color: var(--bg1-color);

  padding: 6px 0px 56px 0px;
}

/* --- Bootstrap Nav Tabs Styling --- */

.faq-nav-tabs {
  border-bottom: none;

  justify-content: center;
}

.nav-link {
  margin-bottom: 5px;
}

.faq-nav-tabs .nav-link {
  border: none;

  color: var(--heading-color);

  border: 1px solid var(--btn-color2) !important;

  border-radius: var(--radius);

  padding: 0.5rem 1.5rem;

  font-weight: 500;

  margin: 0.5rem;

  transition: all 0.2s ease-in-out;
}

.faq-nav-tabs .nav-link:hover {
  background: var(--hover-color1);
  border: 1px solid var(--hover-color1) !important;

}

.faq-nav-tabs .nav-link.active {
  color: var(--white);

  background-color: var(--hover-color1);
}

/* --- Custom Accordion Styles --- */

.custom-accordion-item {
  /* background-color: var(--bg2-color); */

  border-radius: 0.75rem;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);

  margin-bottom: 1rem;

  padding: 1.25rem 1.5rem;
}

.custom-accordion-question {
  font-weight: 500;

  color: var(--heading-color);

  cursor: pointer;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.custom-accordion-answer {
  max-height: 0;

  overflow: hidden;

  color: var(--para-color);

  transition: max-height 0.3s ease-in-out, padding-top 0.3s ease-in-out;
}

/* Active State (Toggled by JavaScript) */

.custom-accordion-item.active .custom-accordion-question {
  font-weight: 600;

  color: var(--secondary-color);
}

.custom-accordion-item.active .custom-accordion-answer {
  max-height: 200px;

  padding-top: 0.75rem;

  font-size: var(--para-size);
}

/* Plus/Minus Icon */

.icon-toggle {
  width: 1.75rem;

  height: 1.75rem;

  background-color: var(--primary-color);

  color: var(--white);

  font-weight: bold;

  font-size: 1rem;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: var(--radius);

  cursor: pointer;
}

.custom-accordion-item.active .icon-toggle {
  background-color: var(--hover-color1);

  background-image: none;
}

.custom-accordion-item.active .icon-toggle::after {
  content: "−";
  /* minus sign */
}

/* Default state: show plus */

.icon-toggle::after {
  content: "+";
  /* plus sign */
}

/* ************************BLOG DETIL PAGE SECTION************************************ */



.main-content105 {
  background-color: var(--bg2-color);

  padding: 2rem;

  border: 1px solid var(--border-color);
}

@media (max-width: 767.98px) {
  .main-content105 {
    padding: 1.5rem;
  }
}

.blog-title-wrapper105 {
  display: flex;

  align-items: flex-start;

  gap: 0.75rem;

  margin-bottom: 10px;
}

.blog-title-wrapper105 .title-icon105 {
  flex-shrink: 0;

  width: 24px;

  height: 24px;

  margin-top: 0.5rem;
}

.blog-title105 {
  font-size: 2.25rem;

  font-weight: 900;

  color: var(--heading-color);

  line-height: 1.3;
}

.blog-image105 {
  width: 100%;

  aspect-ratio: 16 / 9;

  object-fit: cover;

  border-radius: var(--radius);

  margin-bottom: 2rem;
}

.post-dateX {
  font-size: var(--para-size);

  color: var(--para-color);

  font-weight: 600;
}

.blog-body105 h2,
.blog-body105 h3,
.blog-body105 h4 {
  font-size: var(--heading-size);

  font-weight: 600;

  color: var(--heading-color);

  margin-top: 1rem;
}

/* --- NEW/MODIFIED STYLE FOR THE DATE --- */

.blog-meta105 {
  /* margin-top: 1rem;

            margin-bottom: 1rem; */

  color: var(--primary-color);

  font-size: var(--para-size);

  display: flex;

  font-weight: 700;

  align-items: center;

  gap: 0.5rem;
}

.blog-meta105 .meta-icon {
  width: 16px;

  height: 16px;
}

.blog-body105 p {
  color: var(--para-color);

  line-height: 1.6;

  font-size: var(--para-size);
}

.blog-body105 strong {
  color: var(--heading-color);

  font-weight: 700;
}

/* --- Sidebar --- */

.sidebar105 .widget105 {
  background-color: var(--white);

  padding: 1.5rem;

  border: 1px solid var(--border-color);
}

.widget-title105 {
  font-size: var(--heading-size);

  font-weight: 600;

  color: var(--heading-color);

  padding-bottom: 0.75rem;

  margin-bottom: 10px;

  border-bottom: 1px solid var(--primary-color);
}

.related-blogs-list105 {
  list-style: none;

  padding: 0;

  margin: 0;
}

.related-post-item105 {
  display: flex;

  gap: 1rem;
}

.related-post-item105:not(:last-child) {
  margin-bottom: 1rem;
}

.related-post-item105 img {
  aspect-ratio: 4 / 3;

  width: 100%;

  height: auto;

  border-radius: var(--radius);
}

.related-post-item105 .post-title105 {
  font-weight: 700;

  line-height: 1.6;

  font-size: var(--para-size);
}

.related-post-item105 .post-title105 a {
  text-decoration: none;

  color: var(--heading-color);

  transition: color 0.3s ease;
}

.related-post-item105 .post-title105 a:hover {
  color: var(--hover-color2);
}

.related-post-item105 .post-excerpt105 {
  font-size: 14px;

  color: var(--para-color);

  line-height: 1.5;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

/* *************************project section code******************** */

.project-gallery-section {
  background-color: var(--bg1-color);
}

.section-header h2 {
  font-size: 2.5rem;

  font-weight: 700;

  margin-bottom: 1rem;
}

.project-card {
  display: block;

  text-decoration: none;

  border-radius: var(--radius);

  padding: 0.2rem;

  background-color: var(--border-light);

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);

  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;

  position: relative;

  overflow: hidden;

  height: 100%;
}

.project-card img {
  width: 100%;

  height: auto;

  aspect-ratio: 1/1;

  object-fit: cover;
}

.project-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-hover-title {
  position: absolute;

  bottom: 0;

  left: 0;

  width: 100%;

  background: linear-gradient(to top, rgb(211 66 11), #00000099);

  color: var(--white);

  padding: 2rem 1rem 1rem 1rem;

  text-align: center;

  opacity: 0;

  transform: translateY(100%);

  transition: opacity 0.3s ease, transform 0.3s ease;
}

.card-hover-title .galleryhead {
  margin: 0;

  font-size: var(--heading-size);

  color: var(--white);

  font-weight: 600;
}

/* Show the title on hover */

.project-card:hover .card-hover-title {
  opacity: 1;

  transform: translateY(0);
}

/* ****************************DESIGN AND TESTING SECTION******************************* */

/* *********************************image_top_section****************************** */

.designs-section-110 {
  background-color: var(--bg1-color);
}

.section-header-110 .heading-110 {
  font-weight: 700;

  font-size: var(--title-size);

  color: var(--primary-color);

  text-transform: uppercase;

  letter-spacing: 1px;
}

.section-header-110 .subheading-110 {
  max-width: 600px;

  color: var(--para-color);

  font-size: var(--para-size);

  line-height: 1.6;
}

.design-card-110 {
  /* background-color: var(--white); */

  /* border: 1px solid var(--secondary-color); */

  border-radius: var(--radius);

  padding: 2rem;

  text-align: center;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

  transition: transform 0.3s ease, box-shadow 0.3s ease;

  height: 100%;
  /* Ensures all cards in a row have the same height */
}

.design-card-110:hover {
  transform: translateY(-8px);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.design-card-110 .card-image-110 {
  aspect-ratio: 2/1;

  width: 100%;

  height: auto;

  object-fit: contain;

  margin-bottom: 1rem;
}

.design-card-110 .card-title-110 {
  font-size: var(--heading-size);

  font-weight: 600;

  color: var(--heading-color);

  margin-bottom: 0.5rem;
}

.design-card-110 .card-text-110 {
  font-size: var(--para-size);

  color: var(--para-color);

  line-height: 1.6;
}

/* ************video and text section code************************ */

.video-section {
  background: var(--bg2-color);
}

.video-container {
  position: relative;

  width: 100%;

  /* Maintain 16:9 aspect ratio for responsive video */

  padding-bottom: 56.25%;

  height: 0;

  overflow: hidden;

  border-radius: var(--radius);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

  border-radius: var(--radius);
}

.video-description-section h2,
.video-description-section h3,
.video-description-section h4 {
  font-size: var(--heading-size);

  font-weight: 600;

  color: var(--heading-color);

  line-height: 1.6;
}

.video-description-section p {
  font-size: var(--para-size);

  color: var(--para-color);

  line-height: 1.6;

  text-align: justify;
}

@media (max-width: 991.98px) {
  .video-description {
    margin-top: 2rem;
  }
}

/* *****************************content section code value****************************** */

.content-section {
  background: var(--bg2-color);
}

.section-intro {
  font-size: var(--para-size);

  line-height: 1.6;

  color: var(--para-color);

  max-width: 800px;

  margin-left: auto;

  margin-right: auto;
}

.supplier-card {
  background-color: var(--bg2-color);

  border: 1px solid var(--border-color);

  border-left: 4px solid var(--primary-color);

  padding: 2rem;

  border-radius: 0.5rem;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.design-header span {
  display: inline-block;

  background-color: var(--primary-color);

  color: var(--white);

  padding: 0.5rem 1.25rem;

  border-radius: 50rem;

  font-size: 0.8rem;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.5px;

  margin-bottom: 1.5rem;
}

.headidesgin {
  font-weight: 700;

  font-size: var(--heading2-size);

  color: var(--heading-color);

  margin-bottom: 1.5rem;
}

.supplier-card h2 {
  font-size: var(--heading-size);

  color: var(--heading-color);

  font-weight: 600;

  margin-bottom: 1rem;
}

.supplier-detail {
  display: flex;

  align-items: flex-start;

  gap: 1rem;

  font-size: var(--para-size);

  color: var(--para-color);
}

.supplier-detail:not(:last-child) {
  margin-bottom: 1rem;
}

.supplier-detail svg {
  /* font-size: 1.25rem; */

  margin-top: 0.2rem;

  color: var(--primary-color);
}

.supplier-detail strong {
  color: var(--heading-color);
}

.supplier-detail ul {
  padding-left: 1.25rem;

  margin-bottom: 0;
}

.desginpara {
  font-size: var(--para-size);

  color: var(--para-color);

  line-height: 1.6;

  text-align: justify;
}

/* *******************contact us section code**************************** */

.contact-section-115 {
  background: var(--bg1-color);
}

.contact-content-115 .heading-115 {
  font-size: var(--title-size);

  font-weight: 600;

  color: var(--heading-color);

  line-height: 1.6;

  margin-bottom: 1rem;
}

.contact-content-115 .description-115 {
  color: var(--para-color);

  font-size: var(--para-size);

  margin-bottom: 2rem;

  line-height: 1.8;
}

.contact-card-115 {
  border: 1px solid var(--primary-color);

  padding: 2rem;

  border-radius: var(--radius);

  height: 100%;
}

.contact-card-115 svg {
  color: var(--primary-color);

  margin-bottom: 1rem;
}

.contact-card-115 .card-title-115 {
  font-size: var(--heading-size);

  font-weight: 600;

  color: var(--heading-color);

  margin-bottom: 1rem;
}

.contact-card-115 .card-text-115 {
  color: var(--primary-color);

  line-height: 1.8;

  font-size: var(--para-size);
}

/* --- Form Wrapper --- */

.form-wrapper-115 {
  background-color: var(--primary-color);

  padding: 2.5rem;

  border-radius: var(--radius);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-wrapper-115 .form-title-115 {
  font-size: var(--heading2-size);

  font-weight: 600;

  color: var(--white);

  margin-bottom: 2rem;
}

.form-control-115 {
  /* background-color: var(--secondary-color); */

  /* border: 1px solid var(--secondary-color); */

  padding: 0.85rem 1.1rem;

  transition: border-color 0.3s ease;
}

.form-control:focus {
  background-color: var(--bg2-color);

  border-color: var(--secondary-color);

  box-shadow: none;
}

.btn-submit-115 {
  background-color: var(--secondary-color);

  color: var(--white);

  border: none;

  padding: 0.85rem 2rem;

  font-weight: 500;

  border-radius: var(--radius);

  transition: background-color 0.3s ease;
}

.btn-submit-115:hover {
  background-color: var(--bg2-color);

  color: var(--hover-color2);
}

@media (max-width: 991.98px) {
  .form-wrapper-115 {
    margin-top: 3rem;
  }
}

/* --- Map Section --- */

.map-section-115 iframe {
  width: 100%;

  height: 450px;

  border: 0;

  display: block;
  /* Removes tiny space below iframe */
}

/*************************** privacy policy content********************** */

/* privcy policy page code */

.privacy-container {
  background-color: var(--bg2-color);
}

.heading-1 {
  font-size: var(--heading2-size);

  color: var(--heading-color);

  margin-bottom: 20px;

  font-weight: 600;
}

.privacy-container a{
  text-decoration: none;
}

.privacy-container h1,
.privacy-container h2,
.privacy-container h3,
.privacy-container h4 {
  font-size: var(--heading-size);

  font-weight: 600;

  color: var(--heading-color);
}

.privacy-container p,
.privacy-container li,
.privacy-container ul {
  font-size: var(--para-size);

  color: var(--para-color);
}

.privacy-container a {
  font-size: var(--para-size);

  color: var(--primary-color);
}

.privacy-box {
  padding: 20px;

  background: var(--bg1-color);
}

/* *****************************siteMap Section code**************************** */

/* ============================

   Sitemap Section Styling

============================ */

.sitemap-section {
  background: var(--bg2-color);
}

.sitemapbox {
  padding: 20px;

  background: var(--bg1-color);
}

.sitemap-section .sitempheading {
  font-size: var(--heading2-size);

  font-weight: 600;

  margin-bottom: 20px;

  border-bottom: 3px solid var(--secondary-color);

  display: inline-block;

  padding-bottom: 5px;

  color: var(--header-color);
}

/* Root UL */

.sitemapcon {
  list-style: none;

  padding-left: 0;

  margin: 0;

  font-size: var(--para-size);
}

/* Parent LI */

.sitemapcon > li {
  position: relative;

  margin: 10px 0;

  padding-left: 20px;
}

/* Add vertical line before items */

.sitemapcon > li::before {
  content: "";

  position: absolute;

  top: 0;

  left: 8px;

  bottom: 0;

  border-left: 2px solid var(--primary-color);
}

/* Horizontal line for each item */

.sitemapcon > li::after {
  content: "";

  position: absolute;

  top: 12px;

  left: 8px;

  width: 10px;

  border-top: 2px solid var(--primary-color);
}

/* Links */

.sitemapcon a {
  text-decoration: none;

  color: var(--para-color);

  font-size: var(--para-size);

  transition: color 0.2s;
}

.sitemapcon a:hover {
  color: var(--hover-color2);
}

/* Subcategories */

.sitemapsubcat {
  list-style: none;

  margin: 5px 0 5px 20px;

  padding-left: 15px;

  border-left: 2px solid var(--secondary-color);
}

.sitemapsubcat li {
  position: relative;

  margin: 10px 0;

  padding-left: 15px;
}

.sitemapsubcat li::before {
  content: "";

  position: absolute;

  top: 12px;

  left: -15px;

  width: 15px;

  border-top: 2px solid var(--secondary-color);
}

/* Responsive adjustments */

@media (max-width: 767px) {
  .sitemap-section {
    padding: 20px 10px;
  }

  .sitemap-section .you_may {
    font-size: 16px;
  }

  .sitemapcon {
    font-size: 13px;
  }
}

/* ********************market area section code ******************** */

/* Section Wrapper */

.market-area {
  background: var(--bg2-color);
}

/* Heading */

.Marektheading {
  text-align: center;

  margin-bottom: 30px;
}

.Marektheading {
  font-size: var(--title-size);

  font-weight: 600;

  color: var(--heading-color);
}

/* Sub-headings (States & Cities titles) */

.market-area h2 {
  font-size: var(--heading2-size);

  font-weight: 600;

  margin: 30px 0 15px;

  color: var(--heading-color);

  border-left: 5px solid var(--primary-color);

  padding-left: 10px;
}

/* Market Cards */

.marketcard {
  display: block;

  text-align: center;

  padding: 12px 10px;

  border-radius: var(--radius);

  background: var(--bg1-color);

  box-shadow: 0 4px 10px rgba(59, 59, 59, 0.1);

  font-size: 16px;

  /* font-weight: 500; */

  color: var(--secondary-color);

  text-decoration: none;

  transition: all 0.3s ease;
}

/* Hover effect */

.marketcard:hover {
  /* background: var(--); */

  color: var(--hover-color2);

  transform: translateY(-3px);

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ********************certifcation section code***************************** */

.certifications-section {
  background-color: var(--bg1-color);
}

.certificate-card {
  display: block;

  text-decoration: none;

  border-radius: var(--radius);

  padding: 0.2rem;

  background-color: var(--border-light);

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);

  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;

  position: relative;
  /* Required for the overlay */

  overflow: hidden;
}

.certificate-card img {
  width: 100%;

  height: auto;

  aspect-ratio: 1 / 1.414;
  /* A4 aspect ratio */

  object-fit: cover;
}

.certificate-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* infra section code*********************** */

.video-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-grid {
  margin-top: 40px;
}

.infra-card {
  display: block;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.infra-card:hover {
  transform: translateY(-5px);
}

/* Ensure images fill the box perfectly */
.infra-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* Overlay effect on hover (Optional polish) */
.infra-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  opacity: 0;
  transition: 0.3s;
}

.infra-card:hover::after {
  opacity: 1;
}

/* our approvers new page section ***********************/
/* Main card */
.logo-card {
  background: var(--bg2-color);
  border-radius: var(--radius);
  padding: 2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover effect (optional) */
.logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* 2:1 ratio container */
.logo-card-img-wrap {
  aspect-ratio: 2 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Image styling */
.logo-card-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}




/* ********************certifcation section code***************************** */

.certifications-section {
  background-color: var(--bg2-color);
}

.certificate-card {
  display: block;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 0.2rem;
  background-color: var(--border-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  position: relative;
  /* Required for the overlay */
  overflow: hidden;
}

.certificate-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1.414;
  object-fit: cover;
}

.certificate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-hover-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
  color: var(--light-color);
  padding: 2rem 1rem 1rem 1rem;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.card-hover-title .galleryhead {
  margin: 0;
  font-size: var(--heading-size);
  color: var(--light-color);
  font-weight: 600;
}

/* Show the title on hover */

.certificate-card:hover .card-hover-title {
  opacity: 1;
  transform: translateY(0);
}


/* ************gallery section code ************************ */
.Gallery-section {
  background-color: var(--bg1-color);
}

.Gallery-card {
  display: block;
  width: 100%;
  height: auto;

  
  text-decoration: none;

  border-radius: var(--radius);

  padding: 0.1rem;

  background-color: var(--border-light);

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);

  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;

  position: relative;


  overflow: hidden;
}

.Gallery-card img {
  width: 100%;

  height: auto;
  aspect-ratio: 1 / 1;
  /* A4 aspect ratio */

  object-fit: cover;
}

.Gallery-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}


.youtube-player .youtube-thumbnail {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  background: transparent;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px 0px;
}

.youtube-player img,
.youtube-player iframe {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  width: 100%;
  display: block;
  transform: scale(1.01);
}

.youtube-player .play {
  height: 60px;
  width: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  position: absolute;
  background: url(../images/play-1.png) no-repeat;
  background-size: contain;
  background-position: center;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  /* animation: 1.25s cubic-bezier(.66, 0, 0, 1) infinite pulse; */
  transition: 0.3s ease;
}

.youtube-player:hover .play {
  animation: none;
  transform: translate(-50%, -50%) scale(1.1);
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 35px rgba(232, 76, 61, 0);
  }
}

.youtube-player .tt {
  font-size: 14px;
  margin-top: 10px;
  color: var(--text-color);
  text-align: center;
  font-weight: 600;
}

.youtube-player img {
  width: 100%;
}

.reels-vid iframe,
.youtube-player.reel-player img {
  aspect-ratio: 35 / 62;
}


/* **************breadcome section code********************* */

.img-breadcum {
  padding: 100px 0 90px;

  text-align: center;

  position: relative;

  z-index: 1;
}

.img-breadcum img {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

  z-index: -2;
}

.img-breadcum::before {
  background: linear-gradient(180deg, rgba(22, 29, 37, 0.5), rgb(22, 29, 37));

  content: "";

  height: 100%;

  left: 0;

  opacity: 0.9;

  position: absolute;

  top: 0;

  width: 100%;

  z-index: -1;

  pointer-events: none;
}

.img-breadcum .sub-tt {
  color: var(--white);

  font-weight: 400;

  font-size: 16px;

  margin-bottom: 10px;

  background-color: var(--primary-color);

  border-radius: var(--radius);

  padding: 6px 9px;

  display: inline-block;
}

.img-breadcum .tt {
  font-weight: 500;

  font-size: 25px;

  line-height: 1.3;

  letter-spacing: normal;

  margin-bottom: 0px;

  color: var(--white);

  max-width: 650px;

  margin: 0 auto;

  text-transform: capitalize;

  /* text-shadow: 1px 1px 4px rgb(0 0 0); */
}

.img-breadcum p {
  color: var(--white);

  margin-top: 12px;

  font-size: 17px;

  margin-bottom: 0;
}

.img-breadcum.img-breadcum2 {
  text-align: left;

  padding: 60px 0;
}

.breadcum-sec {
  background-color: var(--bg1-color);

  padding: 7px 0;

  border-bottom: 1px solid #e1e1e2;
}

.breadcum-sec ul {
  display: flex;

  gap: 0 18px;

  flex-wrap: wrap;

  list-style: none;

  margin: 0;

  padding: 0;
}

.breadcum-sec ul li {
  color: var(--heading-color);

  font-size: 14px;

  font-weight: 400;

  letter-spacing: normal;

  padding: 0;

  position: relative;
}

.breadcum-sec ul li a {
  color: var(--heading-color);

  text-decoration: none;
}

.breadcum-sec ul li a:hover {
  color: var(--hover-color2);
}

.breadcum-sec ul li a::before {
  content: "/";

  position: absolute;

  top: 1px;

  right: -11px;

  font-size: 14px;

  color: var(--heading-color);
}

/* .breadcum-sec ul li li{

    color: var(--primary-color);

} */

.img-breadcum {
  padding: 70px 0 60px;
}

/* ***********************************popup code **************************** */

.enquiry-dialog {
  max-width: 350px;
}

.iti__country-list {
  max-width: 280px;
}

.enquiry-card {
  border: none;

  border-radius: 12px;

  padding: 12px 16px 20px;

  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.modal.fade .modal-dialog {
  transform: translate(0, 0);
}

.modal-backdrop.show {
  opacity: 0.35;
}

.modal-title {
  color: var(--header-color);
}

.enquiry-input:focus {
  border-color: var(--text1-color);

  box-shadow: 0 0 0 0.2rem rgba(231, 237, 107, 0.08);
}

.enquiry-submit {
  background: var(--btn-color);

  color: var(--white);

  border-radius: var(--radius);

  padding: 4px 8px;
}

.enquiry-submit:hover,
.enquiry-submit:focus {
  background: var(--primary-color);

  border-color: var(--white);
}

textarea.enquiry-input {
  resize: vertical;
}

.enquiry-input:focus {
  border-color: #cfd6e3;

  box-shadow: 0 0 0 0.2rem rgba(217, 253, 13, 0.08);
}

.enquiry-submit {
  background: var(--btn-color);

  color: var(--white);

  font-size: 1rem;
}

.enquiry-submit:hover,
.enquiry-submit:focus {
  background: var(--primary-color);

  color: var(--white);
}

/* Product image inside modal */

.modal-body .product-img {
  width: 100%;

  /* keep aspect ratio */

  height: 100%;

  /* keep aspect ratio */

  object-fit: cover;

  /* ensures image doesn’t stretch */

  aspect-ratio: 1/1;
}

.popupheading {
  font-size: 24px;

  font-weight: 600;

  color: var(--heading-color);
}

/* sticky icon section code */

/* ===== Floating Action Buttons (FAB) ===== */

.fab-stack {
  --fab-size: 52px;

  --fab-gap: 12px;

  position: fixed;

  right: calc(35px + env(safe-area-inset-right, 0));

  bottom: calc(30px + env(safe-area-inset-bottom, 0));

  display: flex;

  flex-direction: column;

  gap: var(--fab-gap);

  z-index: 1040;
}

.fab-btn {
  width: var(--fab-size);

  height: var(--fab-size);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 0;

  color: var(--white);

  background-color: var(--header-color2);

  cursor: pointer;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);

  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;

  outline: none;
}

.business-enq {
  position: fixed;

  bottom: 35px;

  right: 20px;

  font-weight: 500;

  z-index: 9;

  border: 0;

  outline: 0;

  background-color: var(--primary-color);

  color: var(--white);

  font-size: 14px;

  padding: 5px;

  padding-right: 15px;

  border-radius: 24px;

  transition: 0.2s ease-in-out;

  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.business-enq:hover {
  transform: scale(1.03);
}

.business-enq .icon {
  height: 32px;

  width: 32px;

  border-radius: 100%;

  line-height: 32px;

  text-align: center;

  display: inline-block;

  background: var(--bg1-color);

  color: var(--text-color);
}

.business-enq .icon svg {
  height: 18px;

  color: var(--primary-color);

  width: 18px;
}

.form-control {
  padding: 8px 12px;

  font-size: 14px;

  border-radius: var(--radius);

  width: 100%;
}

/* Brand styles */

.fab-whatsapp {
  background: #25d366;

  border: 1px solid #25d366;
}

@media (prefers-reduced-motion: reduce) {
  .fab-btn {
    transition: none;
  }
}

@media (min-width: 992px) {
  .fab-stack {
    right: calc(24px + env(safe-area-inset-right, 0));

    bottom: calc(84px + env(safe-area-inset-bottom, 0));

    --fab-size: 56px;
  }
}

/* ===== Mobile contact bar (shown only < LG) ===== */

.contact-bar-mobile {
  position: fixed;

  left: 0;

  right: 0;

  bottom: 0;

  display: flex;

  z-index: 1040;

  /* below Bootstrap backdrop (1050), above page content */

  height: 52px;

  padding-bottom: env(safe-area-inset-bottom, 0);
}

.contact-item {
  flex: 1 1 0;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  font-weight: 500;

  font-size: 14px;

  /* background-color: var(--header-color2); */

  color: var(--white);

  text-decoration: none;

  border: 0;
}

/* Colors to match your reference image */

.contact-call {
  background: var(--primary-color);

  color: var(--white);
}

/* peach/tan */

.contact-wa {
  background: #25d366;

  color: var(--white);
}

/* WhatsApp green */

.contact-enq {
  background: var(--secondary-color);

  color: var(--white);
}

/* dark slate */

.ci-icon {
  display: inline-flex;
}

.ci-label {
  line-height: 1;
}

/*/***********************sidebar section code*******************************  */

.hamburger-btn {
  border: 1px solid var(--border-light);

  border-radius: var(--radius);

  padding: 0.5rem 0.5rem;

  background: transparent;

  line-height: 1;

  transition: box-shadow 0.2s ease, transform 0.05s ease;
}

.hamburger-btn:focus {
  outline: none;

  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.hamburger-btn:active {
  transform: scale(0.98);
}

.hamburger-icon {
  width: 24px;

  height: 18px;

  position: relative;

  display: inline-block;
}

.hamburger-icon-line {
  position: absolute;

  left: 0;

  right: 0;

  height: 2px;

  background: var(--white);

  /* near-black */

  border-radius: 2px;

  transition: background 0.2s ease;
}

.hamburger-icon-line.l1 {
  top: 0;
}

.hamburger-icon-line.l2 {
  top: 8px;
}

.hamburger-icon-line.l3 {
  top: 16px;
}

/* Offcanvas width and inner spacing */

.right-popup {
  width: 420px;

  border-left: 1px solid #e6e9ef;

  background-color: var(--bg1-color) !important;
}

.right-popup-body {
  padding: 1.25rem 1.25rem 2rem 1.25rem;

  background-color: var(--bg1-color) !important;
}

/* Image style */

.popup-image {
  display: block;

  aspect-ratio: 1/1;

  width: 100%;

  height: auto;

  margin-bottom: 2.25rem;

  object-fit: cover;
}

.offcanvas-title {
  font-size: var(--heading-size);

  color: var(--primary-color);

  font-weight: 600;
}

.popup-title {
  font-weight: 600;

  font-size: var(--heading3-size);

  color: var(--heading2-color);

  margin-bottom: 20px;

  line-height: 1.6;

  text-align: center;
}

.popup-text {
  color: var(--para-color);

  /* slate-600ish */

  font-size: var(--para-size);
  text-align: justify;
  letter-spacing: 0.2px;
  margin: 10px 20px 15px;
}

.popup-subtitle {
  font-weight: 600;

  font-size: var(--heading2-size);

  color: var(--heading-color);

  margin-bottom: 1rem;

  text-align: center;
}

.iti {
  width: 100%;
}

/* Responsive width tweaks for smaller screens */

@media (max-width: 575.98px) {
  .right-popup {
    width: 100%;

    /* Use full width on very small screens */
  }
}

.iti--separate-dial-code .iti__selected-flag {
  height: 40px;
}

label {
  color: red;
}




      .feature-textC {
            color: var(--primary-color);
            
            line-height: 1.6;
           
            font-size: 1.1rem;
        }

        .feature-label {
            font-weight: 700;
            margin-right: 4px;
        }

        .feature-content {
            font-weight: 400;
        }


        .product-image-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .product-image {
          aspect-ratio: 2/1;
            width: 100%;
            height: auto;
 
        }



        .blog-section105 {
  background-color: var(--bg2-color);
}
.content-section {
  width: 100%;
}



.lab-section {
  background-color: var(--bg2-color);
}


.button-container {
  display: flex;

  flex-wrap: wrap;

  justify-content: space-evenly;
}

.aboutind {
  max-height: 438px;

  overflow: hidden;
}
.aboutind ul {
    padding-left: 0;
    margin: 0;
    margin-bottom: 10px;
    list-style: none;
}
.aboutind ul li {
    margin-bottom: 3px;
    position: relative;
    padding-left: 20px;
    display: flow-root;
}
.aboutind ul li::before {
    content: "➤";
    position: absolute;
    left: 0px;
    color: var(--primary-color);
    font-size: 15px;
    top: 1px;
}

.aboutind.expanded {
  max-height: 8000px; /* large value to fully open */
  overflow: unset;
}

.read-toggle {
  display: inline-block;

  color: var(--secondary-color);

  cursor: pointer;
  font-size: 12px;

  /* font-weight: 600; */

  margin-top: 10px;

  user-select: none;
}

.read-toggle:hover {
  color: var(--secondary-color);
}




/* product modal section code****************** */

.productmodal {
  max-width: 850px;
}

.modal-header-custom {
  color: white;

  border-bottom: none;

  background-color: var(--primary-color);

  padding: 15px 25px;
}

.modal-title {
  font-weight: 600;

  font-size: 1.2rem;
}

.btn-close-custom {
  filter: invert(1) grayscale(100%) brightness(200%);

  opacity: 1;
}

.modal-body-custom {
  background-color: var(--bg2-color);

  padding: 30px;
}

.product-display-areamodal {
  height: 100%;

  display: flex;

  flex-direction: column;

  border: 1px solid var(--border-color);

  position: relative;
}

.product-image-containermodal {
  aspect-ratio: 1 / 1;

  flex-grow: 1;

  display: flex;

  align-items: center;

  justify-content: center;
}

.product-imgmodal {
  aspect-ratio: 1 / 1;

  object-fit: cover;

  object-position: center;

  width: 100%;

  border-radius: 4px;

  overflow: hidden;
}


.abtlogo{
  background: var(--bg2-color);
}