@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
.container {
  max-width: 1600px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media (max-width: 1500px) and (min-width: 990px) {
  .container {
    padding: 0 60px;
  }
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.9rem;
}

a {
  color: #053c4f;
  text-decoration: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.our-story-second-bar {
  padding: 50px 0 !important;
  background: #d9f3fe;
  margin: 3rem 0;
}

@media (max-width: 990px) {
  .no-display {
    display: none;
  }
}

.btn-primary {
  padding: 0.8rem 2rem;
  border: none;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 660;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.5s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #4aa3df;
  font-size: 14px;
}
.btn-primary::after {
  content: "";
  width: 27px;
  height: 18px;
  background-image: url(../images/arrow.png);
  display: block;
}
.btn-primary:hover {
  transform: translateY(-5px);
}
@media (max-width: 990px) {
  .btn-primary {
    text-align: center;
  }
}

button {
  padding: 0.8rem 2rem;
  border: none;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 660;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.5s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
button::after {
  content: "";
  width: 27px;
  height: 18px;
  background-image: url(../images/arrow.png);
  display: block;
}
button:hover {
  transform: translateY(-5px);
}
@media (max-width: 990px) {
  button {
    text-align: center;
  }
}
button.donate-btn {
  background: #eb8b2d;
}
@media (max-width: 1100px) {
  button.donate-btn {
    position: absolute;
    right: 80px;
    top: 13px;
  }
}
button.donate-btn::after {
  width: 22px;
  height: 23px;
  background-image: url(../images/donate-icon.png);
}
@media (max-width: 990px) {
  button.donate-btn {
    display: none;
  }
}
button.btn-primary-btn {
  background: #4aa3df;
}
button a {
  text-decoration: none;
  color: #fff;
}

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

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: white;
  border-bottom: 1px solid #e0e0e0;
}
.header .main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .header .main-nav {
    display: inline;
  }
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-text {
  color: #f48024;
  font-weight: bold;
  font-size: 18px;
  margin-right: 10px;
}
.logo-text span {
  display: block;
  font-size: 12px;
  color: #666;
  font-weight: normal;
}

.logo-image {
  width: 16rem;
  height: auto;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  padding: 0 20px;
}
.nav-container.active {
  max-height: 2000px;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0 auto;
}

.nav-item {
  position: relative;
}
.nav-item:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-link {
  color: #444;
  text-decoration: none;
  padding: 15px 20px;
  display: block;
  font-size: 15px;
  transition: color 0.3s;
}
.nav-link:hover {
  color: #f48024;
}

/* Dropdown styles */
.has-dropdown > .nav-link::after {
  content: "▼";
  font-size: 10px;
  margin-left: 5px;
  vertical-align: middle;
}
.has-dropdown.open > .nav-link::after {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
  border-top: 3px solid #f48024;
}
.dropdown.active {
  max-height: 1000px;
}
.dropdown .dropdown {
  top: 0;
  left: 100%;
  margin-top: -3px;
}
.dropdown .dropdown .dropdown {
  background-color: #e8e8e8;
}
.dropdown .has-dropdown > .dropdown-link::after {
  content: "►";
  font-size: 10px;
  float: right;
  margin-top: 3px;
}

.dropdown-item {
  position: relative;
  list-style: none;
}
.dropdown-item:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item.open > .dropdown-link::after {
  transform: rotate(180deg);
}

.dropdown-link {
  color: #444;
  text-decoration: none;
  padding: 12px 20px;
  display: block;
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s;
  border-bottom: 1px solid #f0f0f0;
}
.dropdown-link:hover {
  background-color: #f9f9f9;
  color: #f48024;
}

.donate-button {
  background-color: #f48024;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
}
@media (max-width: 990px) {
  .donate-button {
    position: absolute;
    right: 90px;
    top: 8px;
  }
}
.donate-button:hover {
  background-color: #e57016;
}
.donate-button i {
  margin-left: 8px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  cursor: pointer;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #444;
}
@media (max-width: 1100px) {
  .menu-toggle {
    position: absolute;
    top: 5px;
    right: 0;
  }
}

/* Responsive styles */
@media screen and (max-width: 1100px) {
  .header {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 0 !important;
  }
  .logo-container {
    order: 1;
    flex: 1;
  }
  .donate-button-container {
    order: 2;
  }
  .menu-toggle {
    display: block;
    order: 3;
  }
  .nav-container {
    order: 4;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease-in-out;
    padding: 0;
  }
  .nav-menu {
    flex-direction: column;
    width: 100%;
  }
  .nav-link {
    padding: 12px 15px;
    border-top: 1px solid #eee;
  }
  /* Mobile dropdown styles */
  .dropdown {
    position: static;
    width: 100%;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.6s ease-in-out;
    border-top: none;
    border-radius: 0;
    background-color: #f9f9f9;
    display: block;
  }
  .dropdown .dropdown {
    background-color: #f0f0f0;
    padding-left: 15px;
    left: 0;
    margin-top: 0;
  }
  .has-dropdown > .nav-link::after {
    float: right;
    transition: transform 0.3s;
  }
  .dropdown .has-dropdown > .dropdown-link::after {
    float: right;
  }
}
/* Banner */
.banner {
  height: 98vh;
  position: relative;
  background: #faf9f9;
  overflow: hidden;
}
.banner .wrapper {
  height: 90vh;
  display: flex;
  align-items: center;
}
.banner .wrapper .content h1 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
}
.banner .wrapper .content button {
  margin-top: 3rem;
}
.banner .wrapper .banner-image {
  position: absolute;
  right: 0;
  top: 0;
}
.banner .wrapper .banner-image img {
  height: 55rem;
}
@media (max-width: 1470px) {
  .banner .wrapper .banner-image img {
    height: 49rem;
  }
}

/* Media Queries for Responsiveness */
@media (max-width: 1100px) {
  .banner {
    height: auto;
  }
  .banner .wrapper {
    flex-direction: column-reverse;
    justify-content: flex-start;
    height: auto;
  }
  .banner .wrapper .content {
    width: 100%;
    text-align: center;
    padding: 3rem 0;
  }
  .banner .wrapper .banner-image {
    position: relative;
    right: -45px !important;
    right: auto;
    display: flex;
    justify-content: center;
  }
  .banner .wrapper .banner-image img {
    height: auto;
  }
}
@media (max-width: 768px) {
  .banner .wrapper .banner-image img {
    max-height: 30rem;
  }
}
@media (max-width: 576px) {
  .banner .wrapper {
    padding: 0 1.5rem;
  }
  .banner .wrapper .content h1 {
    font-size: calc(1.75rem + 1vw);
  }
  .banner .wrapper .content button {
    margin-top: 2rem;
  }
  .banner .wrapper .banner-image img {
    max-height: 25rem;
  }
}
.about-us {
  padding-top: 150px;
  position: relative;
}
@media (max-width: 1100px) {
  .about-us {
    padding-top: 50px;
  }
}

.about-wrapper {
  display: flex;
  position: relative;
  margin: 0 auto;
  padding: 2rem;
  overflow: hidden;
}
@media (max-width: 900px) {
  .about-wrapper {
    flex-direction: column;
    padding: 0;
  }
}

.blue-curve {
  position: absolute;
  left: 0;
  width: 25%;
  height: 50%;
  background-color: #0088cc;
  border-radius: 0 0 70% 0;
  z-index: -1;
  bottom: -39px;
}
@media (max-width: 1100px) {
  .blue-curve {
    width: 80px;
    height: 30%;
    display: none;
  }
}

.image-container {
  padding-right: 4rem;
  position: relative;
}
.image-container img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 5px;
}
@media (max-width: 900px) {
  .image-container {
    padding-right: 0;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
  }
}

