* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rethink Sans", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #f5f5f5;
  overflow-x: hidden;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}
/* top header */
.top-header {
  background-color: #01731c;
  color: white;
}
.top-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
}
.social-icon img {
  height: 18px;
  width: 18px;
}
/* top header end */
/* Header Styles */

header {
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* padding: 15px 0; */
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 10px 15px;
}

.logo {
  display: flex;
  align-items: center;
}
.logo a img {
  /* width: 250px; */
  height: 80px;
  width: 100px;
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 200;
}

.burger-line {
  width: 100%;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 12px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #1eaa6f;
}
.call-btn {
  margin-left: 20px;
  background-color: #9c3553;
  color: white;
  padding: 5px 15px;
  border-radius: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.4s all ease-in-out;
}
.call-btn:hover {
  transform: scale(1.1);
}
.contact-btn {
  background-color: #fe427d;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  margin-left: 15px;
  transition: background-color 0.3s;
  border: 1px solid transparent;
}

.contact-btn:hover {
  background-color: white;
  color: #7fa908;
  border-color: #7fa908;
}

.social-icons {
  display: flex;
  margin-left: 20px;
}

.social-icons a {
  margin-left: 10px;
  color: #333;
  font-size: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.social-container a:hover {
  /* background-color: #6AAD39; */
  /* color: #B565AC; */
}
@media (min-width: 769px) and (max-width: 1024px) {
}

@media (max-width: 768px) {
  .header-container {
    padding: 10px 15px;
  }
  .burger-menu {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .nav-menu.active {
    max-height: 500px;
    padding: 20px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    margin: 0 0 15px 0;
  }

  .nav-links li {
    margin: 10px 0;
    width: 100%;
  }

  .contact-btn {
    margin: 10px 0;
  }
  .social-container {
    flex-direction: column;
    margin-top: 30px;
  }
  .social-icons {
    margin: 15px 0 0 0;
  }

  /* Burger menu animation */
  .burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.active .burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* header styles end */

/* hero section */

.hero-section {
  /* padding: 50px 0 0; */
  background-color: #fe427d;
  /* background-image: url("./assets/hero_bg.webp"); */

  /* background: linear-gradient(to right, rgba(30, 170, 111, 1) 33%, rgba(30, 170, 111, 0) 76%); */
  position: relative;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-section::before {
  content: "";
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to right, rgba(30, 170, 111, 1) 33%, rgba(30, 170, 111, 0) 76%); */
  background: url("assets/dr-patient.webp");
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  /* z-index: 1; */
  background-repeat: no-repeat;
  background-size: 50% 100%; /* Half width, full height */
  background-position: left center;
}
.hero-content {
  /* background-image: url("assets/lady_doctor.webp"); */
  position: relative;
  z-index: 2;
  /* padding: 120px 0px 175px; */
  background-position: right bottom;
  background-repeat: no-repeat;
  display: flex;
}
.hero-left {
  flex: 1;
  padding: 155px 0 155px 150px;
}
.date-time {
  font-size: 26px;
  color: white;
  border-bottom: 1px solid white;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
.hero-right {
  flex: 1;
}
.hero-dr-card {
  position: absolute;
  bottom: 50%;
  right: 0;
  transform: translateY(50%);
  background: white;
  color: #000;
  padding: 50px;
  border-radius: 10px;
  max-width: 420px;
}
.hero-dr-card-content {
  /* position: relative; */
  display: flex;
  flex-direction: column;
  text-align: center;
}
/* .dr-category{
        background: #F86821;
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        color: #fff;
        padding: 5px 15px;
        border-radius: 6px;

    } */
.dr-icon {
  height: 70px;
  width: 70px;
  margin: 0 auto 20px;
}
/* span.dr-name {
        font-size: 30px;
        text-transform: capitalize;
        line-height: 1.3;
    } */
.divider {
  height: 2px;
  width: 150px;
  margin: 20px auto;
  background-color: white;
}
.social-container {
  margin-top: 70px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.hero-social-icons {
  display: flex;
  gap: 15px;
  /* margin-bottom: 20px; */
  position: relative;
  margin-left: 20px;
}
.hero-social-icons a {
  display: inline-flex;
}
/* .hero-social-icons::before{
        content: "";
        width: 100%;
        max-width: 400px;
        height: 3px;
        background-color: #C00000;
        display: block;
        position: absolute;
        top: 50%;
        left: 110px;

    } */
.hero-social-icon {
  background: #fe427d;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 10px;
}
.hero-social-icon img {
  width: 28px;
  height: 28px;
}
.hero-social-icon:hover {
  background-color: #7fa908;
}
.hero-left h1 {
  font-size: 70px;
  color: white;
  max-width: 750px;
  font-weight: 600;
  line-height: 1.2;
}
.hero-desc {
  max-width: 680px;
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 40px;
  color: white;
}
.schedule-button {
  background: #fff;
  font-size: 20px;
  color: #fe427d;
  border-radius: 10px;
  padding: 30px 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.4s ease-in-out;
  border: 1px solid transparent;
}
.schedule-button:hover {
  background-color: #fe427d;
  color: #fff;
  border-color: white;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-content {
    background-image: none;
    padding: 40px 10px 50px;
    /* background: #E3E7EB; */
    flex-direction: column;
  }
  .hero-section::before {
    background: none;
  }
  .hero-left {
    padding: 20px 0;
  }
  .hero-left h1 {
    max-width: 100%;
    font-size: 60px;
  }
  .hero-right {
    padding: 30px 0 0;
    position: relative;
  }
  .hero-dr-card {
    position: relative;
    margin: 0 auto;
    margin: 0 auto;
    left: 0;
    transform: none;
  }
}

@media (max-width: 768px) {
  .hero-section::before {
    background: none;
  }
  .hero-left {
    padding: 20px 0;
  }
  .hero-right {
    padding: 0px 0 0;
    position: relative;
  }
  .hero-dr-card {
    position: relative;
    margin: 0 auto;
    left: 0;
    padding: 30px 15px;
    transform: none;
  }
  .hero-section {
    /* margin-bottom: 30px; */
  }
  .hero-content {
    background-image: none;
    padding: 40px 0px 50px;
    /* background: #E3E7EB; */
    flex-direction: column;
  }
  span.dr-name {
    font-size: 20px;
  }
  .hero-social-icons::before {
    width: 100%;
    max-width: 150px;
  }
  .hero-left h1 {
    font-size: 36px;
  }
  .hero-desc {
    font-size: 18px;
    margin: 20px 0;
    color: #034e78;
    background-color: white;
    padding: 20px 10px;
    border-radius: 10px;
  }
  .schedule-button {
    padding: 12px 10px;
    font-size: 16px;
  }
  .social-container {
    flex-direction: column;
    margin-top: 30px;
  }
}
/* hero section end */

/* contact form */
.contact-form-section {
  background: #9c3553;
  padding: 100px 0;
}
.contact-form {
  /* display: flex;
  flex-wrap: wrap;
  gap: 20px; */
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="submit"] {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  background-color: #e2f1f0;
}
.contact-form input[type="submit"] {
  background-color: #9bae01;
  color: white;
  cursor: pointer;
  /* flex: 0 0 auto; Prevent submit from stretching */
  padding: 12px 24px;
  transition: background 0.3s ease;
  min-width: 280px;
}

.contact-form input[type="submit"]:hover {
  background-color: #e2f1f0;
  color: #9c3553;
}
@media (max-width: 768px) {
  .contact-form-section {
    padding: 40px 0;
  }
}
/* contact form end */
/* Services section */
.services-section {
  padding: 100px 0px 100px 0px;
  background-color: #7fa908;
}
.services-header {
  display: flex;
  gap: 20px;
  align-items: center;
}
.service-title {
  font-size: 60px;
  color: white;
}
.service-line {
  flex: 1;
  background: #fff;
  height: 2px;
  width: 100%;
}
.service-button {
  padding: 10px 20px;
  color: #7fa908;
  background: #f3f3f3;
  border-radius: 6px;
  box-shadow: 0 14px 14px rgba(0, 0, 0, 0.1);
}

.features-section {
  display: flex;
  justify-content: space-between;
  padding: 50px 30px;
  /* background-color: #01731c; */
  gap: 30px;
  flex-wrap: wrap;
  border-radius: 20px;
}

.feature-item {
  background: transparent;
  color: #fff;
  flex: 1 1 30%;
  min-width: 250px;
  max-width: 300px;
  display: flex;
  gap: 20px;
}

.feature-item .icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-item .icon img {
  width: 40px;
  height: 40px;
}

.feature-item h6 {
  font-size: 26px;
  margin-bottom: 5px;
  color: #ffffff;
}

.feature-item p {
  font-size: 16px;
  line-height: normal;
  margin-bottom: 10px;
}
.feature-item a {
  color: white;
  font-size: 18px;
}
@media (min-width: 769px) and (max-width: 1124px) {
  .features-section {
    top: 20px;
  }
}
@media (max-width: 768px) {
  .services-section {
    padding: 30px 0;
  }
  .services-header {
    gap: 8px;
  }
  .service-title {
    font-size: 24px;
  }
  .features-section {
    gap: 20px;
    padding: 40px 0px;
  }
  .feature-item .icon {
    width: 60px;
    height: 60px;
  }
  .service-button{
    display: none;
  }
}
/* Services section End */

/* Doctors section */
.doctors-section {
  /* padding: 100px 0 0; */
  background: #fe427d;
}
.doctor-content {
  padding: 100px 0;
  display: flex;
  background: url("assets/male-dr.webp");
  background-repeat: no-repeat;
  background-position: left bottom;
}
.dr-left,
.dr-right {
  flex: 1;
}
.dr-right h2 {
  font-size: 70px;
  color: white;
  letter-spacing: 0.7px;
}
.dr-card {
  margin-top: 100px;
  padding: 40px 50px;
  background: #7fa908;
  max-width: 480px;
  color: white;
}
.dr-name {
  font-size: 32px;
  font-weight: 600;
  text-transform: capitalize;
}
.dr-title {
  font-size: 22px;
  margin: 5px 0 20px;
  display: inline-block;
}
.dr-card p {
  font-size: 18px;
}

@media (min-width: 769px) and (max-width: 1200px) {
}
@media (max-width: 991px) {
  .dr-right h2 {
    font-size: 40px;
    text-align: center;
  }
  .doctor-content {
    padding: 40px 0;
    background: none;
    flex-direction: column;
  }
  .dr-card {
    margin: 30px auto;
  }
}
@media (max-width: 480px) {
  .dr-right h2 {
    font-size: 24px;
  }
  .dr-card {
    padding: 30px 15px;
  }
  .dr-name {
    font-size: 24px;
  }
  .dr-title{
    font-size: 18px;
  }
  .dr-card p {
  font-size: 16px;
}
}
/* Doctors section End */

/* About us */
.about-us {
  padding: 100px 0px;
  /* background-color: #f5f5f5; */
  background: url("assets/about-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
}
.about-us-content {
  display: flex;
  gap: 50px;
  align-items: center;
}
.about-left {
  flex: 1;
}
.about-left img {
  width: 100%;
}
.about-header {
  display: flex;
  gap: 15px;
  align-items: center;
}
.about-headings {
  color: #7fa908;
  font-size: 30px;
}
.about-bar {
  flex: 1;
  height: 2px;
  width: 100%;
  background-color: #7fa908;
}
.about-title {
  font-size: 70px;
  line-height: 1.1;
  margin-top: 10px;
  color: #fff;
}
.about-desc {
  line-height: 27px;
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 70px;
  color: #fff;
}
.about-right {
  flex: 1;
  /* border-radius: 10px; */
  /* padding: 34px; */
  /* background-color: #01A54F; */
}
.about-list {
  list-style: none;
  padding: 30px;
  margin: 0;
  background: #fe427d;
  border-radius: 10px;
}
.about-list li {
  font-size: 20px;
  color: white;
  margin-bottom: 10px;
}
.about-list li::before {
  content: "•";
  color: white;
  padding-right: 8px;
}
.about-list button {
  width: 100%;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 18px;
  color: #fe427d;
  cursor: pointer;
  margin-top: 20px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about-us-content {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .about-us {
    padding: 40px 0;
  }
  .about-us-content {
    flex-direction: column;
  }
  .about-headings {
    font-size: 24px;
  }
  .about-title {
    margin-top: 10px;
    font-size: 32px;
  }
  .about-desc {
    margin: 20px 0;
  }
  .about-right {
    padding: 0;
  }
  .about-list li {
    font-size: 18px;
  }
}
/* About us end */

/* contact section */
.contact-section {
  background-color: #7fa908;
  padding: 100px 0;
}
.contact-title {
  font-size: 72px;
  text-align: center;
  color: white;
  margin-bottom: 50px;
}
.contact-content {
  display: flex;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-content > div {
  width:100%;
}
.contact-form input:not([type="submit"]) {
  width: 100%;
  padding: 20px 20px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 18px;
}
.contact-form input[type="submit"] {
  background-color: #fe427d;
  width: 100%;
  font-size: 18px;
  color: #fff;
  padding: 20px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.contact-form input[type="submit"]:hover {
  background-color: #8d2143;
  color: #7fa908;
}
.map-wrapper {
  width: 100%;
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-info {
  background: #fe427d;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 30px;
  color: white;
  align-items: center;
  font-size: 22px;
}
@media (max-width: 768px) {
  .contact-section {
    padding: 40px 0;
  }
  .contact-content {
    flex-direction: column;
  }
  .contact-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .map-info {
    font-size: 18px;
    flex-direction: column;
  }
}
/* contact section end */

/* glimps section */

section.gallery-section {
  padding: 100px 0;
  background: #fff;
}
.gallery-conent {
  display: flex;
  gap: 30px;
  flex-direction: column;
}
.gallery-left {
  max-width: 800px;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: auto;
}
.gallery-header {
  display: flex;
  align-items: center;
}
.gallery-title {
  /* background-color: #fff; */
  padding: 10px 12px;
  font-size: 30px;
  color: #fe427d;
  text-align: center;
}
.line {
  height: 2px;
  width: 100%;
  flex: 1;
  background-color: #fe427d;
}
.gallery-right {
  overflow: hidden;
}
section.gallery-section h2 {
  font-size: 60px;
  text-align: left;
  margin-bottom: 20px;
  margin-top: 0px;
  line-height: 1.2;
  color: #000;
  text-align: center;
}
.glimpse-navigation {
  margin-bottom: 10px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.nav-btn {
  border: none;
  border-radius: 10px;
  padding: none;
  margin: none;
  background: white;
  cursor: pointer;
}
.prev-btn,
.next-btn {
  background: #fe427d;
  padding: 8px 16px;
}
.prev-btn svg,
.next-btn svg {
  width: 30px;
  height: 20px;
  fill: white;
}
@media (max-width: 768px) {
  /* gallary adjustments */

  section.gallery-section {
    padding: 30px 0;
  }
  section.gallery-section h2 {
    font-size: 32px;
    margin: 15px 0;
  }
  .gallery-conent {
    flex-direction: column;
  }
  .gallery-left {
    width: 100%;
  }
}

/* gallery section end */

/* why seo */
.why-seo {
  padding: 90px 0;
  background: #fe427d;
}
.why-seo h2 {
  color: #fff;
  /* text-align: center; */
  font-size: 56px;
  margin-bottom: 20px;
}
.why-seo p {
  font-size: 16px;
  text-align: justify;
  color: white;
  cursor: pointer;
}
.why-seo a {
  color: #fff;
  text-decoration: underline;
  /* text-decoration: none; */
  transition: 0.4s ease-in-out;
}
.why-seo a:hover {
  color: #1ecdec;
}
/* why seo end */

/* Footer Section */
.footer {
  background-color: white;
  color: #333;
  box-shadow: 0 -6px 24px 0 rgba(0, 0, 0, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 0;
  gap: 20px;
}

.footer-logo {
  /* flex: 1; */
  max-width: 400px;
}
.footer-logo img {
  /* height: 100px; */
  width: 200px;
}

.footer-social {
  display: flex;
  margin-top: 20px;
  gap: 10px;
}

.social-square {
  width: 40px;
  height: 40px;
  background-color: #fe427d;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.social-square .social-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.footer-text {
  flex: 2;
  line-height: 1.6;
  text-align: justify;
  /* color: white ; */
}

.subscribe_content h2 {
  font-size: 28px;
  margin-bottom: 10px;
  border-radius: 10px;
}
.subscribe_content form input {
  width: 100%;
  font-size: 22px;
  padding: 8px 16px;
  border-radius: 10px;
  text-align: center;
}
.subscribe_content form button {
  background-color: #1eaa6f;
  width: 100%;
  font-size: 24px;
  margin-top: 20px;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}
.subscribe_content form button:hover {
  background: #000098;
}
.footer-divider {
  height: 1px;
  background-color: #ddd;
  margin-bottom: 0;
}
.footer-divider {
  height: 1px;
  background-color: #ddd;
  margin-bottom: 0;
}

.copyright {
  background-color: #fe427d;
  color: white;
  padding: 7px 0;
  text-align: center;
  font-size: 14px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    padding: 30px 0;
    gap: 20px;
    align-items: center;
  }
  .footer-social {
    margin-top: 20px;
  }
  .footer-logo {
    margin-bottom: 10px;
  }
  .date-time {
    font-size: 18px;
  }
}

/* footer section end */

/* Social Icons */
.social-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}

.whatsapp-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");
}

.instagram-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z'/%3E%3C/svg%3E");
}
.call-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='white' d='M511.1 387.1c-1.2-4.7-4.8-8.5-9.5-10.2l-112-40c-6.5-2.3-13.7-0.6-18.4 4.3l-52 54.3c-73.6-36.8-134.1-97.3-170.9-170.9l54.3-52c4.9-4.7 6.6-11.9 4.3-18.4l-40-112C132.4 4.8 127.8 0 122.1 0H24C10.7 0 0 10.7 0 24 0 281.3 230.7 512 488 512c13.3 0 24-10.7 24-24v-98.1c0-1.6-.2-3.1-.9-4.8z'/%3E%3C/svg%3E");
}

.facebook-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
  display: inline-block;
  width: 40px;
  height: 40px;
}
.phone-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M511.1 387.6l-23.6-100.9c-2.7-11.6-13.1-19.7-25-19.7h-70.6c-8.3 0-16 3.6-21.4 9.8l-43.4 50.3c-62.6-32.6-113.1-83.2-145.7-145.7l50.3-43.4c6.2-5.4 9.8-13.1 9.8-21.4V49.6c0-11.9-8.1-22.3-19.7-25L124.4 .9C113.2-2.1 101.2 4 96.1 14.4 35.9 136.2 60.5 309.8 202.2 451.5s315.3 166.3 437.1 106.1c10.4-5.1 16.5-17.1 13.5-28.3z' fill='%23329D91'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80%;
  display: inline-block;
  width: 40px;
  height: 40px;
}

/* Clock Icon */
.clock-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Arrow Icon */
.arrow-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='white' d='M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Responsive Design */

@media (max-width: 768px) {
  .why-seo {
    padding: 30px 0;
  }
  .why-seo h2 {
    font-size: 32px;
  }
  /* contact adjustments */
  .contact-container {
    flex-direction: column;
  }

  .map-container {
    min-height: 200px;
    overflow: hidden;
    border-radius: 6px;
  }

  .address-icon {
    height: 40px;
    width: 40px;
  }
  .address-text {
    font-size: 16px;
    line-height: 1.2;
  }
}

/* footer section end */

/* Medium screens */
@media (min-width: 769px) and (max-width: 1024px) {
  .well-beigng-content {
    flex-direction: column;
    margin: 50px 0;
  }
  .well-beigng-content .left {
    max-width: 100%;
    text-align: center;
  }
  .well-beigng-content .right {
    position: initial;
    margin-top: 0;
  }
}

/* swiper */
.swiper {
  width: 100%;
  height: 280px;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;

  overflow: hidden;
  border-radius: 20px;
}
.swiper-slide img {
  width: 100%;
  border-radius: 20px;
  height: 100%;
}

/* 

.section {

}

@media (min-width: 769px) and (max-width: 1024px) {
    
}

@media (max-width: 768px) {
 
}

*/
