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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:root {
  /* **************font family initialization******************** */
  --font: "Exo", sans-serif;
  --font2: "Lato", sans-serif;
  /* **************font size initialization******************** */
  --radius: 1px;
  --para-size: 16px;
  --topbar-size: 16px;
  --heading-size: 18px;
  --heading2-size: 22px;
  --heading3-size: 26px;
  --title-size: 30px;
  --large-text: 40px;
  /* **********website color initilaization******************* */
  --primary-color: #0e7ecd;
  --secondary-color: #1c1c1c;
  --btn-colo2: #1c1c1c;
  --btn-color: #0e7ecd;
  --hover-color1: #00508a;
  --hover-color2: #0e7ecd;
  --bg1-color: #ffffff;
  --bg2-color: #f4f4f4;
  --para-color: #3c3c3c;
  --heading-color: #1a1a1a;
  --hover-text: #000000;
  --white: #ffffff;
  --dark-text: #0a0a0a;
  --topbar-color: #e0e0e0;
  --border-light: #e0e0e0;
  --light-color: #ffffff;
  --footer-color: #1a1a1a;
  --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)
  );
  --overlay-color: rgba(236, 230, 255, 0.7);
}

@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(--light-color);
  border: 1px solid var(--btn-color);
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font2);
  white-space: normal;
  background: var(--btn-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(--hover-color1);
  color: var(--white);
  border: 1px solid var(--hover-color1);
}

/* .main-btn svg {

    color: var(--primary-color) !important;

}

.main-btn :hover svg{

    color: var(--white);



} */

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

.main-btn2:hover {
  color: var(--hover-color2);
  border: 2px solid var(--hover-color2);
}

.main-btn3:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--light-color);
}

.main-btn3 {
  padding: 11px 10px;
  color: var(--dark-text);
  border: 2px solid var(--footer-color);
  display: inline-flex;
  gap: 5px;
  cursor: pointer;

  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font2);
  /* white-space: nowrap; */
  /* background: var(--topbar-color); */
  outline: none;
  transition: 0.2s ease-in-out;
  justify-content: center;
  border-radius: var(--radius);
  line-height: 1;
  text-decoration: none;
}

.g-recaptcha {
  transform: scale(0.95);
  /* Adjust between 0.5 to 1.0 */
  transform-origin: 0 0;
  /* Keeps scaling from top-left */
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(163, 205, 234, 0.2);
  height: 37px;
}

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

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

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

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

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

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

header {
  position: relative;
}

.mid-bar.stricky-fixed,
header.stricky-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  /* background: var(--primary-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 {
  background: white;
  border-top: 1px solid #e3e3e3;
}

.top-bar {
  background-color: var(--bg1-color);
  padding: 18px 0;
}

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

/* Contact text and icons */

.top-bar a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

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

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

.search-bx {
  display: flex;
  align-items: center;
  border: 1px solid #e3e3e3;
  border-radius: 0;
  overflow: hidden;
  padding: 0;
  padding-left: 13px;
}

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

.search-bx button {
  outline: none;
  border: none;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: #ffffff;
  background: #0e7ecd;
}

.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: 18px 11px;
  display: block;
  color: var(--dark-text);
  transition: all 0.3s ease;
  font-size: var(--topbar-size);
  background: transparent;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
}

