.btn {
  font-weight: 700;
  transition: 0.5s;
}

.btn:hover {
  -webkit-box-shadow: 0 8px 6px -6px #555555;
  -moz-box-shadow: 0 8px 6px -6px #555555;
  box-shadow: 0 8px 6px -6px #555555;
}

.btn-primary {
  color: #ffffff;
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 28px;
  height: 28px;
}

.btn-lg-square {
  width: 46px;
  height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 0;
  border-radius: 50% 50% 0 0;
  z-index: 99;
}

.navbar-light .navbar-nav .nav-link {
  font-family: "Jost", sans-serif;
  position: relative;
  margin-left: 30px;
  padding: 30px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  outline: none;
  transition: 0.5s;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (min-width: 992px) {
  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    bottom: 0;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }
}

.service-item {
  position: relative;
  height: 350px;
  padding: 0 30px;
  transition: 0.5s;
}

.service-item .service-icon {
  width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.service-item .service-icon i {
  transform: rotate(15deg);
}

.service-item a.btn {
  position: absolute;
  width: 60px;
  bottom: -48px;
  left: 50%;
  margin-left: -30px;
  opacity: 0;
}

.service-item:hover a.btn {
  bottom: -24px;
  opacity: 1;
}

@media (min-width: 576px) {
  .team-item .row {
    height: 450px;
  }
}

.team-carousel .owl-nav {
  position: absolute;
  padding: 0 45px;
  width: 100%;
  height: 45px;
  top: calc(50% - 22.5px);
  left: 0;
  display: flex;
  justify-content: space-between;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
  position: relative;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 45px;
  font-size: 22px;
  transition: 0.5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
  background: var(--dark);
}

.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 20px;
  height: 20px;
  background: var(--light);
  border: 2px solid var(--primary);
  border-radius: 20px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 40px;
  height: 40px;
  background: var(--primary);
}

.testimonial-carousel .owl-item img {
  width: 150px;
  height: 150px;
}

:root {
  /* --primary: #0463FA; */
  --primary: #1b2c52;
  --light: #eff5ff;
  --dark: #1b2c51;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-black {
  font-weight: 900 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

#spinner img {
  width: 80px;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

.navbar .navbar-brand,
.navbar a.btn {
  height: 75px;
}

.navbar .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
}

.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.header-carousel .owl-carousel-text {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 3rem;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.header-carousel .owl-nav {
  position: absolute;
  width: 200px;
  height: 45px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 45px;
  font-size: 22px;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.header-carousel .owl-dots {
  position: absolute;
  height: 45px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 15px;
  transition: 0.5s;
}

.header-carousel .owl-dot::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 4px;
  left: 4px;
  background: #ffffff;
  border-radius: 5px;
}

.header-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

.page-header {
  background: url(../img/header-page.avif) top center no-repeat;
  background-size: cover;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}

/*** Service ***/
.service-item {
  transition: 0.5s;
}

.service-item:hover {
  margin-top: -10px;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}

.service-item .btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border-radius: 40px;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.5s;
}

.service-item:hover .btn {
  width: 140px;
}

/*** Feature ***/
@media (min-width: 992px) {
  .container.feature {
    max-width: 100% !important;
  }

  .feature-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .feature-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .feature-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

@media (max-width: 991px) {
  .feature-text .g-4 {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
    display: flex;
    flex-direction: column;
    font-size: 15px;
    padding-left: 10%;
  }

  .feature-text .rounded-circle {
    font-size: 20px;
  }
}

/*** Footer ***/
.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #ffffff;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.text-align-justify {
  text-align: justify;
}

.footer .btn.btn-link:hover {
  color: #FFFFFF;
  letter-spacing: 1px;
  box-shadow: none;
  font-weight: bold;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: #FFFFFF;
}

.footer .copyright a:hover {
  color: #FFFFFF;
  font-weight: bold;
}

/* ------------------------------ Changes ----------------- */
.svg-class {
  width: 2rem;
}

.service-svg-icon {
  width: 1.5rem;
}

