.flex1 {
  display: flex;
}

/* Hero starts here */

.hero {
  position: relative;
  background-color: rgba(0, 137, 122, 1);
  color: white;
  min-height: 90vh;
  padding: clamp(2rem, 4vw, 4rem) 0;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

.hero::before {
  background: linear-gradient(rgba(0, 137, 122, 0.9), rgba(0, 137, 122, 0.8));
  filter: grayscale(50%);
  z-index: 2;
}

.hero::after {
  background: url("../images/home/FetchMonie-lady.png");
  background-position: 100% bottom;
  background-size: contain;
  background-repeat: no-repeat;
  height: 100%;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-text {
  color: white;
  max-width: 600px;
  text-align: left;
}

.hero-text h1 {
  color: white;
  font-size: clamp(2.5rem, 5vw, 6rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-text p {
  color: white;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.5;
  margin-bottom: 2rem;
}

/* install fetchmonie pwa starts here */
#install-btn {
  background-color: transparent;
  color: #fc6102;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 14px;
  margin-top: 10px;
  display: none;

  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* CAC certification starts here */
.certificate {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.certificate .text-logo-cover {
  margin-bottom: -8rem;
  border-radius: 30px;
  font-size: 10px;
}

.certificate .text-logo-cover p {
  color: black;
}

.certificate p {
  margin-bottom: 0;
}

.certificate img {
  max-width: 40px;
  height: auto;
}


@media (max-width: 991px) {
  .hero {
    min-height: 70vh;
  }

  .hero::after {
    background-position: right bottom;
    opacity: 0.4;
  }

  .hero-text {
    margin-right: auto;
  }

  .hero-text h1 {
    color: white;
    margin-top: -1.5rem;
    font-size: 3rem;
  }

  .hero-text p {
    font-size: 15.5px;
    line-height: 1.5;
  }

  .btn1,
  .btn2 {
    padding: 10px 40px;
  }
}

.btn1,
.btn2 {
  padding: 10px 30px;
}

.btn1 {
  /* background-color: inherit; */
  border: 1px solid white;
  color: white;
}

.btn2 {
  background: rgba(255, 143, 0, 1);
  /* border: none; */
  color: white;
}

/* Services start here */
.services .container h1 {
  margin-top: -2rem;
}

.services .container p {
  line-height: 1.4;
  font-size: 15.5px;
}

.card-img-div {
  border-radius: inherit;
  overflow: hidden;
}

.card-img-div img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.card-img-data {
  background-color: #00897a;
}

.data-sub-image {
  object-fit: contain !important;
}

.phone {
  position: absolute;
  left: 140px;
}

.couple {
  position: relative;
  object-fit: cover;
}

/* About section */
.about {
  background: linear-gradient(180deg, #00897a 39.9%, #00231f 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.about .row {
  position: relative;
  z-index: 2;
}

.sec3-text {
  padding: 2rem;
  max-width: 600px;
  text-align: left;
}

.sec3-text h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1.5rem;
}

.sec3-text p {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.9;
}

.about-img-container {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 90%;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.about-img {
  width: 100%;
  max-width: 450px;
  max-height: 450px;
  height: auto;
  object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .hero::after {
    background-position: 50% bottom;
    background-size: cover;
  }

  .about-img-container {
    width: 40%;
  }

  .about-img {
    max-width: 400px;
  }
}

@media (max-width: 991px) {
  .about-img-container {
    width: 35%;
  }

  .about-img {
    max-width: 350px;
    margin-top: -2.5rem;
  }

  .sec3-text {
    padding: 1.5rem;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }

  .hero-text p br {
    display: none;
  }

  .about-img-container {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 2rem;
    justify-content: center;
  }

  .about-img {
    max-width: 300px;
  }

  .sec3-text {
    padding: 1rem 0;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 50vh;
  }

  .hero-text h1 {
    color: white;
    font-size: 2.4rem;
  }

  .hero-text,
  .sec3-text {
    text-align: center;
  }

  .about-img {
    max-width: 250px;
  }

  .btn1,
  .btn2 {
    padding: 8px 24px;
    font-size: 0.9rem;
  }
}

/* Join us starts here */
.join-us {
  padding: 0px;
  margin: 0px;
  background-image: url("../images/home/sec-4-imgleft.svg"),
    url("../images/home/sec-4-imgright.svg");
  background-position: left bottom, right top;
  background-size: 100px 100px, 100px 100px;
  background-repeat: no-repeat;
}

.oragnge-text p {
  color: var(--orange-600);
}

/* Referral starts here  */
.Referral {
  padding: clamp(2.5rem, 4vw, 4rem) 0;
  overflow: hidden;
}

.sec5-img {
  margin-top: clamp(2rem, 3vw, 4rem);
  text-align: center;
}

.sec5-img img {
  max-width: 450px;
  width: 100%;
  height: auto;
}

@media (max-width: 576px) {
  .Referral .heading1 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 1rem;
    text-align: center;
  }

  .Referral p {
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .Referral ul {
    list-style: none;
    text-align: center;
    padding: 0;
  }

  .Referral .btn2 {
    display: block;
    margin: 0 auto;
    min-width: 160px;
  }
}

/* contacts starts here  */
.small-div {
  max-width: 800px;
  margin: 0 auto;
  justify-content: center;
}

.small-div2 {
  background: rgba(0, 72, 64, 1);
  max-width: 550px;
  margin: 30px auto;
  color: white;
  position: relative;
  border-radius: 10px;
}

.small-div2::after {
  content: "";
  width: 30px;
  height: 30px;
  background-color: rgba(0, 72, 64, 1);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.big-p {
  font-size: 23px;
}

.contact img {
  width: 53px;
  height: 53px;
}

/* How to use starts here */
.how-to-use {
  padding: 20px;
  background-image: url(../images/home/sec7-bgimg.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.sec7-img1 {
  max-width: 450px;
  width: 100%;
}

.sec7-div1 {
  align-items: center;
}

.sec7-div2 {
  margin-bottom: 20px;
}

.num-circle {
  width: 50px;
  height: 50px;
  border: 2px solid var(--orange-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 18px;
  font-weight: bold;
  color: var(--orange-600);
}

.how-to-use p {
  margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .num-circle {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .sec7-div2 {
    margin-bottom: 20px;
  }

  .num-circle {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

/* data-list starts here  */
.data-list {
  background-color: rgba(204, 211, 210, 1);
  background-image: url("../images/home/sec-4-imgleft.svg"),
    url("../images/home/sec-4-imgright.svg");
  background-position: left bottom, right top;
  background-size: 100px 100px, 100px 100px;
  background-repeat: no-repeat;

  background-attachment: local, local;
  /* Ensure images are positioned relative to the element */

  padding: 0;
  /* Remove padding */
  margin: 0;
  /* Remove margin */
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

/* FAQ-section starts here  */
.sec9-div2 {
  background: linear-gradient(175.85deg, #ff8f00 34.96%, #995600 96.62%);
  border-radius: 5px;
}

.faq-flex {
  display: flex;
  justify-content: space-between;

  margin-bottom: 10px;
  background-color: white;
  border-radius: 10px;
}

.faq-talk {
  margin-bottom: 20px;
  display: none;
  color: white;
}

.light>li {
  color: white;
}

.sec9-img1 {
  display: block;
  max-width: 100%;
  height: auto;
}

.sec9-img2,
.sec9-img3 {
  position: absolute;
}

.sec9-img2 {
  top: 49%;
  left: 45%;
  height: 200px;
  width: 200px;
}

.sec9-img3 {
  top: 30%;
  left: 55%;
  height: 100px;
  width: 100px;
}

@media (max-width: 990px) {
  .sec9-img2 {
    height: 150px;
    width: 150px;
  }

  .sec9-img3 {
    height: 80px;
    width: 80px;
  }
}

/* Testimonials start here */
.testimonials {
  padding: 2rem 0;
  background: rgba(0, 72, 64, 0.2);
  background-image: url("#"),
    url("../images/home/sec10-bgflower2.svg");
  background-position: left bottom, right bottom;
  background-size: 100px 100px, 100px 100px;
  background-repeat: no-repeat;
}

.carousel-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
}

.carousel-card-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sect10-card-text {
  flex: 1;
  padding: 15px;
  font-size: 14px;
}

.text-orange {
  color: var(--orange-600);
}

.flex2 img {
  width: 15px;
  height: 15px;
}

.sect10-card-text-p1 {
  line-height: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-card {
    margin: 0 auto;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 10%;
  }

  .img-fluid {
    width: 100%;
    object-fit: cover;
  }
}

@media (max-width: 576px) {
  .carousel-card {
    margin: 0 auto;
    padding: 0;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 15%;
  }

  .img-fluid {
    width: 100%;
    object-fit: cover;
  }

  .sect10-card-text {
    font-size: 10px;
  }

  .sect10-card-text-p1 {
    line-height: 10px;
  }
}

@media (max-width: 767px) {

  .section11 .col-md-4,
  .section11 .col-md-8 {
    text-align: center;
  }

  .foot-div {
    margin-top: 30px;
  }

  .big-logo {
    width: 50%;
    height: auto;
  }

  .foot-div1 {
    margin-top: 1000px;
  }
}

@media (max-width: 990px) {
  .foot-div {}

  .foot-div p {
    font-size: 14px;
  }
}