.navigation .menu ul li.active a,
.navigation .menu ul li:hover a {
  color: var(--hover-color2);
  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(--white);
  font-size: var(--para-size);
  padding: 6px 12px;
  background-color: var(--secondary-color);
  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(--secondary-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: 30px;
  width: 30px;
  height: 30px;
  color: white;
  background: var(--primary-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.call-now .con-bx a {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-text);
  line-height: normal;
  text-transform: none;
  text-decoration: none;
}

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

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

.cta-section {
  background-color: #eee;
}

/* Ensure content is on top of the icon */

.cta-section .container {
  position: relative;
  z-index: 1;
}

.site-footer {
  background-color: var(--footer-color);
  color: var(--white);
  font-size: var(--para-size);
}

/* Set a consistent margin for all widgets on mobile */

.footer-widget {
  margin-bottom: 30px;
}

/*--------------------------------

        # Widget 1: About & Logo

        --------------------------------*/

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

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

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-text {
  color: var(--white);
  line-height: 1.5;
  margin: 8px 0 18px;
  max-width: 420px;
}

.contact-info li {
  margin-bottom: 10px;
  color: var(--white);
}

.contact-info .contact-link {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-info .contact-link:hover {
  color: var(--hover-color1);
}

.visit-title {
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  margin-top: 25px;
  margin-bottom: 5px;
}

.visit-time {
  color: var(--white);
  margin-bottom: 0;
}

.footer-divider {
  /* Eyedropped separator color */
  border-top: 1px solid var(--primary-color);
  margin: 15px 0;
}

.social-icons .social-link {
  color: var(--white);
  font-size: 18px;
  /* Spacing from screenshot */
  margin-right: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons .social-link:hover {
  color: var(--hover-color1);
}

/*--------------------------------

        # Widget 2, 3, 4: Link Lists

        --------------------------------*/

.widget-links .widget-title {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

/* Orange underline for titles */

.widget-links .widget-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--hover-color2);
}

.widget-links .link-item {
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
  position: relative;
  transition: all 0.3s ease;
}

/* Underline for link hover state */

.widget-links .link-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: var(--hover-color2);
  /* Hide by default */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.widget-links .link-item:hover {
  color: var(--hover-color1);
}

/* Show underline on hover */

.widget-links .link-item:hover::after {
  transform: scaleX(1);
}

.footer-bottom {
  border-top: 1px solid var(--primary-color);
  padding: 25px 0;
}

.footer-bottom-links .bottom-link-item {
  margin-left: 25px;
}

.footer-bottom-links .bottom-link {
  text-decoration: none;
  font-size: var(--para-size);
  transition: all 0.2s ease;
  color: var(--border-light);
}

.footer-bottom-links .bottom-link:hover {
  color: var(--hover-color1);
}

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

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

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

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

/* Button styling */

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 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;
  background: transparent;
}

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

@media (max-width: 768px) {
  .Marquee-content {
    animation: marqueeMobile 12s linear infinite;
    /* faster + shorter distance */
  }

  @keyframes marqueeMobile {
    0% {
      transform: translateX(20%);
      /* start closer → no waiting */
    }
    100% {
      transform: translateX(-100%);
    }
  }
}

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

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

.separator {
  position: relative;
  width: 75px;
  margin-bottom: 10px;
}

.separator:before {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0px;
  width: 75px;
  height: 2px;
  background-color: var(--primary-color);
}

.separator:after {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 2px;
  width: 25px;
  height: 4px;
  background-color: var(--primary-color);
}

.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(--heading2-size);
  color: var(--heading-color);
  margin-bottom: 10px;
}

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

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

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

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

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

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

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

.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: 600;
  font-family: var(--font);
}

.section-title {
  color: var(--heading-color);
  font-family: var(--font);
  font-weight: 700;
  /*text-transform: uppercase;*/
  font-size: var(--title-size);
  margin-bottom: 40px;
}

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

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

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