.our-mission {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.text-align-center {
  text-align: center;
}

.logo-img {
  width: 18rem;
}

.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

textarea {
  resize: none;
}

.color-black {
  color: black;
}

.bg-primary {
  background-color: #0463FA !important;
}

.text-primary {
  color: #1b2c52 !important;
}

.about {
  padding-top: 2.5rem;
}

.service {
  padding-top: 2.5rem;
}

.features {
  padding-top: 2.5rem;
}

.doctors {
  padding-top: 2.5rem;
}

.contact {
  padding-top: 2.5rem;
}

.footer-service {
  display: flex;
  flex-direction: row;
}

.color-white {
  color: white;
}

.img-fluid {
  object-fit: fill;
}

.contact-map {
  width: 35rem;
}

.view-button {
  margin-top: -50px;
}

@media (min-width: 768px) {
  .contact-map {
    width: 35rem;
  }

  .view-button {
    margin-top: 0px;
  }
}

@media (max-width: 990px) {
  .contact-map {
    width: 20rem;
    height: 20rem;
  }

  .view-button {
    margin-top: 0px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    width: 10rem;
  }

  .view-button {
    margin-top: 0px;
  }
}

.dropbtn {
  background-color: #3498db;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropbtn:hover,
.dropbtn:focus {
  background-color: #2980b9;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {
  background-color: #ddd;
}

.show {
  display: block;
}

/* _------------------------------------Mihir Edit--------------------------------_ */
.photo-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-divs {
  display: flex;
  flex-direction: row !important;
  justify-content: space-evenly !important;
}

.fact-item .fact-icon {
  width: 120px;
  height: 120px;
  margin-top: -60px;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 120px;
  transition: 0.5s;
}

.fact-item .fact-icon img {
  width: 50%;
  transform: scale(150%);
}

.section-title {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.video-container {
  margin: 5%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.video-container iframe {
  padding: 1%;
  background-color: white;
  border-radius: 25px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  width: 75%;
  height: 500px;
}

iframe {
  border: 0;
}

.products-con {
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  display: flex;
  justify-content: center;
  align-items: center !important;
  padding-top: 18px;
  margin-top: 7.5%;
}

.product-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  width: 100%;

}

.product-card {
  background: #fff;
  border: 2px solid #c3d4f1;
  text-align: center;
  width: 30%;
  height: 450px;
  position: relative;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.product-card h3 {
  font-size: 20px !important;
  font-weight: bold !important;
  color: #28731d;
}

.product-card h4 {
  font-size: 15px !important;
  color: #4a852d;
}

.product-card p {
  color: black;
}

.product-info h3 {
  color: white;
}

.product-info h4 {
  color: white;
}

.product-info p {
  font-size: 13px;
  color: white;
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.product-card:hover .product-info {
  transform: translateY(0);
}

.product-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px;
  box-sizing: border-box;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  text-align: center;
  justify-content: center;
  padding: 2.5% 2.5%;
}

.product-image-box {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details {
  padding: 15px;
  background: #fff;
  text-align: center;
}

.products-con {
  display: flex;
  flex-direction: row;
  padding: 0% 7.5%;
}

.products-con div {
  width: 50%;
  padding: 2.5%;
}

.products-con .type-image {
  overflow: hidden;
}

.products-con img {
  width: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .products-con {
    font-family: "Arial", sans-serif;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center !important;
    min-height: 100%;
    padding: 0px;
    margin: 0px;
    width: 100% !important;
  }

  .product-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 2.5%;
  }

  .product-card {
    background: #fff;
    border: 2px solid #c3d4f1;
    text-align: center;
    width: 47%;
    height: 400px;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
  }

  .product-image-box {
    width: 100%;
    height: 150px !important;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .product-card h3 {
    font-size: 18px !important;
    font-weight: bold !important;
    color: #28731d;
  }

  .product-card h4 {
    font-size: 16px !important;
    color: #4a852d;
  }

  .product-card p {
    font-size: 15px;
    color: black;
  }

  .product-info h3 {
    font-size: 14px;
    color: white;
  }

  .product-info h4 {
    font-size: 13px;
    color: white;
  }

  .product-info p {
    font-size: 12px;
    color: white;
  }

  .products-con {
    display: flex;
    flex-direction: column;
    padding: 0% 7.5%;
  }

  .reverse {
    flex-direction: column-reverse;
  }

  .products-con div {
    width: 100%;
    padding: 2.5%;
  }

  .products-con .type-image {
    overflow: hidden;
  }

  .products-con img {
    width: 100%;
    object-fit: cover;
  }

  .products-con {
    margin-top: 12.5% !important;
  }
}

.product-image {
  width: 100%;
  height: auto;
  border-bottom: 2px solid #ffffff;
}

.product-title {
  font-size: 1.4rem;
  color: #28731d;
  margin-bottom: 10px;
}

.product-title-boto {
  font-size: 1rem;
  color: #28731d;
  margin-bottom: 10px;
}

.product-description {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.5;
}

.product-price {
  font-size: 1.2rem;
  color: #28731d;
  margin-bottom: 15px;
  font-weight: bold;
}

.product-button {
  background: linear-gradient(45deg, #0056b3, #28731d);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 15px;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  text-transform: uppercase;
}

.product-button:hover {
  background: linear-gradient(45deg, #588ed1, #002a5c);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .product-container {
    grid-template-columns: repeat(2, 1fr);
    /* Two cards per row */
    justify-content: space-between;
  }
}

.contact-con {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  text-align: center;
  background: #28731d;
  color: white;
  padding: 20px 0;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.section-title {
  color: #1b2c52;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-details div {
  flex: 1 1 30%;
  margin: 10px 0;
  text-align: center;
}

.contact-details div i {
  font-size: 24px;
  color: #1b2c52;
  margin-bottom: 10px;
}

.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-item {
  flex: 1 1 48%;
  box-sizing: border-box;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

form {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

form input,
form textarea,
form button {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

form button {
  background: #588ed1;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: #00264d;
}

@media (max-width: 768px) {
  .contact-item {
    flex: 1 1 100%;
  }

  .contact-details {
    flex-direction: column;
    align-items: center;
  }

  .contact-details div {
    text-align: left;
  }
}

.about-con {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  background: linear-gradient(to right, #28731d, #005bb5);
  color: white;
  padding: 40px 0;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
  text-transform: uppercase;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.section {
  margin: 40px 0;
  padding: 20px;
  background: #f7f9fc;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section h2 {
  margin-bottom: 20px;
  text-align: center;
}

.section p {
  line-height: 1.6;
  text-align: justify;
}

.vision-mission {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.vision-mission div {
  flex: 1 1 45%;
  padding: 20px;
  text-align: center;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.vision-mission div img {
  width: 60px;
  margin-bottom: 10px;
}

.vision-mission div h3 {
  margin-bottom: 10px;
}

.founder-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.founder-section img {
  flex: 1 1 40%;
  max-width: 18%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.founder-info {
  flex: 1 1 50%;
}

.founder-info h2 {
  margin-bottom: 20px;
}

.founder-info p {
  line-height: 1.6;
}

@media (max-width: 768px) {
  .vision-mission div {
    flex: 1 1 100%;
  }

  .founder-section {
    flex-direction: column;
  }

  .founder-section img,
  .founder-info {
    flex: 1 1 100%;
  }
}

banner-con {
  margin: 0;
  font-family: Arial, sans-serif;
}

.banner {
  position: relative;
  width: 100%;
  height: 60vh;
  background: url("../img/assets/banner.webp") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.banner-content h1 {
  font-size: 2.5em;
  margin: 0;
  color: #000;
  font-weight: bold;
}

.banner-content nav {
  margin-top: 10px;
}

.banner-content nav a {
  color: #1b2c52;
  text-decoration: none;
  font-weight: bold;
  margin: 0 5px;
}

.banner-content nav a:hover {
  text-decoration: underline;
}

.banner-content nav span {
  color: #555;
  margin: 0 5px;
}

@media (max-width: 768px) {
  .banner {
    height: 40vh;
  }

  .banner-content h1 {
    font-size: 1.8em;
  }

  .banner-content {
    padding: 15px 20px;
  }
}

/* --------------------------------------- */
.about-us-images {
  display: flex !important;
  justify-content: center;
  align-content: center;
  margin-left: -15%;
}

@media (max-width: 768px) {
  .deva {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .service-color-white {
    margin-top: 15%;
  }

  .video-container {
    margin: 0%;
    padding: 0% !important;
    margin-top: 25%;
    width: 100%;
  }

  .video-container iframe {
    width: 100%;
    height: 200px;
  }

  .about-us-images {
    display: flex !important;
    justify-content: center;
    align-content: center;
    margin-left: -30%;
  }

  .founder-section img {
    min-height: 250px;
    min-width: 250px;
  }

  .contact-details {
    display: flex;
    align-items: flex-start;
  }

  .contact-details div {
    display: flex;
    flex-direction: row;
  }
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Checkbox Contact us */
.products-checkbox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.product-checkbox {
  width: 30%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  text-align: left;
}

.product-checkbox input {
  width: 15px;
  height: 15px;
}

.product-checkbox label {
  font-weight: 400;
  font-size: 10px;
  align-items: center;
}

.why-choose-organic {
  padding: 80px 10%;
  background: #fff;
  color: #333;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Card Grid Layout */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
  padding: 20px 0;
}

.reason-card {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease-in-out, opacity 0.5s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(30px);
}

.reason-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Updated Icon Styling */
.reason-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 10px;
}

.reason-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.reason-card p {
  font-size: 1rem;
  color: #555;
}

.dna-con {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background: #ffffff;
}

.dna-container {
  width: 90%;
  margin: auto;
  padding: 25px;
}

h1 {
  text-align: center;
  font-size: 1.8rem;
  padding-bottom: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
}

.herb-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
  text-align: center;
}

.herb-card:hover {
  transform: scale(1.1);
}

.herb-card p {
  font-size: 1.2rem;
  font-weight: bold;
  color: #28731d;
}

.pagination-controls {
  text-align: center;
  margin: 20px;
}

.pagination-button {
  margin: 1px;
  border: 1px solid #4ad136;
  padding: 10px 20px;
  background-color: #28731d;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.pagination-info {
  margin: 0 10px;
  font-size: 18px;
}

.form-submission {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.form-submission img {
  width: 50%;
}

.form-submit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.form-submit img {
  width: 50%;
}

form input,
form textarea,
form button {
  width: 100%;
  padding: 10px;
  margin-bottom: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 12px;
}

.form-floating>label {
  top: 0;
  left: 0;
  margin: 0;
  height: 100%;
  padding: 0px;
}

.myths-facts-section {
  background-color: #f1f4f7;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 85%;
  margin: 0 auto;
  font-family: 'Roboto', sans-serif;
}

.myths-facts-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #1b2c52;
  margin-bottom: 40px;
  font-weight: 700;
}

.myth-fact-card {
  background: #f7f7f7;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 20px;
  margin-bottom: 30px;
  color: #000;
  transition: transform 0.3s ease;
}

.myth-fact-card:hover {
  transform: translateY(-10px);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.card-header i {
  font-size: 2rem;
  margin-right: 15px;
}

.myth {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.fact {
  font-size: 1.1rem;
  color: #000;
  padding-left: 25px;
  font-style: italic;
}

.myth-fact-card p {
  margin: 0;
}

.myth-fact-card:last-child {
  margin-bottom: 0;
}

/* Home CSS Features */
.card-container {
  margin: 0% 2.5%;
  width: 95%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  position: relative;
  width: 30%;
  height: 300px;
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}

.card p {
  color: white;
  font-weight: bold;
  padding: 0% 2.5%;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
}

.card .name {
  position: absolute;
  width: 100%;
  height: 100%;
  color: white;
  font-size: 18px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: justify;
}

.name a button {
  padding: 10px;
  background-color: #1341a7;
  color: white;
  border-radius: 10px;

}

.name a button:hover {
  background-color: #1b2c51;
  color: white;
  cursor: pointer;
}

.card:hover .name {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.3);
}

.card:nth-child(1) {
  background-image: url('../img/features/1.webp');
}

.card:nth-child(2) {
  background-image: url('../img/features/2.webp');
}

.card:nth-child(3) {
  background-image: url('../img/features/10.webp');
}

.card:nth-child(4) {
  background-image: url('../img/features/3.webp');
}

.card:nth-child(5) {
  background-image: url('../img/features/9.webp');
}

.card:nth-child(6) {
  background-image: url('../img/features/4.webp');
}

.card:nth-child(7) {
  background-image: url('../img/features/6.webp');
}

.card:nth-child(8) {
  background-image: url('../img/features/7.webp');
}

.card:nth-child(9) {
  background-image: url('../img/features/5.webp');
}

@media (max-width: 768px) {
  .card-container {
    margin: 0% 2.5%;
    width: 95%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .card {
    position: relative;
    width: 90%;
    height: 300px;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
  }

  .card p {
    color: white;
    font-weight: bold;
    padding: 0% 2.5%;
  }

  .card:hover {
    transform: scale(1.05);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
  }

  .card .name {
    position: absolute;
    width: 100%;
    height: 100%;
    color: white;
    font-size: 18px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
  }

  .name a button {
    padding: 10px;
    background-color: #1341a7;
    color: white;
    border-radius: 10px;

  }

  .name a button:hover {
    background-color: #1b2c51;
    color: white;
    cursor: pointer;
  }

  .card:hover .name {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.3);
  }
}

.desktop-footer {
  display: block;
}

.mobile-footer {
  display: none;
}

@media (max-width: 768px) {
  .footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #ffffff;
    transition: 0.3s;
  }

  .footer .btn.btn-social:hover {
    color: var(--primary);
  }

  .footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
  }

  .footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
  }

  .text-align-justify {
    text-align: justify;
  }

  .footer .btn.btn-link:hover {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
    font-weight: bold;
  }

  .footer .copyright {
    padding: 5px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
  }

  .footer p{
    padding: 5px 0 !important;
    margin: 0px !important;
    font-size: 14px;
  }

  .footer .copyright a {
    color: #FFFFFF;
  }

  .footer .copyright a:hover {
    color: #FFFFFF;
    font-weight: bold;
  }

  .desktop-footer {
    display: none !important;
  }

  .mobile-footer {
    display: block !important;
  }

  .quick-link-mob {
    display: inline-flex !important;
    width: 100%;
    justify-content: space-between;
  }
}