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

html {
  scroll-behavior: smooth;
}

:root {
  /* **************font family initialization******************** */
  --font: "Yantramanav", serif;
  font-family: "Yantramanav", serif;
  /* **************font size initialization******************** */
  --radius: 1px;
  --para-size: 14px;
  --topbar-size: 16px;
  --heading-size: 18px;
  --heading2-size: 22px;
  --heading3-size: 26px;
  --title-size: 30px;
  --large-text: 40px;
  /* **********website color initilaization******************* */
  --hover-text: #fff;
  --primary-color: #183783;
  --secondary-color: #ff1906;
  --btn-color: #183783;
  --btn-color2: #ff1906;
  --hover-color1: #ff1906;
  --hover-color2: #183783;
  --bg1-color: #ffffff;
  --bg2-color: #f5f5f5;
  --white: #fff;
  --topbar-color: #171717;
  --para-color: #575f66;
  --heading-color: #171717;
  --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(70, 90, 238, 0.48),
    rgba(30, 30, 30, 0.95)
  );
  /* --bg2-color:#f3f3f3; */
  --overlay-color: rgba(236, 230, 255, 0.7);
  --footer-color: #181a26;
}

@media (min-width: 1300px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1230px;
  }
}

@media (min-width: 1440px) {
  .container-fluid {
    max-width: 1429px;
  }
}

/* img {

    max-width: 100%;

    width: auto;

    height: auto;

} */

.main-btn {
  padding: 12px 15px;
  color: var(--white);
  border: 1px solid var(--primary-color);
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  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);
}

.main-btn svg {
  color: var(--white) !important;
}

.main-btn2 {
  padding: 12px 15px;
  color: var(--white);
  border: 1px solid var(--btn-color2);
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  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);
}

.main-btn3:hover {
  background: var(--white);
  border: 1px solid var(--white);
  color: var(--hover-color1);
}

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

.read-more-btn {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.read-more-btn svg {
  color: var(--secondary-color);
}

.read-more-btn:hover {
  color: var(--hover-color1);
}

.social {
  display: flex;
  justify-content: end;
  list-style: none;
  gap: 30px;
  margin-bottom: 0;
  padding: 0;
  /* background-color: var(--secondary-color); */
}

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

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

header {
  position: relative;
}

.mid-bar.stricky-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  /* background-color: #FF5E15 !important; */
  background: var(--bg2-color);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  animation-name: fadeInDown;
  animation-duration: 0.6s;
  animation-fill-mode: both;
}

.mid-bar {
  border-bottom: 1px solid rgb(219, 214, 214, 1);
  padding: 8px 0;
}

/* .mid-bar:before {

    position: absolute;

    content: "";

    left: -68px;

    top: 0;

    height: 100%;

    width: 27%;

    background: var(--secondary-color);





    transform: skew(27deg);

    z-index: -1;

} */
.g-recaptcha {
  transform: scale(0.95);
  transform-origin: 0 0;
  margin-top: 2px;
}
.top-bar {
  background-color: var(--topbar-color);
  padding: 12px 0;
}

.top-bar p {
  font-size: var(--topbar-size);
  margin-bottom: 0;
  color: var(--white);
  font-weight: 500;
  margin-left: 2px;
}

.top-bar p svg {
  margin-top: -2px;
  color: var(--white);
}

.top-bar p a {
  color: var(--white);
  text-decoration: none;
}

.top-bar p a:hover {
  color: var(--hover-color1);
}

.top-bar p:hover {
  color: var(--hover-color1);
}

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

.search-bx {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  padding: 5px;
  padding-left: 13px;
}

.search-bx input {
  width: 100%;
  max-width: 100%;
  outline: none;
  border: none;
  color: var(--text-color);
  font-weight: 400;
  height: 20px;
  font-size: 14px;
  min-width: 220px;
}

.search-bx button {
  outline: none;
  border: none;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: var(--para-color);
  background: transparent;
}

.menubar {
  position: relative;
  background-color: var(--bg1-color);
}