main,
main img {
  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(--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-color: var(--primary-color);
  border-color: var(--primary-color);
}

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

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

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

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

.aboutsection::before {
  aspect-ratio: 4/1;
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://media.istockphoto.com/id/1178775481/vector/service-tools-icon-isolated-on-white-background-vector-illustration.jpg?s=612x612&w=0&k=20&c=VoGBYuv5vEW_Zbt2KIqcj2-sfEp21FGUlbZaq6QRfYY=");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  animation: bounceY 4s ease-in-out infinite;
  z-index: 0;
  top: 1%;
  opacity: 0.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 {
  aspect-ratio: 4/3;
  width: 100%;
  height: auto;
  object-fit: cover;
  /* aspect-ratio: 1/1; */
}

/* *********************browse by category section code************ */

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

.category-item {
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.category-item .category-icon-wrapper {
  width: 120px;
  height: 120px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.category-item:hover .category-icon-wrapper {
  transform: translateY(-5px);
}

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

.achieved-section {
  background-image: var(--dark-overlay-gradient),
    url("https://st.ourhtmldemo.com/new/metron/images/background/11.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.counter-bx .img img {
  margin-bottom: 15px;
  width: 70px;
}
.stats-counter svg {
  color: var(--primary-color);
  margin-right: 20px;
}

.stats-counter .counter-number {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
}

/* # Right Column (Bar Chart) */

.bar-chart-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 350px;
  padding-top: 30px;
}

.bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  margin: 0 25px;
  height: 100%;
  /* This is the "track" for the bar */
  background-color: rgba(255, 255, 255, 0.05);
  position: relative;
}

.bar-fill {
  width: 100%;
  background-color: var(--primary-color);
  opacity: 0.5;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  transition: height 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hatched lines pattern */

.bar-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.2) 0px,
    rgba(0, 0, 0, 0.2) 1px,
    transparent 1px,
    transparent 4px
  );
}

.bar-percentage {
  color: var(--primary-color);
  font-size: var(--heading-size);
  font-weight: 700;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.5s ease 1.5s;
}

.bar-label {
  color: #adb5bd;
  font-size: var(--heading-size);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 1px -5px;
  left: -35%;
  position: absolute;
  bottom: 12px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* --- Animation Trigger Class --- */

/* When .in-view is added by JS, start animations */

.achieved-section.in-view .bar-fill {
  /* Uses the CSS variable from the HTML style attribute */
  height: var(--target-height);
}

.achieved-section.in-view .bar-percentage {
  opacity: 1;
}

/* Responsive: On mobile, make the chart scrollable */

@media (max-width: 991.98px) {
  .achieved-content {
    margin-bottom: 50px;
  }
  .bar-chart-container {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 40px;
    /* Space for label + scrollbar */
  }
  .bar-item {
    /* Give bars a fixed width so they don't squash */
    flex: 0 0 70px;
    margin: 0 15px;
  }
}

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

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

.project-tabs {
  border-bottom: none;
  margin-bottom: 30px;
}

.project-tabs .nav-item {
  margin: 0 5px;
}

.project-tabs .nav-link {
  border: none;
  color: var(--para-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.project-tabs .nav-link:hover {
  color: var(--hover-color1);
}

.project-tabs .nav-link.active {
  color: var(--heading-color);
  background-color: transparent;
  font-size: 16px;
  border: none;
}

.service-card {
  background-color: var(--bg1-color);
  /* border-radius: var(--radius); */
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  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;
}

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

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

.service-card:hover .image-overlay {
  transform: translateY(0);
}

.card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  /* align-items: center; */
}

.ultproducts-card .card-body {
  align-items: start;
}

.card-body .leadsuresubheading:hover {
  cursor: pointer;
}

.product-item .product-title {
  color: #1a2953;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* ************enuiry section + matrix section code***************** */

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

.requirement-card {
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

/* Responsive adjustments */

@media (max-width: 991.98px) {
  .achievements-content {
    padding-left: 0;
    text-align: center;
  }
  .requirement-card {
    /* Remove bottom margin on mobile */
    margin-bottom: 0;
  }
}

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

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

/* .left-section {
    padding: 10px;
    min-height: 1px !important;
    transition: min-height 0.3s ease;
} */

/* .faq-container:before {
    aspect-ratio: 4/1;
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://media.istockphoto.com/id/1271371970/vector/god-of-thunder-hammer-mjolnir-vector-design-inspiration-or-illustration-template.jpg?s=612x612&w=0&k=20&c=PATkYyyuapzj8d4VOvldBT8ePQmIe8iYJa2Ok1eWNic=");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    animation: bounceY 4s ease-in-out infinite;
    z-index: 0;
    top: -10%;
    opacity: 0.3;
} */

.faq-img-sec img {
  padding-bottom: 30px;
  width: 100%;
}

.faq-img-sec .box1 {
  position: absolute;
  background-color: var(--primary-color);
  width: 350px;
  height: 310px;
  right: -58px;
  bottom: 60px;
  transform: skew(-20deg, 0deg);
}

.phone_number {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 150px;
  right: 40px;
  background-color: var(--white);
  border-bottom: 1px solid var(--secondary-color);
  box-shadow: 0px 0px 13.5px 1.5px rgba(0, 0, 0, 0.05);
  padding: 25px;
  padding-right: 20px;
  gap: 15px;
}
.phone_number .text p {
  color: var(--para-color);
  margin-bottom: 0;
  font-weight: 600;
}

.phone_number .text a {
  font-size: 30px;
  color: var(--text-color);
  font-weight: 900;
  text-decoration: none;
}

.phone_number .icon svg {
  color: var(--primary-color);
  width: 50px;
  height: 50px;
}

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

.right-section {
  flex: 1;
  padding: 40px;
}

.faq-item {
  position: relative;
  margin-bottom: 10px;
  border-radius: 5px;
  border-left: 4px 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: 18px 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(--hover-color2); */
}

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

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

@media (max-width: 768px) {
  .faq-wrapper {
    flex-direction: column;
  }
  .left-section {
    flex: none;
    padding: 30px 20px;
  }
  .right-section {
    padding: 30px 20px;
  }
  .faq-title {
    font-size: 28px;
  }
}

/* *********************our highlights************ */

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

.highlights-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  /* Width of the image area */
  background-image: url("../images/abt-mission.webp");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.highlights-section .container {
  position: relative;
  z-index: 2;
}

.highlight-box {
  background-color: var(--bg1-color);
  border-radius: var(--radius);
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  height: 100%;
  transition: all 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
  background-color: var(--hover-color2);
}

.highlight-box img {
  width: 70px;
  height: 70px;
  opacity: 0.5;
  margin: 0 auto;
}

.mission-card-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-50%);
  width: 450px;
  z-index: 10;
}

.mission-card {
  background-color: var(--bg2-color);
  border-radius: var(--radius);
  padding: 30px;
  /* max-height: 342px; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.mission-card .card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.mission-card .card-header img {
  width: 50px;
  height: 50px;
}

.mission-card .leadsurepara {
  margin-bottom: 0;
}

/*--------------------------------

        # Responsive (Mobile)

        --------------------------------*/

@media (max-width: 991.98px) {
  /* Hide the image background on mobile */
  .highlights-section::after {
    display: none;
  }
  /* Make the card static */
  .mission-card-wrapper {
    position: static;
    transform: none;
    width: 100%;
    /* Add space between grid and card */
    margin-top: 40px;
  }
}

/* ***************** image + text  content section code****************** */

.why-choose-us-section {
  background-color: var(--bg1-color);
  overflow: hidden;
}

/* Map Image Wrapper */

.map-image-wrapper {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
}

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

.section-highlight {
  background: var(--dark-overlay-gradient),
    url("https://media.istockphoto.com/id/1396466280/photo/home-improvement-construction-tools-on-black-background-with-copy-space-banner.jpg?s=612x612&w=0&k=20&c=MPUykaTV-NfspUQHee8fhmOouZrn89wS_2yv_Ih71GU=")
      no-repeat center center/cover;
  position: relative;
}

.process-sec {
  position: relative;
  z-index: 1;
  align-content: center;
}

.process-sec::before,
.process-sec::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/expertise-info-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left bottom;
  z-index: -1;
  filter: grayscale(1);
}

.process-sec::after {
  background: var(--dark-text);
  opacity: 0.4;
}

.process-bx .tt {
  display: flex;
  justify-content: space-between;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 17px;
}

.process-bx .tt span:nth-child(2) {
  color: var(--pri);
}

.process-bx .bar {
  height: 5px;
  background-color: #f4f5f8;
  border-radius: 0;
  position: relative;
}

.process-bx .bar::after {
  content: "";
  position: absolute;
  background: transparent;
  height: 18px;
  border-right: 2px solid var(--primary-color);
  bottom: 0;
}

.process-bx .bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 0;
  transition: 1s ease-in-out;
}

.process-bx:nth-child(1) .bar::before,
.process-bx:nth-child(1) .bar::after {
  width: 85%;
}

.process-bx:nth-child(2) .bar::before,
.process-bx:nth-child(2) .bar::after {
  width: 100%;
}

.process-bx:nth-child(3) .bar::before,
.process-bx:nth-child(3) .bar::after {
  width: 95%;
}

.process-bx:nth-child(4) .bar::before,
.process-bx:nth-child(4) .bar::after {
  width: 92%;
}

.head-sec.text-start {
  max-width: 100%;
}
.head-sec {
  margin: 0 auto 35px;
}
.head-sec .sub-tt {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  align-content: center;
  font-family: var(--font);
  position: relative;
  margin-bottom: 5px;
  display: inline-block;
}

.head-sec.text-white .tt,
.head-sec.text-white p {
  color: white;
}
.map-bx {
  width: 100%;
  height: auto;
  min-height: 450px; /* Ensures good height */
  position: relative;
}

.map-bx iframe {
  width: 100%;
  border: 0;
}

.head-sec .tt {
  font-family: var(--font);
  color: var(--white);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 10px;
  position: relative;
  text-transform: capitalize;
}

.head-sec.text-white p {
  opacity: 0.8;
}

.process-bx .bar {
  height: 5px;
  background-color: #f4f5f8;
  border-radius: 0;
  position: relative;
}

/* .section-highlight::before {
    
    position: absolute;
    
} */

.feature-copy {
  position: relative;
  font-size: 20px;
  line-height: 1.6;
  padding: 20px;
  overflow: hidden;
  background-color: rgba(90, 164, 238, 0.7);
}
/* .feature-copy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(90, 164, 238, 0.7);
    z-index: -1;
    backdrop-filter: blur(5px);
} */

.feature-copy .seo-content61 {
  max-height: 456px;
  overflow: hidden;
  transition: max-height 0.5s ease;
  z-index: 2;
}

.seo-content61 h1,
.seo-content61 h2,
.seo-content61 h3,
.seo-content61 h4,
.seo-content61 h5,
.seo-content61 h6,
.seo-content61 p,
.seo-content61 li,
.seo-content61 ul {
  color: var(--light-color);
}

.scrollcard {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
}

/* Hidden checkbox */

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

.read-more-toggle:checked ~ .seo-content61 {
  overflow-y: auto;
  scrollbar-width: thin;
  /* for Firefox */
  scrollbar-color: var(--primary-color) transparent;
  /* for Firefox */
  scroll-behavior: smooth;
  /* smooth scroll effect */
}

/* For Chrome, Edge, Safari */

.read-more-toggle:checked ~ .seo-content61::-webkit-scrollbar {
  width: 6px;
  /* scrollbar thickness */
}

.read-more-toggle:checked ~ .seo-content61::-webkit-scrollbar-track {
  background: transparent;
  /* track background */
}

.read-more-toggle:checked ~ .seo-content61::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  /* scrollbar color */
  border-radius: 10px;
  /* rounded edges */
}

.read-more-toggle:checked ~ .seo-content61::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
  /* color on hover */
}