.content-container {
  flex: 1.5;
  padding: 1rem 0;
}

.about-us-heading {
  color: #666;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.title {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media (max-width: 480px) {
  .title {
    font-size: 1.8rem;
  }
}

.description {
  margin-bottom: 4rem;
  color: #555;
  line-height: 1.7;
}
@media (max-width: 990px) {
  .description {
    margin-bottom: 3rem;
  }
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background-color: #0088cc;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}
.cta-button:hover {
  background-color: #006699;
}
.cta-button .arrow {
  margin-left: 0.5rem;
}

.services-section {
  display: flex;
  justify-content: space-between;
  max-width: 1600px;
  margin: 2rem auto;
  padding: 0 2rem;
  margin-top: 0;
  padding-left: 12rem;
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  .services-section {
    flex-wrap: wrap;
  }
}
@media (max-width: 1100px) {
  .services-section {
    padding: 0;
  }
}

.service-card {
  flex: 1;
  padding: 1rem;
  gap: 5rem;
  text-align: center;
}
@media (max-width: 878px) {
  .service-card {
    flex: 1 1 45%;
  }
}
@media (max-width: 480px) {
  .service-card {
    flex: 1 1 100%;
  }
}

.service-title {
  color: #053c4f;
  font-family: "Marcellus", serif;
  border-top: 1px solid #e7e7e7;
  padding: 1rem;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  font-weight: 200;
  padding: 1rem 0;
}
@media (max-width: 1100px) {
  .service-title {
    font-size: 1rem;
  }
}

.service-description {
  color: #777;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.service-section {
  padding: 6rem 0;
  background: #e4eef2;
}
@media (max-width: 1100px) {
  .service-section {
    padding: 2rem 0;
  }
}
.service-section .title-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1100px) {
  .service-section .title-div {
    margin-bottom: 2rem;
  }
}
@media (max-width: 820px) {
  .service-section .title-div {
    flex-direction: column;
  }
}
.service-section .title-div .head .title {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
}
@media (max-width: 820px) {
  .service-section .title-div .head .title {
    margin-bottom: 2rem;
  }
}
.service-section .section-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 4rem 0;
  flex-wrap: wrap;
}
@media (max-width: 1100px) {
  .service-section .section-wrapper {
    padding: 0;
  }
}
.service-section .section-wrapper .img img {
  width: 100%;
}
.service-section .section-wrapper .service-cards {
  width: 24%;
  background: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  transition: 0.5s;
}
.service-section .section-wrapper .service-cards:hover {
  transform: scale(1.03);
  cursor: pointer;
}
@media (max-width: 1100px) {
  .service-section .section-wrapper .service-cards {
    width: 49%;
    margin-bottom: 5rem;
  }
}
@media (max-width: 620px) {
  .service-section .section-wrapper .service-cards {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.service-section .section-wrapper .service-cards .content {
  padding: 0rem 1rem 3rem 1rem;
  position: relative;
}
.service-section .section-wrapper .service-cards .content .read-more {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #4aa3df;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: -25px;
  border: 3px solid #fff;
}
.service-section .section-wrapper .service-cards .content h3 {
  padding: 1rem 0;
  font-family: "Marcellus", serif;
  font-weight: 100;
  color: #053c4f;
}
.service-section .section-wrapper .service-cards .content p {
  font-size: 14px;
  line-height: 1.6rem;
}

.appoinment-section {
  padding: 100px 0;
  background: #053c4f;
}
@media (max-width: 1100px) {
  .appoinment-section {
    padding: 50px 0 100px 0;
  }
}

.appointment-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.info-column {
  flex: 1;
  min-width: 200px;
  padding: 1rem;
}
@media (max-width: 1100px) {
  .info-column {
    min-width: 100%;
  }
}
.info-column h1 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  color: #fff;
  padding: 2rem 0;
}
@media (max-width: 1100px) {
  .info-column h1 {
    padding: 1rem 0;
  }
}
.info-column p {
  line-height: 1.6;
  font-size: 1rem;
  color: #fff;
  max-width: 600px;
}

.form-column {
  flex: 1;
  min-width: 300px;
}

.form-card {
  background-color: #e4eef2;
  border-radius: 15px;
  overflow: hidden;
  padding: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}
.form-group .form-row {
  display: flex;
  gap: 1rem;
}
@media (max-width: 590px) {
  .form-group .form-row {
    flex-direction: column;
  }
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 5px;
  font-size: 0.9rem;
  outline: none;
}
.form-group input::-moz-placeholder, .form-group select::-moz-placeholder, .form-group textarea::-moz-placeholder {
  color: #999;
  text-transform: capitalize;
  font-size: 0.8rem;
  font-family: "Montserrat", sans-serif;
}
.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: #999;
  text-transform: capitalize;
  font-size: 0.8rem;
  font-family: "Montserrat", sans-serif;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #4aa3df;
}
.form-group textarea {
  min-height: 80px;
  resize: vertical;
}
.form-group i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 0.8rem;
}

