* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  line-height: 1;
  font-family: "Poppins";
  /* background-color: #f8fdff; */
}

.main-container {
  position: relative;
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 6rem;
  /* background-color: #f8fdff; */
  /* background-image: url(/img/Ellipse\ 11.png);
  background-position: center;
  background-repeat: no-repeat; */
  background-size: cover;
  /* @media (max-width: 900px) {
    background-image: url(/img/Ellipse\ 10.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  } */
}

h2 {
  font-family: "Manrope";
  font-size: 3.2rem;
  line-height: 38px;
  font-weight: 700;
  color: black;
  text-align: center;
  margin-bottom: 1.2rem;
}
.edit-h2 {
  font-family: "Manrope";
  font-size: 4rem;
  line-height: 50px;
}
h3 {
  font-family: "Manrope";
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 28.27px;
  text-align: center;
  margin-bottom: 2rem;
}
h5 {
  font-family: "Manrope";
  font-size: 2rem;
  font-weight: 700;
  line-height: 23.42px;
  color: #333333;
}
.small-p {
  font-size: 1.5rem;
  line-height: 28px;
}
.big-p {
  font-size: 1.6rem;
  line-height: 30px;
}
#bold-link {
  color: #008080;
  font-weight: 700;
}
.c-change {
  color: #008080;
}
.contact-hero-text p {
  line-height: 32px;
}

/* margin betwn evry section */
.margin-s {
  margin: 8rem 0rem;
}

/* ome random style for the bl;ue bg */
.wire-page-1 {
  z-index: -1;
}
.right-side-img-blue-T {
  position: absolute;
  top: 0;
  right: 0px;
  z-index: -1;
}
.left-side-img-blue-T {
  position: absolute;
  top: 0;
  left: 0px;
  z-index: -1;
}
.waves {
  display: block;
  @media (max-width: 800px) {
    display: none;
    z-index: -1;
  }
}

/* main style here */

/* header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem; /* Reduced from previous value */
  margin-top: -20px;
}

@media (max-width: 768px) {
  header {
    margin-top: 0;
  }
}

/* Existing logo styles */
.logo-top {
  cursor: pointer;
  margin-left: -50px;
}

@media (max-width: 768px) {
  .logo-top {
    margin-left: -20px;
  }
}

/* Hero section styles */
.hero {
  margin-top: 1rem; /* Add a small top margin to the hero section */
}

/* If you're using a margin utility class like 'margin-s' */
.margin-s {
  margin-top: 1rem; /* Adjust this value as needed */
}
#navbar-group {
  display: flex;
}
#navbr li {
  list-style: none;
  margin-left: 2rem;
}
.link {
  font-family: "Poppins";
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  color: #888888;
  @media (max-width: 800px) {
    font-size: 1.4rem;
  }
}
.special-link {
  display: none;
}
/*navigations */
.mobile {
  display: none;
}
#menu {
  height: 24px;
  width: 24px;
}