/* Read more button */

.read-more-btn {
  display: block;
  text-align: left;
  /* button floats right side */
  margin-top: 10px;
  color: var(--light-color);
  font-size: var(--heading-size);
  cursor: pointer;
  transition: color 0.3s;
}

/* Toggle text dynamically */

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

.read-more-btn:hover::after {
  color: var(--dark-text);
  font-weight: 700;
}

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

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

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

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

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

.blog-card {
  display: block;
  border: 1px solid var(--border-light);
  border-radius: 1px;
  transition: all 0.3s ease;
  height: 100%;
  background-color: white;
}

.blog-date {
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
  margin-bottom: 15px;
  border: 1px solid rgb(224 218 218);
  border-right: 0;
  border-left: 0;
  padding-block: 7px;
}

.blog-date li:first-child {
  background-color: var(--primary-color);
  color: white;
  padding: 8px;
}
.blog-date li {
  color: var(--secondary-color);
  line-height: 1;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Wrapper to position the category tag */

.blog-card .card-img-wrapper {
  position: relative;
}

.blog-card .card-img-top {
  border-radius: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.blog-card .card-category-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: var(--white);
  color: var(--light-color);
  padding: 4px 10px;
  font-size: var(--para-size);
  font-weight: 500;
  text-transform: uppercase;
}

/* Card body styles */

.blog-card .card-body {
  padding: 25px;
  align-items: normal;
}

.blog-card .card-meta {
  color: var(--primary-color);
  font-size: var(--para-size);
  text-transform: uppercase;
  margin-bottom: 10px;
}

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

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

/* 2. Swiper Container & Slide Styling */

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  aspect-ratio: 1/1;
  text-align: center;
  font-size: 18px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

.swiper-slide img {
  aspect-ratio: 1/1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.swiper-slide:hover img {
  content: "Read More";
  transform: scale(1.05);
}

.swiper-slide::after {
  /* content: "Read More"; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Show text on hover */

.swiper-slide:hover::after {
  opacity: 1;
}

/* Left side image styling */

.partner-image {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
}

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

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

/* --- Sidebar --- */

.sidebar105 .widget105 {
  background-color: var(--bg1-color);
  padding: 1.5rem;
  border: 1px solid var(--bg2-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;
  flex-wrap: wrap;
}

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

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

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

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

.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-color1);
  font-weight: 600;
}

/* 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(--light-color);
  transform: translateY(-3px);
  background-color: var(--hover-color2);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/*************************** 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 a {
  font-size: var(--para-size);
  color: var(--primary-color);
}

.privacy-box {
  padding: 20px;
  background: var(--bg1-color);
}

/* our mission and vision section code */

.philosophy-section {
  background-color: var(--footer-color);
  background-image: url(../images/bg-img.webp);
  background-repeat: repeat;
  overflow: hidden;
}

.flip-card {
  position: relative;
  height: 350px;
  width: 100%;
  border-radius: 0.25rem;
  overflow: hidden;
  background-color: var(--secondary-color);
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease-in-out;
}

.flip-card-front {
  opacity: 1;
  z-index: 2;
}

.card-front-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5);
}