.submit-btn {
  background-color: #4aa3df;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  float: right;
  text-transform: uppercase;
  font-weight: bold;
  transition: background-color 0.3s;
}
.submit-btn:hover {
  background-color: #258cd1;
}
.submit-btn i {
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .appointment-section {
    flex-direction: column;
  }
  .info-column {
    text-align: center;
  }
  .form-card {
    padding: 1.5rem;
  }
  .submit-btn {
    width: 100%;
    justify-content: center;
  }
}
.our-blogs {
  padding: 6rem 0;
  background: #e4eef2;
}
@media (max-width: 1100px) {
  .our-blogs {
    padding: 2rem 0;
  }
}
.our-blogs .title-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .our-blogs .title-div {
    flex-direction: column;
    text-align: center;
  }
  .our-blogs .title-div .head {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.our-blogs .title-div .head .title {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
}
.our-blogs .our-blog-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 0;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .our-blogs .our-blog-wrapper {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .our-blogs .our-blog-wrapper {
    padding: 2rem 0;
  }
}
.our-blogs .our-blog-wrapper .blog-card {
  width: 30%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1024px) {
  .our-blogs .our-blog-wrapper .blog-card {
    width: 45%;
    margin: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .our-blogs .our-blog-wrapper .blog-card {
    width: 90%;
    margin: 1rem 0;
  }
}
.our-blogs .our-blog-wrapper .blog-card .blog-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.our-blogs .our-blog-wrapper .blog-card .blog-content h3 {
  padding: 1rem 0;
  font-family: "Marcellus", serif;
  font-weight: 100;
  color: #053c4f;
}
@media screen and (max-width: 768px) {
  .our-blogs .our-blog-wrapper .blog-card .blog-content h3 {
    text-align: center;
  }
}
.our-blogs .our-blog-wrapper .blog-card .blog-content p {
  font-size: 14px;
  max-width: 90%;
}
@media screen and (max-width: 768px) {
  .our-blogs .our-blog-wrapper .blog-card .blog-content p {
    max-width: 100%;
    text-align: center;
  }
}
.our-blogs .readmore {
  margin-top: 1rem;
}

.testimonials {
  padding: 150px 0;
}
@media (max-width: 1100px) {
  .testimonials {
    padding: 50px 0;
  }
}

.testimonial-container {
  display: flex;
}

.testimonial-section {
  display: flex;
  flex: 1;
  padding-right: 20px;
}

.testimonial-card {
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  height: 100%;
  padding-right: 8rem;
  border-right: 1px solid #e5e5e5;
  margin-right: 2rem;
}
@media (max-width: 1100px) {
  .testimonial-card {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
  }
}

.profile {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}
.profile-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile-name {
  color: #4aa3df;
  font-weight: bold;
  font-size: 16px;
}

.quote-icon {
  color: #4aa3df;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-text {
  color: #666;
  line-height: 1.6;
  font-size: 15px;
}

.header-section {
  flex: 0 0 300px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1100px) {
  .header-section {
    flex: 0 0 50px;
    margin-bottom: 3rem;
  }
}

.header-title {
  padding: 1rem 0;
  font-family: "Marcellus", serif;
  font-weight: 100;
  color: #053c4f;
  font-size: 38px;
}

.navigation {
  display: flex;
  gap: 10px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.nav-btn:hover {
  background-color: #4aa3df;
  color: white;
  border-color: #4aa3df;
}

.testimonial-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: 100%;
}

.slide {
  flex: 0 0 100%;
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.7s ease;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

@media (max-width: 1100px) {
  .testimonial-container {
    flex-direction: column-reverse;
  }
  .testimonial-section {
    margin-bottom: 30px;
    padding-right: 0;
  }
  .header-section {
    padding-left: 0;
  }
}
.mailer-section {
  background: #eb8b2d;
  padding: 100px 0;
}
@media screen and (max-width: 1024px) {
  .mailer-section {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .mailer-section {
    padding: 40px 15px;
  }
}
.mailer-section .main-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .mailer-section .main-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
.mailer-section .main-wrapper .left-content {
  width: 50%;
  padding-right: 6rem;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 992px) {
  .mailer-section .main-wrapper .left-content {
    width: 100%;
    padding-right: 0;
    border-right: none;
    margin-bottom: 2rem;
    text-align: center;
  }
}
.mailer-section .main-wrapper .left-content h2 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 2rem;
}
@media screen and (max-width: 992px) {
  .mailer-section .main-wrapper .left-content h2 {
    text-align: center;
  }
}
.mailer-section .main-wrapper .left-content p {
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 992px) {
  .mailer-section .main-wrapper .left-content p {
    text-align: center;
  }
}
.mailer-section .main-wrapper .right-content {
  width: 50%;
  padding-left: 4rem;
}
@media screen and (max-width: 992px) {
  .mailer-section .main-wrapper .right-content {
    width: 100%;
    padding-left: 0;
  }
}

.footer {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  width: 100%;
  padding: 4rem 0 0;
  background-color: #4aa3df;
}
.footer .footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 992px) {
  .footer .footer-main {
    flex-direction: column;
    padding: 0 15px;
  }
}
.footer .footer-section {
  margin-bottom: 1.5rem;
}
@media (max-width: 992px) {
  .footer .footer-section {
    text-align: center;
  }
}
.footer .footer-section.about-section {
  flex: 0 0 30%;
}
@media (max-width: 1100px) {
  .footer .footer-section.about-section {
    flex: 0 0 100%;
  }
}
.footer .footer-section.links-section {
  flex: 0 0 30%;
}
@media (max-width: 1100px) {
  .footer .footer-section.links-section {
    flex: 0 0 46%;
  }
}
@media (max-width: 992px) {
  .footer .footer-section.links-section {
    flex: 0 0 100%;
  }
}
.footer .footer-section.contact-section {
  flex: 0 0 30%;
}
@media (max-width: 1100px) {
  .footer .footer-section.contact-section {
    flex: 0 0 46%;
  }
}
@media (max-width: 992px) {
  .footer .footer-section.contact-section {
    flex: 0 0 100%;
  }
}
.footer .footer-section.contact-section .read-more {
  margin: 3rem 0;
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 992px) {
  .footer .footer-section.contact-section .read-more {
    margin: 2rem 0;
    justify-content: center;
  }
}
.footer .footer-section.contact-section .read-more a.btn-primary {
  background: #eb8b2d;
}
.footer .footer-logo {
  max-width: 220px;
  margin-bottom: 1rem;
}
@media (max-width: 992px) {
  .footer .footer-logo {
    margin: 0 auto 1rem;
    display: block;
  }
}
.footer .about-text {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}
@media (max-width: 992px) {
  .footer .about-text {
    text-align: center;
  }
}
.footer .social-icons {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
@media (max-width: 992px) {
  .footer .social-icons {
    justify-content: center;
  }
}
.footer .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  border-radius: 50%;
  color: #4aa3df;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer .social-icon:hover {
  background-color: #ff9933;
  color: #ffffff;
}
.footer .footer-heading {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  font-size: 24px;
  color: #fff;
  margin-bottom: 3rem;
}
@media (max-width: 992px) {
  .footer .footer-heading {
    text-align: center;
    margin-bottom: 1.5rem;
  }
}
.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links .row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .footer .footer-links .row {
    flex-direction: column;
  }
}
.footer .footer-links .row div {
  width: 50%;
}
@media (max-width: 576px) {
  .footer .footer-links .row div {
    width: 100%;
  }
}
.footer .footer-links li {
  margin-bottom: 0.8rem;
  position: relative;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 992px) {
  .footer .footer-links li {
    text-align: center;
  }
}
.footer .footer-links li::before {
  content: "•";
  position: absolute;
  left: -1rem;
}
@media (max-width: 992px) {
  .footer .footer-links li::before {
    display: none;
  }
}
.footer .footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .footer-links a:hover {
  color: #ff9933;
}
.footer .contact-info {
  font-style: normal;
  margin-bottom: 1.5rem;
  padding-left: 0;
}
@media (max-width: 992px) {
  .footer .contact-info {
    text-align: center;
  }
}
.footer .contact-info p {
  margin-bottom: 0.5rem;
}
.footer .contact-info .phone,
.footer .contact-info .email {
  margin-top: 0.7rem;
}
.footer .talk-button {
  display: inline-block;
  background-color: #ff9933;
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
@media (max-width: 992px) {
  .footer .talk-button {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.footer .talk-button i {
  margin-left: 0.5rem;
}
.footer .talk-button:hover {
  background-color: #ff8000;
}
.footer .footer-bottom {
  background-color: #00768a;
  padding: 1rem 0;
  font-size: 0.85rem;
}
.footer .footer-bottom .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .footer .footer-bottom .wrapper {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer .footer-bottom {
    padding: 1.5rem 15px;
  }
}
.footer .copyright {
  margin: 0;
}
@media (max-width: 768px) {
  .footer .copyright {
    text-align: center;
  }
}
.footer .copyright a {
  color: #ffffff;
  text-decoration: none;
}
.footer .copyright a:hover {
  text-decoration: underline;
}
.footer .regulator-badge .regulator-logo {
  height: 40px;
}
@media (max-width: 992px) {
  .footer .regulator-badge .regulator-logo {
    display: block;
    margin: 0 auto;
  }
}

.inner-banner {
  width: 100%;
  height: 40vh;
  overflow: hidden;
  position: relative;
}
.inner-banner .baner-img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.inner-banner .baner-img img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.inner-banner .inner-banner-title {
  position: absolute;
  bottom: 50%;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 1212;
}
.inner-banner .inner-banner-title h2 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  margin-top: -3rem;
  color: #fff;
}
.inner-banner .banner-ovarlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgb(5, 29, 39);
  background: linear-gradient(225deg, rgba(5, 29, 39, 0) 0%, rgb(19, 104, 141) 100%);
}
.inner-banner .breadcrumbs {
  width: 100%;
  height: 40px;
  background: rgb(5, 29, 39);
  background: linear-gradient(225deg, rgba(5, 29, 39, 0) 0%, rgb(19, 104, 141) 100%);
  position: absolute;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
}
.inner-banner .breadcrumbs ul li {
  display: inline-block;
  position: relative;
}
.inner-banner .breadcrumbs ul li::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  background: #eb8b2d;
}
.inner-banner .breadcrumbs ul li:first-child::before {
  display: none !important;
}
.inner-banner .breadcrumbs ul li a {
  margin-right: 2rem;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
}
@media (max-width: 770px) {
  .inner-banner .breadcrumbs ul li a {
    font-size: 12px;
  }
}

.our-story {
  text-align: center;
  padding: 100px 0;
}
@media (max-width: 1100px) {
  .our-story {
    padding: 50px 0;
  }
}
.our-story h2 {
  margin-bottom: 3rem;
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
}

.our-mission {
  padding-bottom: 150px;
}
@media (max-width: 1100px) {
  .our-mission {
    padding-bottom: 60px;
  }
}
.our-mission .mission-banner {
  width: 100%;
  height: 360px;
  background: #4aa3df;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.our-mission .mission-banner .banner-ovarlays {
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgb(5, 29, 39);
  background: linear-gradient(225deg, rgba(5, 29, 39, 0) 0%, rgb(19, 104, 141) 100%);
  top: 0;
  left: 0;
}
.our-mission .mission-banner img.mission-img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.our-mission .mission-banner .wrapper {
  display: flex;
  position: relative;
  justify-content: flex-end;
  flex-direction: column;
}
.our-mission .mission-banner .wrapper .content {
  max-width: 750px;
  padding-bottom: 90px;
  color: #fff;
}
@media (max-width: 1358px) {
  .our-mission .mission-banner .wrapper .content {
    max-width: 450px;
  }
}
@media (max-width: 1100px) {
  .our-mission .mission-banner .wrapper .content {
    max-width: 100%;
    text-align: center;
  }
}
.our-mission .mission-banner .wrapper .content h2 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #fff;
}
.our-mission .mission-banner .image {
  position: absolute;
  right: 0;
  top: -30%;
  z-index: 1212211;
}
@media (max-width: 1100px) {
  .our-mission .mission-banner .image {
    display: none;
  }
}
.our-mission .mission-banner .image img {
  height: 30rem;
}
.our-mission .mission-banner-bottom {
  width: 100%;
  height: auto;
}
.our-mission .mission-banner-bottom ul {
  margin-top: 30px;
  padding-left: 18px;
}
.our-mission .mission-banner-bottom ul li::marker {
  color: #4aa3df;
}