.menubar .logo {
  display: none;
}

.menubar.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: 1s;
  animation-fill-mode: both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

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

.navigation .navbar button {
  width: 40px;
  height: 40px;
  background: var(--bg2-color);
  border: 0;
  outline: 0;
  color: var(--white);
  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: var(--primary-color);
  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;
  text-align: center;
  display: block;
}

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

.navigation .menu ul li a {
  padding: 23px 11px;
  display: block;
  color: var(--heading-color);
  transition: all 0.3s ease;
  font-size: var(--topbar-size);
  background: transparent;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
}

.navigation .menu ul li.active a,
.navigation .menu ul li:hover a {
  color: var(--hover-color1);
  background: transparent;
  text-decoration: none;
}

.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: 99;
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.4);
  background: var(--bg1-color);
  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: 250px;
}

.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: var(--hover-color1);
  background-color: var(--bg2-color);
}

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

.navigation .menu ul li ul.ls-dropdown li:hover ul.ls-dropdown li a {
  background: var(--bg2-color);
  color: var(--heading-color);
  padding: 5px 10px;
  font-size: 13px;
}

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

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

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

.navigation ul li.ls-submenu a button svg {
  width: 14px;
  height: 14px;
  color: var(--heading-color);
}

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

.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: var(--secondary-color);
}

.navigation .navbar {
  display: none;
  padding: 8px 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: 300px;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
  background: #fff;
  color: var(--para-color);
  margin: 0;
  padding: 0;
  text-align: left;
}

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

.call-now {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  /* border-right: 1px dashed var(--border-color); */
}

.call-now .icon-bx {
  min-width: 37px;
  width: 37px;
  height: 37px;
  color: white;
  background: var(--pri);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-now .con-bx {
  text-align: left;
}

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

.footer {
  color: var(--white);
  /* Background image with dark overlay */
  background: /* linear-gradient(rgba(26, 37, 60, 0.9), rgba(26, 37, 60, 0.9)), */ url("https://html.ditsolution.net/constre/constre5/assets/images/resource/footer-bg.jpg")
    no-repeat center center;
  background-size: cover;
}

.main-footer {
  /* padding: 5rem 0; */
}

.footer a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: var(--para-size);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer a:hover {
  color: var(--hover-color1);
}

.footer-about .logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-about .logo i {
  color: var(--primary-color);
}

.footer-about .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 0.25rem;
  margin-right: 0.5rem;
}

.footer-about .social-links a:hover {
  background-color: var(--hover-color1);
  border-color: var(--hover-color1);
  color: var(--white);
}

.widget-title {
  font-size: var(--heading2-size);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  border-radius: var(--radius);
  background-color: var(--secondary-color);
}

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

.logo-icon img {
  max-width: 250px;
  width: auto;
  max-height: 60px;
  height: auto;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

/* Custom Latest Products Styling */

.latest-product-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.latest-product-item:not(:last-child) {
  margin-bottom: 1rem;
}

.latest-product-item img {
  aspect-ratio: 1/1;
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.latest-product-item .product-info {
  font-size: var(--para-size);
  line-height: 1.5;
  color: var(--white);
}

.latest-product-item .product-info:hover {
  color: var(--hover-color1);
}

.sub-footer {
  background-color: #cb0f00;
  padding: 1.5rem 0;
}

.sub-footer .footer-nav a {
  margin-left: 1.5rem;
}

.copyright-text {
  color: var(--white);
  font-size: var(--para-size);
}

.footer-nav a {
  color: var(--white);
  font-size: var(--para-size);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--hover-color2);
  text-decoration: underline;
  font-weight: 600;
}

/* Popular Searches */

.foot08-head {
  color: var(--white);
  font-size: var(--heading2-size);
  font-weight: 600;
  margin-bottom: 10px;
}

.foot08-popular {
  margin-top: 20px;
}

.foot08-popular-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 6px;
  font-size: 14px;
}

.foot08-popular-list li::after {
  /* content: "|"; */
  margin-left: 12px;
  color: var(--white);
}