.card-front-content {
  position: relative;
  z-index: 2;
}

.card-front-icon-wrapper {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--white);
  margin: 0 auto 20px;
}

/* ---------------------------------

        4. Card Back (Hidden State)

        --------------------------------- */

.flip-card-back {
  opacity: 0.6;
  z-index: 1;
  background-color: var(--secondary-color);
}

.flip-card:hover .flip-card-front {
  opacity: 0;
}

.flip-card:hover .flip-card-back {
  opacity: 1;
}

/* *********************product section code********************* */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.content-section {
  width: 100%;
}

.left-content-wrapper {
  float: right;
  max-width: 400px;
  width: 100%;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  /* border: 1px solid var(--secondary-color); */
}

.image-container {
  aspect-ratio: 1/1;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 20px;
}

.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-img {
  object-fit: cover;
  display: block;
  margin: auto;
}

.multi-imgs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.multi-imgs .imgs {
  border: 1px solid var(--primary-color);
  width: 55px;
  height: 55px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.multi-imgs .imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.multi-imgs .imgs.active {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.multi-imgs .imgs.youTube a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #f70000;
}

.multi-imgs .imgs.youTube a svg {
  width: 30px;
  height: 30px;
  color: white;
}

.product-description p,
.product-description li,
.product-description ul {
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 6px;
}

.button-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  /* margin-bottom: 20px; */
}