#aboutus .services-section {
  padding: 0;
}

.why-matters {
  padding: 90px 0;
}
@media (max-width: 1100px) {
  .why-matters {
    padding: 30px 0;
  }
}
.why-matters .wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
@media (max-width: 1100px) {
  .why-matters .wrapper {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
}
.why-matters .wrapper > div {
  flex: 1;
}
.why-matters .wrapper > div img {
  width: 100%;
  height: 100%;
}
.why-matters .wrapper > div.why-content h2 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 3rem;
}
@media (max-width: 1100px) {
  .why-matters .wrapper > div.why-content h2 {
    margin-bottom: 2rem;
  }
}

.our-services-inside {
  padding: 100px 0;
  background: #d5e4ea;
}
.our-services-inside .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 2rem;
}
.our-services-inside .wrapper .service-cards {
  flex: 1 1 25%;
  /* 4 boxes per row */
  background: #fff;
  border-radius: 30px;
  padding: 1.5rem;
  transition: 0.5s;
  cursor: pointer;
}
.our-services-inside .wrapper .service-cards:hover {
  transform: translateY(-10px);
}
.our-services-inside .wrapper .service-cards h3 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  font-size: 22px;
  margin: 1rem 0;
}
.our-services-inside .wrapper .service-cards p {
  font-size: 14px;
  line-height: 1.4rem;
  padding-bottom: 1rem;
}
.our-services-inside .wrapper .service-cards a {
  text-decoration: none;
  font-size: 14px;
  color: #053c4f;
}
@media (max-width: 1100px) {
  .our-services-inside .wrapper .service-cards {
    flex: 1 1 calc(49% - 10px);
  }
}
@media (max-width: 798px) {
  .our-services-inside .wrapper .service-cards {
    flex: 1 1 100%;
  }
}