.foot08-popular-list li:last-child::after {
  content: "";
}

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

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

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

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

.cta-section {
  background-color: var(--primary-color);
}

.cta-section .cta-heading01 {
  font-size: var(--heading3-size);
  color: var(--white);
  line-height: 1.3;
}

/* Button styling */

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 99;
  /* background-color: #0d6efd; */
  color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  /* background-color: var(--secondary-color); */
  display: none;
  /* Hidden by default */
  transition: all 0.3s ease;
}

#scrollTopBtn img {
  width: 60px;
  height: 60px;
}

#scrollTopBtn:hover {
  transform: translateY(-3px);
}

.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 20s linear infinite;
}

/* Keyframes: move text fully out, then restart cleanly */
@keyframes marquee {
  0% {
    transform: translateX(100%); /* start from right edge */
  }
  100% {
    transform: translateX(-100%); /* move completely out on left */
  }
}

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

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

.eyebrow-section {
  color: var(--secondary-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;
}

.heading-text {
  font-size: var(--title-size);
  font-weight: 600;
  color: var(--heading-color);
}

.heading-underline {
  height: 4px;
  width: 80px;
  border-radius: 2px;
  background: var(--secondary-color);
}

.leadsure {
  padding: 56px 0;
}

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

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

.leadsuresubheading {
  font-weight: 600;
  font-size: var(--heading-size);
  color: var(--heading-color);
}

.zis {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.zis2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: var(--para-size);
  color: var(--para-color);
  line-height: 1.6;
}

.section-title {
  font-weight: 600;
  font-size: clamp(26px, 3.6vw, 30px);
  line-height: 1;
  color: var(--heading-color);
  text-align: center;
  letter-spacing: 0.2px;
  margin: 4px 0 30px;
}

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

.heading-text {
  font-size: var(--title-size);
  font-weight: 600;
  color: var(--heading-color);
}

main,
main img {
  overflow: hidden;
  display: block;
  width: 100%;
}

/* #carouselExampleAutoplaying img {
    aspect-ratio: 1920 / 700;
} */

.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(--pri);
  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(--pri);
  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******************* */

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

.aboutfont h1 {
  color: var(--heading-color);
  /* Dark Heading Color */
  font-weight: 700;
  font-size: var(--title-size);
  line-height: 1.3;
}

.aboutfont p {
  color: var(--para-color);
  font-size: var(--para-size);
}

/* Full-size background image + gradient overlay + bounce */

.aboutsection::before {
  aspect-ratio: 2/1;
  content: "";
  position: absolute;
  inset: 0;
  /* full cover */
  background-image: url("../images/float.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: bounceY 4s ease-in-out infinite;
  z-index: 0;
  top: 10%;
  left: 65%;
  opacity: 0.1;
}

/* Ensure content stays above the background */

/* .aboutsection .container {

  position: relative;

  z-index: 1;

} */

@keyframes bounceY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
    /* move upward */
  }
}

.hero-about-image {
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
}

.hero-about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Custom styled button to match the purple theme */

.btn-custom-purple {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
}

.btn-custom-purple:hover {
  background-color: var(--hover-color);
  border-color: var(--hover-color);
  color: var(--hover-text);
}

/* ***********************matrix section code************************** */

.stats-section {
  position: relative;
  background: var(--dark-overlay-gradient),
    url("https://media.istockphoto.com/id/959308332/photo/industrial-pipes-and-engine.jpg?s=612x612&w=0&k=20&c=WP_KOo1YpbNir1I1gwSqFmOqIamkVwAJ5dSch6yrPrc=")
      no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  /* Creates a nice parallax effect */
}

.stat-item {
  text-align: center;
}

@media (max-width: 767.98px) {
  .stat-item {
    margin-bottom: 2.5rem;
  }
}

.stat-number {
  font-size: 3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3.5rem;
  /* same visual height as old number */
}

.stat-img {
  aspect-ratio: 1/1;
  height: 100%;
  width: auto;
  object-fit: contain;
}

