:root {
  --color-primary: #0fb796;
  --color-secondary: #0a8c75;
  --color-light-primary: #a9efe2;
  --color-heading: #1a1a1a;
  --color-bg: #f7fffd;
  --color-text: #dde5e3;
  --font-poppins: "Poppins", sans-serif;
  --font-open-sans: "Open Sans";
}

.poppins {
  font-family: var(--font-poppins);
}

.open-sans {
  font-family: var(--font-open-sans);
}

.heading {
  font-size: 35px;
}

.text-custom-light {
  color: var(--color-text);
}

tr,
td,
th {
  vertical-align: middle !important;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #00c2cb;
}

.switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #aaaaaa;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  /* background-color: #00a85b; */
  background-color: #a3bdf4;
}

input:focus + .slider {
  box-shadow: 0 0 1px #00a85b;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.form-control {
  color: #414141 !important;
}

.drop-down {
  display: inline-block;
  position: relative;
}

.drop-down-items {
  position: absolute;
  background: #f2f2f2;
  width: 100%;
  text-align: left;
  border: 1px solid #ddd;
  border-radius: 5px;
  z-index: 1;
}

/* =================================================================================================================
Custom Home Page Css Header Start
================================================================================================================= */

.menu-bar {
  border-radius: 25px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  background-color: rgba(0, 0, 0, 0.359);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  align-items: center;
  padding: 0 10px;
  margin: 0 auto 0 auto;
  width: fit-content;
}

.menu-bar li {
  list-style: none;
  color: white;
  font-family: sans-serif;
  font-weight: bold;
  padding: 12px 20px;
  margin: 0 8px;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}

.menu-bar li::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  transition: 0.2s;
  border-radius: 25px;
}

.menu-bar li:hover {
  color: #fff;
  /* color: black; */
}

.menu-bar li:hover::before {
  background: linear-gradient(to bottom, #0fb796, #0a8c75);
  /* background: linear-gradient(to bottom, #e8edec, #d2d1d3); */
  box-shadow: 0px 3px 20px 0px black;
  transform: scale(1.15);
}

.header-new {
    height: 90px;                  /* fixed header height */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
}

/* Logo wrapper */
.logo-wrap {
    display: flex;
    align-items: center;
}

/* Logo image */
.logo-wrap img {
    max-height: 60px;              /* control logo size here */
    width: auto;
    object-fit: contain;
}

/* Menu */
.menu-bar {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-bar a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}

/* Button alignment */
.call-us-btn {
    display: flex;
    align-items: center;
}


.call-us-btn button {
  background-color: var(--color-primary);
  color: var(--color-bg);
  transition: all 0.3s ease-in-out;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 17px;
  font-family: var(--font-poppins);
  font-weight: 600;
}

/* .call-us-btn button:hover {
  background-color: var(--color-secondary);
  transform: translateY(-5px);
  color: var(--color-bg);
} */

.call-us-btn button:hover {
  background-color: #13c9a5; /* lighter teal */
  transform: translateY(-2px); /* subtle lift */
  box-shadow: 0 8px 20px rgba(15, 183, 150, 0.35);
  color: #ffffff;
}
.footer-logo {
    height: 55px;
    width: auto;
    /* margin-bottom: 12px; */
}


/* =================================================================================================================
Custom Home Page Css Header End
================================================================================================================= */

/* =================================================================================================================
Custom Home Page Css Home Banner Start
================================================================================================================= */

.custom-banner-text {
  font-size: 19px;
  line-height: 1.4em;
}

/* =================================================================================================================
Custom Home Page Css Home Banner End
================================================================================================================= */

/* =================================================================================================================
Responsive CSS Start
================================================================================================================= */
@media (min-width: 768px) {
  .heading {
    font-size: 45px;
  }
}

@media (min-width: 1024px) {
  .heading {
    font-size: 50px;
  }
}

@media (min-width: 1280px) {
  .container-custom {
    width: 1300px;
  }

  .heading {
    font-size: 60px;
  }
}

/* =================================================================================================================
Responsive CSS End
================================================================================================================= */