.our-founder {
  padding: 100px 0;
}
.our-founder .wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.our-founder .wrapper .founder-img {
  flex: 0 0 30%;
  padding-right: 2rem;
}
@media (max-width: 1100px) {
  .our-founder .wrapper .founder-img {
    flex: 0 0 100%;
  }
}
.our-founder .wrapper .founder-story {
  flex: 0 0 70%;
}
@media (max-width: 1100px) {
  .our-founder .wrapper .founder-story {
    flex: 0 0 100%;
  }
}
.our-founder .wrapper .founder-story h2 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  margin: 1rem 0;
}
.our-founder .wrapper .founder-story h3 {
  font-family: "Marcellus", serif;
  font-weight: lighter;
  margin: 1rem 0;
}
.our-founder .main-content {
  padding: 4rem 0;
}

.board-members {
  padding: 100px 0;
}
.board-members .wrapper .members-card {
  display: flex;
  gap: 3rem;
  background: #d5e4ea;
  padding: 3rem 3rem;
  border-radius: 30px;
  margin-bottom: 5rem;
  border: 1px solid #e4e1e1;
}
.board-members .wrapper .members-card:nth-child(even) {
  background: #fff;
  border: 1px solid #e4e1e1;
}
@media (max-width: 1100px) {
  .board-members .wrapper .members-card {
    flex-direction: column;
  }
  .board-members .wrapper .members-card:nth-child(even) {
    flex-direction: column-reverse;
  }
}
.board-members .wrapper .members-card .mamber-img {
  flex: 1 1 30%;
}
@media (max-width: 1100px) {
  .board-members .wrapper .members-card .mamber-img img {
    height: 18rem;
  }
}
@media (max-width: 536px) {
  .board-members .wrapper .members-card .mamber-img img {
    height: auto;
  }
}
.board-members .wrapper .members-card .mamber-content {
  flex: 1 1 70%;
}
.board-members .wrapper .members-card .mamber-content h3 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  font-size: 38px;
  margin: 16px 0;
}
.board-members .wrapper .members-card .mamber-content h4 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  font-size: 18px;
  margin: 16px 0;
}
.board-members .wrapper .members-card .mamber-content p {
  color: #053c4f;
}