.stat-label {
  font-size: var(--heading-size);
  color: var(--white);
}

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

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

.service-card {
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  
}



.card-image {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  /* Fixed height for consistent card appearance */
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  opacity: 0.4;
  transform: translateY(-100%);
  /* Start off-screen above */
  transition: transform 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card:hover .image-overlay {
  transform: translateY(0);
  /* Slide down on hover */
}

.overlay-text {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  opacity: 0;
  /* Hidden by default */
  transition: opacity 0.3s ease 0.2s;
  /* Delay fade-in slightly */
}

.service-card:hover .overlay-text {
  opacity: 1;
  /* Show on hover */
}

.card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-color: var(--bg2-color);
  /* Allows body to take up remaining space */
}

.bloghead:hover {
  color: var(--hover-color1);
  cursor: pointer;
}

.card-body .leadsuresubheading:hover {
  color: var(--secondary-color);
  cursor: pointer;
}

.card-body .leadsurepara {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-body .leadsuresubheading {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bloghead {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-text-wrapperind {
  flex-grow: 1;
  /* margin-bottom: 1rem; */
}

.card-body svg {
  color: var(--secondary-color);
}

/* *****************ENQIRY FROM SECTION CODE******************* */

.roof-solutions-section {
  display: flex;
  min-height: 80vh;
  background-color: var(--primary-color);
  margin: 0;
}

.left-panel {
  background-color: var(--secondary-color);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 3rem 0;
}

.form-overlay {
  background-color: var(--secondary-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 10;
  width: 90%;
  z-index: 1;
  padding: 2rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
}

.form-title {
  color: var(--white);
  font-size: var(--heading3-size);
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: left;
}

/* .form-control {

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

    border: none;

    border-radius: var(--radius);

    padding: 0.9rem 1.2rem;

    color: var(--primary-color);

    margin-bottom: 1.25rem;

} */

.form-control::placeholder {
  color: var(--primary-color);
  opacity: 1;
}

.right-panel {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5rem 6rem 5rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.headingformsection {
  font-size: var(--title-size);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.main-description {
  margin-bottom: 2.5rem;
  max-width: 550px;
  color: var(--white);
}

.feature-boxA:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--secondary-color);
  border-radius: 4px 0 0 4px;
  transition: 0.5s;
  z-index: -1;
}

.feature-boxA {
  padding: 32px 35px 33px;
  border-radius: 4px;
  margin-top: 30px;
  background-color: var(--bg1-color);
  position: relative;
  z-index: 1;
}

.feature-boxA svg {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-boxA:hover svg {
  color: var(--hover-text);
  transform: scale(1.1);
}

.feature-boxA:hover:before {
  width: 100%;
  border-radius: 4px;
}

.feature-boxA .labelA {
  color: var(--primary-color);
  font-size: var(--heading-size);
  font-weight: 500;
  margin-bottom: 0;
}

.feature-boxA:hover .labelA {
  color: var(--hover-text);
  /* changes label color */
}

.feature-boxA:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--secondary-color);
  border-radius: 4px 0 0 4px;
  transition: 0.5s;
  z-index: -1;
}

@media (max-width: 1199.98px) {
  .form-overlay {
    left: 45%;
    width: 75%;
    padding: 3rem 1.5rem 3rem 4rem;
  }
  .form-content {
    max-width: 280px;
    padding-right: 1.5rem;
  }
  .right-panel {
    padding: 4rem 2rem 4rem 4rem;
  }
}

@media (max-width: 991.98px) {
  .roof-solutions-section {
    flex-direction: column;
  }
  .left-panel,
  .right-panel {
    width: 100% !important;
    min-height: auto;
  }
  .left-panel {
    padding: 0;
  }
  .form-overlay {
    position: static;
    transform: none;
    width: 100%;
    left: 0;
    top: 0;
    padding: 3rem 2rem;
    border-radius: 0;
  }
  .form-content {
    max-width: 100%;
    margin: 0 auto;
    padding-right: 0;
  }
  .form-title {
    text-align: center;
  }
  .right-panel {
    padding: 3rem 2rem;
  }
  .main-heading {
    font-size: 2rem;
    text-align: center;
    max-width: none;
  }
  .main-description {
    text-align: center;
    max-width: none;
  }
  .contact-label {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .right-panel {
    padding: 2.5rem 1.5rem;
  }
  .feature-box {
    padding: 1.25rem;
  }
}

/* ********************************testimonial section code************************* */

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

.testi-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Left Content */

.testi-left {
  flex: 0 0 40%;
}

.testi-left .quote-icon svg {
  color: var(--primary-color);
}

.testimonial-title {
  font-size: var(--large-text);
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
  line-height: 1.2;
}

/* Swiper Container */

.swiper {
  flex: 0 0 55%;
  position: relative;
}

.swiper-slide {
  background: var(--bg2-color);
  border-radius: var(--radius);
  padding: 30px;
  box-sizing: border-box;
  min-height: 300px;
  position: relative;
}

.testi-author {
  display: flex;
  align-items: center;
  margin-top: 25px;
  gap: 15px;
}

.testi-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.swiper-slide .leadsurepara {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Swiper Nav Buttons */

.swiper-button-next,
.swiper-button-prev {
  background: var(--secondary-color);
  color: var(--white);
  width: 45px;
  height: 45px;
  border-radius: 0;
  position: absolute;
  bottom: 10px;
  top: auto;
  transform: translateY(18%);
  transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--secondary-color);
}

.swiper-button-next {
  right: calc(50% - 50px);
}

.swiper-button-prev {
  left: calc(50% - 50px);
}

/* Responsive */

@media (max-width: 992px) {
  .testi-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .swiper {
    width: 100%;
  }
}

/* *********************seo content section code **********************/

/* ************************************img + scrollable content*************************************** */

.heroTwo {
  background: url("../images/scroll.webp") no-repeat center center/cover;
  position: relative;
}

.heroTwo::before {
  content: "";
  position: absolute;
  inset: 0;
  /* dark overlay */
}

.heroSection {
  display: flex;
  height: 100%;
  max-height: 550px;
  min-height: 350px;
  position: relative;
  z-index: 2;
}

/* LEFT COLUMN (Scrollable Content Box) */

.leftCol {
  flex: 1;
  color: var(--para-color);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 20px auto;
  max-width: 1230px;
  border-radius: var(--radius);
}

.scrollContent {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 16px;
  scrollbar-width: none;
  background-color: rgba(24, 55, 131, 0.8);
}

.scrollArea h2,
.scrollArea h3,
.scrollArea h4 {
  font-size: var(--heading-size);
  color: var(--light-color);
}

.scrollArea p,
.scrollArea li {
  font-size: var(--para-size);
  line-height: 1.6;
  color: var(--white);
  text-align: left;
}

.cmTitle {
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0 10px;
  color: var(--text-color);
}

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

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

.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card-link:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.blog-card {
  background-color: var(--bg1-color);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
}

.card-image-wrapper {
  overflow: hidden;
}

.card-imageB {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card-link:hover .card-imageB {
  transform: scale(1.05);
  width: 100%;
  height: auto;
}

.card-content {
  padding: 1.5rem;
}

.card-meta {
  font-size: var(--para-size);
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.card-meta svg {
  color: var(--secondary-color);
  margin-right: 0.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.blog-card-link:hover .card-title {
  color: var(--hover-color1);
}

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

.faqs-area {
  background: url("../images/faqimages.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.faq-title {
  font-size: var(--title-size);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
  padding-left: 20px;
}

/*accordion*/

.faqs-area .tab_container {
  position: relative;
  margin-left: 16px;
}

.faqs-area ul.accordion {
  padding: 0;
}

.faqs-area .accordion li {
  list-style: none;
  padding: 2px 0px 30px;
  position: relative;
  z-index: 1;
}

.faqs-area .accordion li a {
  position: relative;
  width: 100%;
  display: block;
  cursor: pointer;
  font-weight: 400;
  font-size: 18px;
  color: var(--white);
  z-index: 1;
}

.faqs-area .accordion li p {
  display: none;
  font-size: 16px;
  color: var(--para-color);
  padding: 25px 0 10px 30px;
  margin: 0;
}

.faqs-area .accordion a:before {
  width: 2px;
  height: 13px;
  background: var(--bg1-color);
  position: absolute;
  right: 37px;
  content: " ";
  top: 26px;
  transform: rotate(0deg);
  transition: all 0.2s ease-in-out;
}

.faqs-area .accordion a:after {
  width: 13px;
  height: 2px;
  background: var(--bg1-color);
  position: absolute;
  right: 32px;
  content: " ";
  top: 32px;
  transition: all 0.2s ease-in-out;
}

.faqs-area .accordion a.active:after {
  transform: rotate(0deg);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background: var(--secondary-color);
  z-index: -1;
}

.faqs-area .accordion a.active:before {
  display: none;
}

.faqs-area a.active {
  color: var(--white);
  background: var(--primary-color);
}

.faqs-area a.active span {
  color: var(--secondary-color);
}

.faqs-area .accordion li a span {
  position: relative;
  z-index: 1;
  font-size: var(--heading-size);
  color: var(--white);
  font-weight: 500;
}

.faqs-area .accordion li a span:after {
  position: absolute;
  content: "";
  z-index: -1;
  left: -35px;
  top: 0px;
  width: 100%;
  height: 100%;
  /* background: url('https://html.ditsolution.net/constre/constre7/assets/images/faq-bg.png'); */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
}

/*accordion start*/

.faqs-area .faq-sectiions .dreamit-icon-list ul li i {
  width: inherit;
  height: inherit;
  line-height: inherit;
  border-radius: 0;
  background-color: inherit;
  display: inline-block;
  color: var(--secondary-color);
  font-size: 22px;
  margin-right: 8px;
  position: relative;
  top: 4px;
}

.faqs-area .study-button a i {
  transition: 0.5s;
}

.faqs-area .study-button a:hover i {
  color: var(--hover-color1);
}

/* Faq New Style */

.faqs-area .accordion li a {
  padding: 20px 20px 20px 35px;
  background: var(--primary-color);
  text-decoration: none;
  border-radius: var(--radius);
}

.faqs-area .accordion li a span:after {
  display: none;
}

.faqs-area .accordion li p {
  padding: 2px 96px 22px 35px;
  background: var(--secondary-color);
  border-radius: var(--radius);
  font-size: var(--para-size);
  line-height: 28px;
  color: var(--white);
}

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

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

/* Image styles */

.section-11 .image-box {
  /* width: 100%; */
  height: 100%;
  /* display: block; */
}

.section-11 .image-box img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
}

/* Content text */

.section-11 .content-box {
  color: var(--boxtext-color);
  font-size: 1rem;
  line-height: 1.6;
}

.section-11 .content-box .abthead01 {
  color: var(--heading-color);
  font-size: var(--heading-size);
  font-weight: 600;
  margin-bottom: 10px;
}

.abtpara01 {
  line-height: 1.6;
  text-align: justify;
}

.abtpara01 h2,
.abtpara01 h3,
.abtpara01 h4 {
  font-size: var(--heading-size);
  color: var(--heading-color);
  font-weight: 600;
}

.abtpara01 p {
  font-size: var(--para-size);
  color: var(--para-color);
  line-height: 1.6;
}

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

.features-section {
  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;
  left: 15%;
  transform: translateX(-50%);
}

.feature-card-icon svg {
  width: 45px;
  height: 45px;
  color: var(--primary-color);
}

.feature-card-title {
  font-size: var(--heading3-size);
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
}

.feature-card-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

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

.feature-copy {
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  background: var(--bg1-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,
.seo-content61 h3,
.seo-content61 h4 {
  font-size: var(--heading-size);
  color: var(--heading-color);
  font-weight: 600;
}

.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-btn2 {
  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-btn2::after {
  content: "Show More...";
  color: var(--primary-color);
  font-size: var(--para-size);
}

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

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

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

.ntproducts-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);

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

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

.ntproducts-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.ntproducts-img-ratio {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}

.ntproducts-img-ratio img {
  aspect-ratio: 1 / 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

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

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

.ntproducts-link {
  color: var(--btn-color2);
  font-size: var(--para-size);
}

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

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

.ntproducts-title {
  position: relative;
  text-decoration: none;
  display: -webkit-box;
  /* ✅ Required for line-clamp to work */
  -webkit-line-clamp: 1;
  /* ✅ Number of lines to show */
  -webkit-box-orient: vertical;
  /* ✅ Required for vertical orientation */
  overflow: hidden;
  /* ✅ Hides the remaining text */
  font-size: var(--heading-size);
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 8px;
}

.hastag {
  font-size: var(--topbar-size);
  color: var(--primary-color);
  font-weight: 600;
  margin: 8px 0px;
}

.ntproducts-text {
  font-size: var(--para-size);
  color: var(--para-color);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(1.5em * 3);
  margin-bottom: 10px;
}

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

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

/* *********************category page section code************************** */

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

.content-section {
  width: 100%;
}

/* Left Container - Image and Buttons Float Left */

.left-content-wrapper {
  float: left;
  max-width: 400px;
  width: 100%;
  margin-right: 1.5rem;
  margin-bottom: 0.6rem;
  border: 1px solid black;
}

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

.image-container {
  aspect-ratio: 1/1;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  /* 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;
}

/* Text Content Styles */

.product-description {
  text-align: justify;
}

.product-description h1,
.product-description h2,
.product-description h3,
.product-description h4,
.product-description h5,
.product-description h6 {
  font-size: var(--heading-size);
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 6px;
  line-height: 1.6;
}

.product-description p,
.product-description ul li,
.product-description li {
  font-size: var(--para-size);
  /* font-weight: 400; */
  color: var(--para-color);
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 1px;
}

.button-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-bottom: 20px;
}

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

.section-14 {
  background: var(--bg2-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: cover;
  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;
}

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

.section-about {
  background: var(--bg1-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-btn2 {
  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-btn2::after {
  content: "Show More...";
  color: var(--primary-color);
  font-size: var(--para-size);
}

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

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

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

.main-content105 {
  background-color: var(--bg1-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(--secondary-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.5rem;
  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-color1);
}

.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;
}

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

.certifications-section {
  background-color: var(--bg2-color);
  padding: 56px 0;
}

.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;
}

.certificate-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 95/134;
}

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

/* **************************** 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(--white);
  background-color: var(--primary-color);
  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);
}

.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(--primary-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 */
}

/* **********************contact us page************************** */

.contactpage {
  padding: 56px 0 0 0;
  background-color: var(--bg2-color);
}

.contact-section-51 {
  background-color: var(--bg1-color);
  border: 1px solid #e0e0e0;
  margin-bottom: 56px;
}

.section-title-51 {
  font-weight: 600;
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.section-para-51 {
  color: var(--para-color);
  font-size: 14px;
  line-height: 1.6;
}

/* --- NEW STYLES FOR REDESIGNED CONTACT ITEMS --- */

.contact-item {
  gap: 0.75rem;
  /* Space between icon and details box */
}

.contact-icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  /* border: 1px solid #dee2e6; */
  border-radius: var(--radius);
  color: var(--primary-color);
  font-size: 1.75rem;
  flex-shrink: 0;
  /* For desktop */
  width: 70px;
  height: 70px;
}

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

.contact-details-box {
  background-color: var(--bg2-color);
  /* border: 1px solid ; */
  border-radius: var(--radius);
  padding: 0.8rem 1.25rem;
  flex-grow: 1;
  /* Allows the details box to fill the remaining space */
}

.contact-details-box .detail-label {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 1rem;
  display: block;
}

.contact-details-box .detail-value,
.contact-details-box .detail-value a {
  color: var(--para-color);
  font-size: 0.9rem;
  text-decoration: none;
}

.contact-details-box .detail-value a:hover {
  color: var(--primary-color);
}

/* Responsive stacking for mobile */

@media (max-width: 767.98px) {
  .contact-icon-box {
    width: 100%;
    height: 60px;
  }
}

/* Your existing social icon styles */

.social-icon-link-51 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--btn-color);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.social-icon-link-51:hover {
  opacity: 0.85;
  background-color: var(--primary-color);
  color: var(--white);
}

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

.map-container-51 {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 25%;
}

.map-container-51 iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

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

.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 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);
}

/* ********************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(--heading-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);
}

/* *****************************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;
  }
}

/* ******************************review page code section*********************** */

.review-wrapper {
  background-color: var(--bg2-color);
}

.review-card {
  background-color: var(--bg1-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.review-card__image-section {
  padding: 0;
  aspect-ratio: 1/1;
}

.review-card__image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__form-section {
  padding: 20px;
}

.unique-star-rating {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
  gap: 5px;
}

.unique-star {
  position: relative;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: transform 0.2s ease;
  user-select: none;
}

.unique-starM {
  position: relative;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: transform 0.2s ease;
  user-select: none;
}

.unique-starM::before {
  content: "★";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 36px;
  color: var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.unique-star:hover {
  transform: scale(1.15);
}

/* Empty star (default) */

.unique-star::before {
  content: "★";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 36px;
  color: var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Half filled star */

.unique-star.half::after {
  content: "★";
  position: absolute;
  top: 0;
  left: 2px;
  width: 50%;
  height: 100%;
  font-size: 36px;
  color: var(--secondary-color);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
}

/* Full filled star */

.unique-star.full::before {
  color: var(--secondary-color);
}

@media (max-width: 991.98px) {
  .review-card__image-section {
    height: 300px;
  }
  .review-card__image-section img {
    min-height: auto;
  }
  .review-card__input-row {
    flex-direction: column;
  }
}

/* **************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: #00081e87;
  content: "";
  height: 100%;
  left: 0;
  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: #111827;
  /* 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);
  line-height: 1.65;
  margin-bottom: 20px;
  text-align: center;
}

.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 */
  }
}

#home_form label.error {
  color: #183783;
  font-weight: normal;
  margin-bottom: 15px;
}

label.error {
  color: #fb3a3a;
  font-weight: normal;
  margin-bottom: 15px;
}

.iti--separate-dial-code .iti__selected-flag {
  height: 38px;
}

.rc-anchor-normal .rc-anchor-content {
  height: 74px;
  width: 195px;
}

.rc-anchor-normal .rc-anchor-pt {
  margin: 2px 25px 0 0;
}
.rc-anchor-light.rc-anchor-normal,
.rc-anchor-light.rc-anchor-compact {
  border: 1px solid #d3d3d3;
  max-width: 280px;
  max-height: 70px;
}

.sevice-bx {
  display: flex;
  gap: 15px;
  align-items: center;
}

.sevice-bx .icon {
  width: 85px;
  height: 85px;
  min-width: 85px;
  align-content: center;
  text-align: center;
  border: 2px solid var(--secondary-color);
  padding: 10px;
  background-color: white;
}

.sevice-bx .icon img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: inline;
}

.sevice-bx .tx-bx .tt {
  display: block;
  font-size: 18px;
  color: var(--primary-color);
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 2px;
}

.sevice-bx .tx-bx p {
  color: var(--para-color);
  font-size: 15px;
  margin-bottom: 0;
  line-height: 1.5;
}

.clientSlider .swiper-wrapper {
  transition-timing-function: linear;
}

.clientSlider .swiper-slide {
  background: transparent;
  border-radius: 0 ;
  padding: 0;
  min-height: auto;
  position: relative;
}

.clients-bx img {
  aspect-ratio: 3 / 2;
  object-fit: contain;
  margin: 5px 0;
  border-radius: 0;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px 0px;
  background: white;
}