/* hero */
.hero {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  z-index: 999;
  align-items: center;
}
.hero-text {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  /* background: none; */
  /* gap: 3rem; */
}
.page-1-btn {
  font-size: 1.7rem;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.material-symbols-outlined {
  font-weight: 800;
}
.p-btn {
  margin-top: 3rem;
  align-self: flex-start;
  color: #fff;
  background: linear-gradient(to right, #00d4d4, #008080);
  outline: none;
  border: none;
  padding: 14.15px 30.48px 14.15px 30.48px;
  font-weight: 700;
  font-size: 1.6rem;
  cursor: pointer;
  font-family: "Manrope";
  border-radius: 9px;
  transition: 0.5s ease-in-out;
}

/* .hero-img {
  flex-basis: 50%;
  mix-blend-mode: multiply;
} */

.hero-container {
  display: flex;
  flex-basis: 50%;
  mix-blend-mode: multiply;
  position: relative;
  /* width: 100%; */
  /* height: 100vh; */
  /* Adjust height as needed */
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-img {
  position: absolute;
  bottom: 120px;
  /* Adjust position as needed */
  left: -60px;
  /* Adjust position as needed */
  width: 320px;
  /* Adjust size as needed */
}

.text-box-container {
  position: absolute;
  bottom: -5%; /* Adjust position as needed */
  right: 30%; /* Adjust position as needed */
  transform: translate(50%, 0%);
  background: rgba(255, 255, 255, 0.95); /* Semi-transparent background */
  padding: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* display: flex; */
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  width: 60%;
}

.text-box-container .image-wrapper {
  position: relative;
  width: 50px; /* Adjust size as needed */
  height: 50px; /* Adjust size as needed */
  margin-bottom: -25px; /* Move half of the image height outside the box */
}

.text-box-container .image-wrapper img {
  position: absolute;
  top: -20px; /* Move the image up to be half outside */
  width: 100%;
  height: auto;
}

.text-box-container p {
  margin: 10px 2px 0; /* Adjust margin to accommodate the image */
  font-size: 1.25rem; /* Adjust font size as needed */
  color: #333;
  /* text-align: center; */
}

/* why choose us */
.choose-us {
  padding: 2rem;
  border: 2px solid #008080;
  border-radius: 19px;
  /* margin-top: 4rem;
  margin-bottom: 8rem; */
  position: relative;
  z-index: 999;
  background: linear-gradient(to bottom, #ffffff, #f8fdff);
}
.choose {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99999999999;
}
.choose-text {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
}

.choose-img {
  flex-basis: 50%;
}
.chose-sml-img {
  width: 80%;
}
.show-h3 {
  display: none;
}
.dots {
  position: absolute;
  bottom: -3rem;
  right: -2rem;
  z-index: 0;
}
/* our missoions */
.m-img img {
  width: 100%;
  position: relative;
}
.parrent {
  position: relative;
}
.elips-13 {
  position: absolute;
  right: 0;
  top: -260px;
  z-index: -1;
  /* top: 0px; */
}
.our-missin {
  position: relative;
  display: flex;
  gap: 5rem;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #00d4d4, #008080);
  color: #fff;
  border-radius: 28px;
  padding-right: 4rem;
  margin-bottom: 5rem;
}
.m-text {
  flex-basis: 60%;
}
.m-p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 2.4rem;
  font-family: "Manrope";
}
.m-H {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1.6rem;
}
.w-btn {
  background-color: #fff;
  color: #008080;
  border: none;
  outline: none;
  padding: 16px 20px;
  font-size: 2rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}
.destoop {
  display: block;
  position: absolute;
  top: -30%; /* Adjust this value to position the image above the container */
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1; /* Ensure the image is behind other content */
}
.mobile-img {
  display: none;
}
/* Media query to hide desktop images and show mobile images on smaller screens */
@media (max-width: 500px) {
  .destoop {
    display: none; /* Hide desktop image on mobile devices */
  }

  .mobile-img {
    display: block; /* Show mobile image on mobile devices */
    width: 100%; /* Adjust width as needed */
    height: auto; /* Maintain aspect ratio */
  }
}
.dots-T {
  position: absolute;
  top: -3rem;
  left: -2rem;
  z-index: -1;
}
.dots-B {
  position: absolute;
  bottom: -3rem;
  right: -2rem;
  z-index: -1;
}

.specialities-layout {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.specialities-box {
  text-align: center; /* Ensure text is centered within each box */
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  .specialities-layout {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Ensure all items are centered */
    gap: 1rem; /* Add space between items */
  }

  .specialities-box {
    width: 90%; /* Set a specific width or max-width */
    max-width: 500px; /* Ensure boxes do not exceed a maximum width */
    margin: 0.5rem 0; /* Add margin around each box */
  }

  #all-specialties-btn {
    order: 5; /* Ensure this is the last item if needed */
    align-self: center; /* Center the item if not already centered */
  }
}

.desk-p {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  color: #b0b0b0;
  max-width: 60ch;
  margin-bottom: 3rem;
  margin-top: 1.4rem;
}
.page1-form {
  display: flex;
  gap: 2rem;
  /* justify-content: space-between; */
}
.input {
  padding: 1.8rem;
  border: 2px solid #a0e0ff;
  border-radius: 12px;
  width: 40%;
  max-width: 500px;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.page1-form input {
  font-family: "Manrope";
  color: #b0b0b0;
  font-weight: 600;
  font-size: 1.6rem;
  flex: 1;
  min-width: 0;
}
.page1-form input:focus {
  outline: none;
}
.page1-form .p-btn {
  margin: 0;
  font-family: "Manrope";
  padding: 1.8rem;
  flex-basis: 20%;
  font-size: 2.4rem;
  font-weight: 700;
}
.testi-top-p {
  font-family: "Manrope";
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 18.01px;
  text-align: center;
  color: #b0b0b0;
}

/* testimonals */
.testi-layout {
  position: relative;
  margin-top: 3rem;
}
.vector-T {
  position: absolute;
  top: -50px;
  left: -30px;
  z-index: -1;
}
.vector-B {
  position: absolute;
  bottom: -50px;
  right: -30px;
  z-index: -1;
}
.customers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.cus {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  padding: 3rem 4rem;
  border-radius: 15px;
  border: 1.5px solid #4ec6ff;
}
.cus1 {
  background: linear-gradient(to right, #ebf8ff, #fdfeff);
}
.cus2 {
  background: linear-gradient(to right, #fdfeff, #ebf8ff);
}
.cus1-p {
  font-family: "Manrope";
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 18.01px;
  text-align: justify;
  color: #6d6d6d;
  line-height: 20px;
}
.cus1-p span {
  font-weight: 700;
}

/* footer */
h6 {
  font-size: 1.8rem;
  color: #008080;
  font-weight: 700;
  font-family: "Manrope";
  margin-bottom: 3rem;
}
footer {
  width: 100%;
  background-color: #f2faff;
  padding: 5rem 1.2rem 1rem;
}

footer {
  width: 100%;
  background-color: #f2faff;
  padding: 5rem 1.2rem 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}

.logo-about-group {
  display: flex;
  gap: 2rem;
  flex: 2;
}

.footer-logo {
  flex: 1;
  max-width: 150px;
}

.footer-logo img {
  max-width: 100%;
  height: auto;
}

.about {
  flex: 2;
}

.contact {
  flex: 1;
}

.section-title {
  font-size: 1.6rem;
  color: #008080;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-p {
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  color: #6d6d6d;
  margin-bottom: 1rem;
}

.footer-p--change {
  max-width: 100%;
}

.contact-list {
  list-style-type: none;
  padding: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
}

.contact-icon {
  width: 24px;
  height: 24px;
  margin-right: 0.8rem;
  flex-shrink: 0;
}

.contact-text {
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #6d6d6d;
}

.social-sm {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hr-footer {
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-bg {
  display: flex;
  gap: 1rem;
}

.copyright-text {
  font-size: 1.2rem;
  color: #6d6d6d;
}

@media (max-width: 1024px) {
  .footer-content {
    flex-direction: column;
  }

  .logo-about-group {
    width: 100%;
  }

  .contact {
    width: 100%;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .logo-about-group {
    flex-direction: column;
  }

  .footer-logo {
    max-width: 120px;
    margin-bottom: 1rem;
  }
}
.social-bg {
  display: flex;
  gap: 1rem;
}

.copyright-text {
  font-size: 1.2rem;
  color: #6d6d6d;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }

  .footer-logo,
  .about,
  .contact {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.contact-item .contact-text {
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 30.96px;
  color: #6d6d6d;
}
.links a {
  text-decoration: none;
  color: #6d6d6d;
}
.footer-bottom {
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0 0 0;
}
.social-bg {
  display: flex;
  gap: 2rem;
}
.social-bg img,
.social-sm img {
  cursor: pointer;
}
.social-sm {
  display: none;
}
.copyright-text {
  font-family: "Manrope";
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 17.96px;
  color: #b0b0b0;
}

/* page2 */
.grn-hd {
  position: relative;
}
.cur-hd {
  position: relative;
}
.curve-line-about {
  position: absolute;
  right: 0px;
  top: -210px;
  z-index: -1;
}
.grn-ln {
  background-color: #008080;
  height: 4px;
  width: 95px;
  position: absolute;
  top: 35px;
}
.hero-chge {
  display: flex;
  gap: 4rem;
  align-items: center;
}
.mdl-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  justify-content: space-between;
  padding: 2rem 1rem;
}
.mdl-boxes::-webkit-scrollbar {
  display: none;
}
.mdl-bx {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 20rem;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0px 4px 32px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  border-radius: 19px;
  transition: all 0.4s;
}
.mdl-bx:hover {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

/* chat gpt slider */

/* ************ */

/* form page-2 */
.form-page2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 2rem;
  column-gap: 3rem;
}
.form-page2 input,
.form-page2 select {
  font-family: "Manrope";
  color: #b0b0b0;
  font-weight: 600;
  font-size: 1.6rem;
  padding: 1.8rem;
  border-radius: 7px;
  border: 1px solid #000000;
  /* outline: 2px solid #000000; */
}

.full-btn {
  width: 100%;
  padding: 1.8rem;
  font-family: "Montserrat";
}
.form-page2 button {
  grid-column: 1/-1;
}

/* contact us page styling */
.contact-hero {
  background-color: #e6f2f2;
  border-radius: 19px;
  padding: 4rem 6rem;
}
.contact-hero-img {
  background-color: #fff;
  border-radius: 26px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  padding: 4rem 3rem;
}
.contact-form-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
}
.form-contact-page {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.form-contact-page input,
.form-contact-page select {
  font-family: "Manrope";
  color: #b0b0b0;
  font-weight: 600;
  font-size: 1.6rem;
  padding: 1.8rem;
  border: 1px solid #828282;
  width: 100%;
}
.location iframe {
  width: 100%;
  border-radius: 19px;
}

/* Services page styling */
.services-card-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3%;
}

@media (max-width: 800px) {
  .services-card-container {
    grid-template-columns: 1fr; /* Single column layout */
    gap: 2rem;
    justify-items: center; /* Center items in the column */
  }
}

/* Assuming .services-card-container2 is another container */
.services-card-container2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Display 3 columns */
  gap: 4rem;
}

@media (max-width: 800px) {
  .services-card-container2 {
    grid-template-columns: 1fr; /* Single column layout */
    gap: 2rem;
    justify-items: center; /* Center items in the column */
    overflow-x: auto; /* Add horizontal scrolling if needed */
  }
}

.services-card-container::-webkit-scrollbar {
  display: none;
}
.services-card-container2::-webkit-scrollbar {
  display: none;
}
.service-card {
  padding: 2rem;
  border-radius: 21px;
  @media (max-width: 800px) {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    padding: 1rem;
    width: 300px;
    height: 150px;
  }
}
.wht {
  background-color: #fff;
  border: 0.2px solid #008080;
}
.grn {
  border: none;
  background: linear-gradient(to right bottom, #00d4d4, #008080);
}
.service-card h6 {
  font-size: 2rem;
  text-transform: capitalize;
  @media (max-width: 800px) {
    font-size: 1.4rem;
  }
}
.service-card p {
  font-size: 1.4rem;
  text-transform: capitalize;
  line-height: 26px;
  @media (max-width: 800px) {
    font-size: 1.2rem;
    margin-top: auto;
    line-height: 17px;
  }
}
.icon-heading-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  @media (max-width: 800px) {
    margin-bottom: 1rem;
  }
}
.farme-sml {
  display: none;
  @media (max-width: 800px) {
    display: block;
  }
}
.farme-bg {
  display: block;
  @media (max-width: 800px) {
    display: none;
  }
}
/* ****************************** */
/* .service-layout {
  @media (max-width: 900px) {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
  }
} */
.our-services {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-bottom: 3rem;
}
.our-services-reverse {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-bottom: 3rem;
}

.service-box {
  position: relative;
  width: 500px;
  background: linear-gradient(to right bottom, #00d4d4, #008080);
  padding: 3rem;
  border-radius: 22px;
}

.service-box-outline {
  width: 500px;
  border: 0.2px solid #008080;
  background-color: #fff;
  border-radius: 21px;
  padding: 3rem;
}
/* blogs page css */
.blogs-layout {
  display: flex;
  gap: 4rem;
  margin-top: -16rem;
}
.box {
  flex-basis: 50%;
  padding: 2rem;
  border-radius: 19px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border: 0.2px solid #008080;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
.box img {
  width: 100%;
  border-radius: 17px;
  margin-bottom: 1rem;
}
/* Specialties  page css */
.spec-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  background-color: #e6f2f2;
  border-radius: 19px;
  padding: 4rem 6rem;
  padding-bottom: 10rem;
  margin: 0 2rem;
}
.specs-froms-box {
  background-color: #fff;
  padding: 4rem 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  border-radius: 19px;
  margin: 0 5rem;
  margin-top: -8rem;
}

.form-specs {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.form-specs input,
.form-specs select {
  padding: 1.8rem;
  flex-basis: 30%;
  border: 0.2px solid #008080;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1.2rem;
  color: #000000;
}
.form-specs input::placeholder {
  color: #000000;
}
.form-specs input:focus {
  outline: none;
}
.form-specs button {
  background: linear-gradient(to right, #00d4d4, #008080);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Poppins";
  padding: 0.6rem 1.2rem;
  flex-basis: 15%;
  border-radius: 8px;
  padding: 1.8rem 0.6rem;
}
.boxes-8 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
}
.box-no1 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 20rem;
  justify-content: center;
  align-items: center;
  /* background-color: #ffffff; */
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  border-radius: 19px;
  transition: all 0.4s;
  border: 2px solid #008080;
}
.box-no1:hover {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.box-no2 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 20rem;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 19px;
}
.chnaged-bg-boxes {
  padding: 6rem 3rem;
  margin-bottom: 4rem;
  background: linear-gradient(to right bottom, #00d4d4, #008080);
}
.form-specs-2 {
  display: flex;
  justify-content: center;
}
.form-specs-2 input {
  /* flex-basis: 80%; */
  width: 80%;
  border: 0.87px solid #008080;
  border-radius: 10px;
  padding: 1.8rem;
  border-right: none;
  font-size: 1.4rem;
}
.form-specs-2 button {
  /* flex-basis: 10%; */
  border-radius: 0px 10px 10px 0px;
  padding: 1.8rem;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: "Poppins";
  margin-left: -1rem;
}
.for-destop {
  margin: 5rem auto;
}
.for-mobile {
  display: none;
  background: linear-gradient(to right bottom, #00d4d4, #008080);
  padding: 2rem;
  border-radius: 19px;
}
.form-mbile input {
  width: 70%;
  color: #4ec6ff;
  background: none;
  color: #fff;
  border: 0.87px solid #e0e0e0;
}
.form-mbile input::placeholder {
  color: #fff;
}