.service-three-tiles {
  background: #d5e4ea;
  padding: 100px 0;
}
@media (max-width: 1100px) {
  .service-three-tiles {
    padding: 50px 0;
  }
}
.service-three-tiles .wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 849px) {
  .service-three-tiles .wrapper {
    flex-direction: column;
  }
}
.service-three-tiles .wrapper .sv-cards {
  flex: 1 1 25%;
  background: #fff;
  border-radius: 30px;
  padding: 1.5rem;
}
.service-three-tiles .wrapper .sv-cards h3 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  font-size: 18px;
  margin-bottom: 1rem;
}

.qstn-accordion {
  padding: 100px 0;
}
@media (max-width: 1100px) {
  .qstn-accordion {
    padding: 50px 0;
  }
}
.qstn-accordion h2 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  font-weight: lighter;
  font-size: 22px;
}

.accordion-container {
  margin: 40px auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.accordion-title {
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
}
.accordion-item {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}
.accordion-item:last-child {
  border-bottom: none;
}
.accordion-item.active .accordion-header {
  background-color: #f5f7fa;
}
.accordion-item.active .accordion-icon::before {
  transform: rotate(90deg);
  opacity: 0;
}
.accordion-item.active .accordion-content {
  max-height: 1000px;
  padding-top: 15px;
}
.accordion-header {
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  transition: background-color 0.3s ease;
  color: #053c4f;
  font-family: "Marcellus", serif;
}
.accordion-header:hover {
  background-color: #f9f9f9;
}
.accordion-header h3 {
  font-size: 1.1rem;
  font-weight: lighter;
}
.accordion-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
}
.accordion-icon::before, .accordion-icon::after {
  content: "";
  position: absolute;
  background-color: #2c3e50;
  transition: all 0.3s ease;
}
.accordion-icon::before {
  width: 2px;
  height: 20px;
  top: 0;
  left: 9px;
}
.accordion-icon::after {
  width: 20px;
  height: 2px;
  top: 9px;
  left: 0;
}
.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.accordion-text {
  padding: 0 20px 20px;
  color: #666;
}

.pregnency-cards {
  background: #d5e4ea;
  padding: 60px 0;
}
.pregnency-cards h2 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-size: 28px;
}
.pregnency-cards p {
  margin: 1rem 0;
}
.pregnency-cards .wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
.pregnency-cards .wrapper .sv-cards {
  flex: 1 1 25%;
  background: #fff;
  border-radius: 30px;
  padding: 1.5rem;
}
@media (max-width: 1100px) {
  .pregnency-cards .wrapper .sv-cards {
    flex: 1 1 40%;
  }
}
@media (max-width: 770px) {
  .pregnency-cards .wrapper .sv-cards {
    flex: 1 1 100%;
  }
}
.pregnency-cards .wrapper .sv-cards h3 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  font-size: 18px;
  margin-bottom: 1rem;
}

.class-support {
  padding: 100px 0;
}
.class-support .wrapper h2 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  font-size: 28px;
  margin-bottom: 2rem;
}

.ask-for-healp {
  padding: 10px 0;
}
.ask-for-healp h2 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-size: 28px;
}
.ask-for-healp p {
  margin: 1rem 0;
}
.ask-for-healp .contain-box {
  background: #f0f0f0;
  padding: 50px;
  border-radius: 30px;
}
.ask-for-healp .wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
.ask-for-healp .wrapper .sv-cards {
  flex: 1 1 22%;
  background: #eb8b2d;
  border-radius: 30px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ask-for-healp .wrapper .sv-cards h3 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  font-size: 18px;
  color: #fff;
}
@media (max-width: 1100px) {
  .ask-for-healp .wrapper .sv-cards {
    flex: 1 1 45%;
  }
}
@media (max-width: 768px) {
  .ask-for-healp .wrapper .sv-cards {
    flex: 1 1 100%;
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  .ask-for-healp .wrapper .sv-cards {
    border-radius: 20px;
  }
  .ask-for-healp .wrapper .sv-cards h3 {
    font-size: 16px;
  }
}

.welcom-last-section {
  padding: 90px 0;
}
@media (max-width: 1100px) {
  .welcom-last-section {
    padding: 40px 0;
  }
}
.welcom-last-section .wrapper h2 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  font-size: 28px;
  margin-bottom: 2rem;
}

.Wellbeing {
  padding: 100px 0;
}
.Wellbeing h2 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 3rem;
  font-size: 28px;
}
@media (max-width: 990px) {
  .Wellbeing h2 {
    margin: 2rem 0;
  }
}
.Wellbeing p {
  margin: 1rem 0;
}
.Wellbeing .contain-box {
  background: #f0f0f0;
  padding: 50px;
  border-radius: 30px;
}
@media (max-width: 990px) {
  .Wellbeing .contain-box {
    padding: 30px 20px;
  }
}

.financial-support {
  padding: 10px 0;
}
.financial-support h2 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-size: 28px;
}
.financial-support p {
  margin: 1rem 0;
}
.financial-support .contain-box {
  background: #f0f0f0;
  padding: 50px;
  border-radius: 30px;
}
@media (max-width: 1100px) {
  .financial-support .contain-box {
    padding: 30px !important;
  }
}
.financial-support .wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
.financial-support .wrapper .sv-cards {
  flex: 1 1 25%;
  background: #eb8b2d;
  border-radius: 30px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.financial-support .wrapper .sv-cards h3 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  font-size: 18px;
  color: #fff;
}
@media (max-width: 1100px) {
  .financial-support .wrapper .sv-cards {
    flex: 1 1 45%;
  }
}
@media (max-width: 768px) {
  .financial-support .wrapper .sv-cards {
    flex: 1 1 100%;
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  .financial-support .wrapper .sv-cards {
    border-radius: 20px;
  }
  .financial-support .wrapper .sv-cards h3 {
    font-size: 16px;
  }
}

.assessment-section {
  background: #d5e4ea;
  padding: 100px 0;
}
@media (max-width: 1100px) {
  .assessment-section {
    padding: 50px 0;
  }
}
.assessment-section .wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.assessment-section .wrapper .sv-cards {
  flex: 1 1 45%;
  background: #eb8b2d;
  border-radius: 30px;
  padding: 1.5rem;
  color: #fff;
}
@media (max-width: 850px) {
  .assessment-section .wrapper .sv-cards {
    flex: 1 1 100%;
  }
}
.assessment-section .wrapper .sv-cards h3 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  font-size: 22px;
  margin-bottom: 1rem;
  color: #fff;
}