/* ***********new faq design code ******************/

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

.faq-nav-vertical .nav-link {
  font-size: var(--heading-size);
  font-weight: 500;
  color: var(--heading-color);
  padding: 1rem;
  border: none;
  border-top: 1px solid var(--primary-color);
  border-radius: 0;
  position: relative;
  background: var(--bg2-color);
  transition: none;
}

.faq-nav-vertical .nav-link:first-child {
  border-top: none;
}

/* Style for the active nav link */

.faq-nav-vertical .nav-link.active {
  color: var(--primary-color);
  background-color: var(--bg1-color);
  border-left: 2px solid var(--primary-color);
  font-weight: 600;
  padding-left: 2.25rem;
}

.faq-nav-vertical .nav-link.active {
  border-top-color: transparent;
}

.faq-tab-content {
  background-color: var(--bg2-color);
  border-top: 1px solid var(--primary-color);
}

.custom-accordion-item {
  border: none;
  border-top: 1px solid var(--primary-color);
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
  padding: 0;
}

.faq-tab-content .custom-accordion-item:first-child {
  border-top: none;
}

.custom-accordion-question {
  font-size: var(--heading-size);
  font-weight: 600;
  color: var(--heading-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.custom-accordion-question span {
  padding-right: 1rem;
}

.custom-accordion-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--para-color);
  line-height: 1.7;
  font-size: var(--para-color);
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 1.5rem;
}

.custom-accordion-item.active .custom-accordion-question {
  color: var(--primary-color);
}

.custom-accordion-item.active .custom-accordion-answer {
  max-height: 200px;
  padding-top: 0;
  padding-bottom: 1.75rem;
  transition: max-height 0.4s ease-in, padding 0.4s ease-in;
}

.icon-toggle {
  width: 1.75rem;
  height: 1.75rem;
  background-color: transparent;
  font-weight: normal;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /* Make it round */
  cursor: pointer;
  flex-shrink: 0;
  /* Collapsed state: (down arrow) */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' fill='%230e7ecd' class='bi bi-arrow-down-circle' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0M8.5 4.5a.5.5 0 0 0-1 0v5.793L5.354 8.146a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.75rem;
  background-position: center;
}

/* Remove the old '+' content */

.icon-toggle::after {
  content: "";
}

/* Active state for your JS */