.who-can-apply {
  padding: 100px 0;
}
@media (max-width: 1100px) {
  .who-can-apply {
    padding: 25px 0;
    padding-bottom: 70px;
  }
}
.who-can-apply h2 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  font-size: 28px;
  margin: 1rem 0;
}
.who-can-apply h3 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  font-size: 24px;
  margin: 1rem 0;
}
.who-can-apply ul {
  margin: 1rem;
}

#special-assesment .collaborative .wrapper {
  background: #d5e4ea;
  border-radius: 30px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 1100px) {
  #special-assesment .collaborative .wrapper {
    flex-direction: column;
    padding: 30px 10px;
  }
}
#special-assesment .collaborative .wrapper .contnet {
  flex: 1 1 60%;
}
#special-assesment .collaborative .wrapper .contnet h3 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-size: 24px;
  font-weight: lighter;
  margin-bottom: 1rem;
}
#special-assesment .collaborative .wrapper .contnet ul {
  margin: 1rem 0;
}
#special-assesment .collaborative .wrapper .contnet ul li {
  margin-left: 1.2rem;
}
#special-assesment .collaborative .wrapper .image {
  flex: 1 1 40%;
}
#special-assesment .collaborative .wrapper .image img {
  border-radius: 30px;
}
#special-assesment .collaborative:nth-child(even) .wrapper {
  background: #f1f1f1;
}
@media (max-width: 1100px) {
  #special-assesment .collaborative:nth-child(even) .wrapper {
    flex-direction: column-reverse;
  }
}

.collaborative .wrapper {
  background: #d5e4ea;
  border-radius: 30px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
@media (max-width: 1100px) {
  .collaborative .wrapper {
    flex-direction: column;
  }
}
.collaborative .wrapper .contnet {
  flex: 1 1 60%;
}
.collaborative .wrapper .contnet h3 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-size: 24px;
  font-weight: lighter;
  margin-bottom: 1rem;
}
.collaborative .wrapper .contnet ul {
  margin: 1rem 0;
}
.collaborative .wrapper .contnet ul li {
  margin-left: 1.2rem;
}
.collaborative .wrapper .image {
  flex: 1 1 40%;
}
.collaborative .wrapper .image img {
  border-radius: 30px;
}

@media (max-width: 990px) {
  #welcoming-babby .ask-for-healp .contain-box {
    padding: 30px 20px;
  }
}

/* Training Options Section */
.training-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0px 0;
}
.training-options .training-option {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  background-color: #f5f9ff;
  border-radius: 8px;
  border-left: 4px solid #4aa3df;
}
.training-options .training-option h2 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  font-size: 22px;
  margin-bottom: 2rem;
}

.training-contact {
  padding: 20px;
  background-color: #f0f7ff;
}
.training-contact .contact {
  margin-top: 40px;
  border-radius: 8px;
  text-align: center;
}
.training-contact .contact .contact strong {
  font-size: 1.1em;
}

.features-section {
  padding: 100px 0;
}
@media (max-width: 1100px) {
  .features-section {
    padding: 50px 0;
  }
}
.features-section .wrapper {
  display: flex;
  gap: 4rem;
  padding-top: 4rem;
}
@media (max-width: 1100px) {
  .features-section .wrapper {
    flex-direction: column;
    gap: 0;
  }
}
.features-section .wrapper .features {
  margin: 30px 0;
  flex-basis: 60%;
}
.features-section .wrapper .features .feature-item {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}
.features-section .wrapper .features .feature-item:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4aa3df;
  font-weight: bold;
}
.features-section .wrapper .features-img {
  flex-basis: 40%;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}
.features-section .wrapper .features-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.medico-assasment {
  background: #d9f3fe;
  padding: 100px 0;
  position: relative;
}
@media (max-width: 990px) {
  .medico-assasment {
    padding: 60px 0;
  }
}
.medico-assasment h2 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.medico-assasment ol {
  margin-left: 1.1rem;
  margin-top: 1rem;
}
.medico-assasment ul {
  margin-top: 1rem;
}
.medico-assasment ul li {
  list-style: none;
  padding-left: 1.5rem;
}
.medico-assasment ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4aa3df;
  font-weight: bold;
  padding-left: 1rem;
}
.medico-assasment .right-section {
  position: absolute;
  right: 0;
  bottom: -30px;
  background: #fff;
  max-width: 800px;
}

.section-struggle {
  padding: 90px 0;
  border-top: 1px solid rgb(220, 219, 219);
  border-bottom: 1px solid rgb(220, 219, 219);
}
@media (max-width: 990px) {
  .section-struggle {
    padding: 60px 0;
  }
}
.section-struggle .wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 990px) {
  .section-struggle .wrapper {
    flex-direction: column;
  }
}
.section-struggle .wrapper .content {
  flex-basis: 70%;
}
.section-struggle .wrapper .content h2 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  font-size: 28px;
  margin-bottom: 1rem;
}
.section-struggle .wrapper .struggle-img {
  flex-basis: 30%;
}
.section-struggle .wrapper .struggle-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Special Sections */
.highlight {
  background-color: rgba(74, 134, 232, 0.1);
  border-left: 4px solid var(--primary);
  padding: 20px;
  margin: 30px 0;
  border-radius: 0 4px 4px 0;
}

.contact-info {
  background-color: var(--secondary);
  color: white;
  padding: 30px;
  border-radius: 8px;
  margin: 40px 0;
}

.contact-info strong {
  font-size: 18px;
}

.core-values-page .hero-banner {
  background: linear-gradient(135deg, #4aa3df, #1d6fa6);
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}
.core-values-page .hero-banner h1 {
  color: #ffffff;
  margin-bottom: 1rem;
}
.core-values-page .hero-banner .subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
}
.core-values-page .values-intro {
  padding: 3rem 0;
  background-color: #ffffff;
}
.core-values-page .values-intro .intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.125rem;
}
.core-values-page .values-intro .intro-content p {
  margin-bottom: 0;
}

.values-grid {
  padding: 4rem 0;
  background-color: #f8f9fa;
}
.values-grid .values-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 576px) {
  .values-grid .values-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .values-grid .values-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
.values-grid .value-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 37px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: 0.5s;
}
.values-grid .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
.values-grid .value-card .value-icon {
  margin-bottom: 1.5rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4aa3df;
  border-radius: 50%;
  color: #fff;
}
.values-grid .value-card h2 {
  margin-bottom: 1rem;
  color: #4aa3df;
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  font-size: 22px;
}
.values-grid .value-card p {
  margin-bottom: 0;
  color: #6c757d;
}

.values-commitment {
  padding: 4rem 0;
  background-color: #ffffff;
}
.values-commitment .commitment-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.values-commitment .commitment-content h2 {
  color: #4aa3df;
  margin-bottom: 1.5rem;
}
.values-commitment .commitment-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
.values-commitment .commitment-content .cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 576px) {
  .values-commitment .commitment-content .cta-wrapper {
    flex-direction: row;
  }
}

#contact-us .appoinment-section {
  padding: 100px 0;
  background: none;
}
@media (max-width: 1100px) {
  #contact-us .appoinment-section {
    padding: 50px 0 0px 0;
  }
}
#contact-us .appointment-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
#contact-us .appointment-wrapper .form-column {
  display: flex;
  align-items: center;
  justify-content: center;
}
#contact-us .appointment-wrapper .form-column .form-card {
  background-color: #e4eef2;
  border-radius: 15px;
  overflow: hidden;
  padding: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  width: 70%;
}
@media (max-width: 1100px) {
  #contact-us .appointment-wrapper .form-column .form-card {
    width: 100%;
  }
}
#contact-us .appointment-wrapper .form-column .form-group {
  position: relative;
  margin-bottom: 1.5rem;
}
#contact-us .appointment-wrapper .form-column .form-group .form-row {
  display: flex;
  gap: 1rem;
}
@media (max-width: 590px) {
  #contact-us .appointment-wrapper .form-column .form-group .form-row {
    flex-direction: column;
  }
}
#contact-us .appointment-wrapper .form-column .form-group input,
#contact-us .appointment-wrapper .form-column .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 5px;
  font-size: 0.9rem;
  outline: none;
}
#contact-us .appointment-wrapper .form-column .form-group input::-moz-placeholder, #contact-us .appointment-wrapper .form-column .form-group textarea::-moz-placeholder {
  color: #999;
  text-transform: capitalize;
  font-size: 0.8rem;
  font-family: "Montserrat", sans-serif;
}
#contact-us .appointment-wrapper .form-column .form-group input::placeholder,
#contact-us .appointment-wrapper .form-column .form-group textarea::placeholder {
  color: #999;
  text-transform: capitalize;
  font-size: 0.8rem;
  font-family: "Montserrat", sans-serif;
}
#contact-us .appointment-wrapper .form-column .form-group input:focus,
#contact-us .appointment-wrapper .form-column .form-group textarea:focus {
  border-color: #4aa3df;
}
#contact-us .appointment-wrapper .form-column .form-group textarea {
  min-height: 80px;
  resize: vertical;
}
#contact-us .appointment-wrapper .form-column .form-group i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 0.8rem;
}

.section-contact {
  padding: 100px 0;
}
.section-contact .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.section-contact .wrapper .contact-cards {
  flex-basis: 30%;
  border: 1px solid rgb(241, 241, 241);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 20px;
  box-shadow: 0px 6px 16px -2px rgba(0, 0, 0, 0.41);
  border-radius: 20px;
  transition: 0.5s;
}
@media (max-width: 1100px) {
  .section-contact .wrapper .contact-cards {
    flex-basis: 49%;
    margin-bottom: 1rem;
  }
}
@media (max-width: 1100px) and (max-width: 720px) {
  .section-contact .wrapper .contact-cards {
    flex-basis: 100%;
  }
}
@media (max-width: 1100px) {
  .section-contact .wrapper .contact-cards:first-child {
    flex-basis: 100%;
    margin-bottom: 1rem;
  }
}
.section-contact .wrapper .contact-cards:hover {
  transform: translateY(-10px);
  cursor: pointer;
}
.section-contact .wrapper .contact-cards .icons {
  flex: 20%;
}
.section-contact .wrapper .contact-cards .data {
  flex: 80%;
}
.section-contact .wrapper .contact-cards .data a {
  text-decoration: none;
}

#special-assesment .who-can-apply {
  padding: 20px 0 5rem !important;
}

.blog-section {
  padding: 100px 0;
}
.blog-section .wrapper {
  border: 1px solid rgb(234, 234, 234);
  padding: 3rem;
}
@media (max-width: 1100px) {
  .blog-section .wrapper {
    padding: 1rem;
  }
}
.blog-section .wrapper .cards h3 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  margin: 1rem 0;
}
.blog-section .wrapper .cards h4 {
  font-family: "Marcellus", serif;
  color: #053c4f;
  font-weight: normal;
  font-size: 38px;
  line-height: 1.2;
  font-size: 22px;
  margin: 1rem 0;
}
.blog-section .wrapper .cards span.date {
  color: rgb(83, 83, 83);
  margin: 1.3rem 0;
}
.blog-section .wrapper .cards .readmore {
  margin: 2rem 0;
}
.blog-section .wrapper .cards ul {
  padding-left: 1rem;
  margin: 1rem 0;
}/*# sourceMappingURL=style.css.map */