.custom-accordion-item.active .icon-toggle {
  background-color: var(--border-light);
  color: var(--hover-color2) !important;
  /* Active state: (up arrow) */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' fill='%230e7ecd' class='bi bi-arrow-up-circle' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-7.5 3.5a.5.5 0 0 1-1 0V5.707L5.354 7.854a.5.5 0 1 1-.708-.708l3-3a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 5.707z'/%3e%3c/svg%3e");
}

/* Remove the old '−' content */

.custom-accordion-item.active .icon-toggle::after {
  color: var(--hover-color2);
  content: "";
}

/* **************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(--light-color);
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 10px;
  background-color: var(--secondary-color);
  border-radius: var(--radius);
  padding: 6px 9px;
  display: inline-block;
}

.img-breadcum .tt {
  font-weight: 600;
  font-size: 25px;
  line-height: 1.3;
  letter-spacing: normal;
  margin-bottom: 0px;
  color: var(--light-color);
  max-width: 650px;
  margin: 0 auto;
  text-transform: capitalize;
}

.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-color1);
  font-weight: 500;
}

.breadcum-sec ul li a::before {
  content: "/";
  position: absolute;
  top: 1px;
  right: -11px;
  font-size: 14px;
  color: var(--heading-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);
}

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

.whatapp_btn {
  background: #01e675;
  width: 40px;
  height: 40px;
  color: var(--white);
  position: fixed;
  left: 20px;
  bottom: 100px;
  cursor: pointer;
  z-index: 9;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
  box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.15);
  border: 0;
}

.whatapp_btn svg {
  width: 19px;
  height: 19px;
}

.whatapp_btn:hover {
  transform: scale(1.1);
}

.whatapp_btn:focus,
.whatapp_btn:hover {
  background: #01e675;
  color: var(--white);
}

.business-enq {
  position: fixed;
  bottom: 50px;
  left: 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%;
}

.fab-whatsapp {
  background: #25d366;
  border: 1px solid #25d366;
}

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

@media (min-width: 992px) {
  .fab-stack {
    left: 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;
  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;
  color: var(--white);
  text-decoration: none;
  border: 0;
}

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

.contact-wa {
  background: #25d366;
  color: var(--white);
}

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

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

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

.iti {
  width: 100%;
}

.error {
  font-size: 15px;
  color: red;
}

.abt-vid-bx iframe,
.reels-vid iframe {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  width: 100%;
  display: block;
  border: 1px solid #e3e3e3;
  /* box-shadow: var(--box-shadow-inset-sm); */
  overflow: hidden;
  border-radius: 20px;
  pointer-events: none;
  transform: scale(1.01);
  transform-origin: 50% 50%;
}

.reels-vid iframe {
  aspect-ratio: 35 / 62;
}

.map-wrapper {
  max-width: 550px;
  margin: 0 auto;
  height: 400px;
  width: 100%;
  position: relative;
}
#indiaMap {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.blinking-marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 2px solid white;
  animation: blink 1.4s infinite;
  box-shadow: 0 0 10px var(--primary-color);
}

.leaflet-bottom.leaflet-right{
  display: none;
}

@keyframes blink {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.6);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.map-wrapper img {
  display: block;
  width: 100%;
}

.map-wrapper .tag {
  position: absolute;
  background-color: #ffffff;
  color: var(--primary-color);
  font-size: 13px;
  border-radius: 4px;
  padding: 5px 7px;
  line-height: 1;
  font-weight: 600;
  transition: all 0.1s linear;
  border: 1px solid var(--primary-color);
  /* pointer-events: none; */
  z-index: 1;
}

.map-wrapper .tag:hover {
  z-index: 2;
  animation: pulse 1s ease-in-out;
}

.map-wrapper .tag.anim-main {
  animation: pulse 1s ease-in-out infinite;
}

.map-wrapper .tag::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: white transparent transparent transparent;
}
.map-wrapper .tag::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -3px;
  margin-top: 6px;
  border-width: 3px;
  border-style: solid;
  border-color: white;
  border-radius: 100%;
}

.expend-content-sec {
  max-height: 440px; /* collapsed height */
  overflow: hidden;
}

.expend-content-sec.expanded {
  max-height: 4000px; /* expanded height */
  overflow: unset;
}

.read-toggle {
  display: inline-block;
  color: var(--text-light);
  cursor: pointer;
  font-weight: 500;
  margin-top: 10px;
  user-select: none;
}

.read-toggle:hover {
  color: var(--text-color);
}
