@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* Montserrat - Light */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

/* Montserrat - Regular */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* Montserrat - Bold */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* PlayfairDisplay - Regular */
@font-face {
  font-family: "PlayfairDisplay";
  src: url("../fonts/PlayfairDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* PlayfairDisplay - Medium */
@font-face {
  font-family: "PlayfairDisplay";
  src: url("../fonts/PlayfairDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

/* PlayfairDisplay - Bold */
@font-face {
  font-family: "PlayfairDisplay";
  src: url("../fonts/PlayfairDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

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

html,
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

p {
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
  font-size: 16px;
  font-weight: 500;
}

a {
  text-decoration: none;
  cursor: pointer;
}

ul li,
ol li {
  font-family: "Montserrat", sans-serif;
  padding: 0px;
  margin: 0px;
}

img {
  width: 100%;
  height: auto;
}

.w-100 {
  width: 100%;
}

.text-center {
  text-align: center;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Basic grid system */
.row {
  display: flex;
  flex-wrap: wrap;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  padding-left: 15px;
  padding-right: 15px;
}

.col-1 {
  width: 8.33%;
}

.col-2 {
  width: 16.66%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33%;
}

.col-5 {
  width: 41.66%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33%;
}

.col-8 {
  width: 66.66%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33%;
}

.col-11 {
  width: 91.66%;
}

.col-12 {
  width: 100%;
}

.bg-blue {
  background-color: #344ead;
}

.bg-pink {
  background-color: #ff6192;
}

.text-blue {
  color: #344ead;
}

.text-pink {
  color: #ff6192;
}

.com-padd {
  padding: 26px 0px;
}

.main-heading {
  text-align: center;
}

.main-heading h2 {
  padding-top: 20px;
  font-family: "PlayfairDisplay";
  font-weight: 700;
  font-size: 50px;
  padding-bottom: 30px;
}

.main-heading h3 {
  font-family: "PlayfairDisplay";
  font-weight: 400;
  font-size: 40px;
}

/* Default Header Styles */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #fff;
  transition: all 0.3s ease;
  padding: 5px 0;
}

header img {
  width: 280px;
  height: auto;
}

/* Transparent when at top */
header.transparent {
  background-color: transparent;
  box-shadow: none;
}

.inner-page header.transparent {
  position: relative;
}

/* Hide logo when at top */
header.transparent .col-6:first-child img {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.inner-page header.transparent .col-6:first-child img {
  visibility: visible;
  opacity: 1;
}

/* Show logo when scrolling */
header:not(.transparent) .col-6:first-child img {
  opacity: 1;
  visibility: visible;
}

.hamburger-meun {
  display: flex;
  align-items: center;
  justify-content: end;
}

.hamburger {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
  /* position: fixed;
    top: 20px;
    right: 20px; */
  transform: rotate(180deg);
}

.hamburger span {
  height: 3px;
  background-color: #344ead;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Line widths */
.hamburger span:nth-child(1) {
  width: 20px;
}

.hamburger span:nth-child(2) {
  width: 100%;
}

.hamburger span:nth-child(3) {
  width: 20px;
}

.hamburger:hover span {
  background-color: #ff6192;
}

/* Ensure row flex works correctly */
header .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo image */
/* header .col-6 img {
  max-width: 100%;
  height: auto;
} */

/* Flex for hamburger menu */
.hamburger-meun {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  header .row {
    flex-wrap: nowrap;
  }

  html {
    overflow-x: hidden;
  }

  header .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .hamburger-meun {
    justify-content: flex-end;
  }

  header .col-6 img {
    width: 180px;
    /* or any appropriate size */
  }

  .hamburger {
    width: 25px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    margin-left: auto;
  }

  .hamburger span {
    height: 2px;
    background-color: #344ead;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger span:nth-child(1),
  .hamburger span:nth-child(3) {
    width: 16px;
  }

  .hamburger span:nth-child(2) {
    width: 100%;
  }
}

/* --------------------------------------------------------09/07/2025----------------- */

/* Right Off-canvas Menu */
.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -300px;
  /* Hide it to the right initially */
  width: 300px;
  height: 100%;
  background-image: url("../");
  /* background-color: #cbd5e0; */
  background-color: #fff;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  z-index: 1000;
  padding: 20px;
  overflow: hidden;
}

.offcanvas-menu::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 100%;
  height: 100%;
  background-image: url(../img/FAQD.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}

/* .faqs {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.faqs::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-image: url(../img/FAQD.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0; 
}*/

.offcanvas-menu.active {
  right: 0;
  /* Slide in */
}

.offcanvas-menu ul li a.active,
.offcanvas-menu ul li a.active:visited {
  color: #ff5e78 !important;
  border-radius: 6px;
  font-weight: bold;
}

/* Close button inside menu */
.offcanvas-menu .close-btn {
  font-size: 28px;
  background: none;
  border: none;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}


/* Menu items styling */
.offcanvas-menu ul {
  list-style: none;
  padding: 60px 0 0;
  margin: 0;
}

.offcanvas-menu ul li {
  margin: 20px 0;
}

.offcanvas-menu ul li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  transition: color 0.3s ease;
}

.offcanvas-menu ul li a:hover {
  color: #ff5e78;
}

.offcanvas-open .hamburger {
  display: none;
}

/* Dropdown styles inside offcanvas menu */
.has-dropdown>a {
  position: relative;
  padding-right: 20px;
}



.dropdown {
  display: none;
  padding-left: 15px;
}

.has-dropdown.active>.dropdown {
    display: block;
    padding-top: 5px;
    padding-left: 30px;
    background-color: #ffeded;
    margin-top: 5px;
    padding-bottom: 5px;
}

.has-dropdown.active>a::after {
  transform: rotate(180deg);
}


.organisation-call-to-action{
  padding-bottom: 20px;
}

/* hero */

.hero {
  background-image: url("../img/hero-bg.png");
  height: 100vh;
  background-size: 62%;
  /* KEEP THIS */
  background-repeat: no-repeat;
  position: relative;
}

 .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 85%);
  }

.hero .hero-text {
  position: absolute;
  bottom: 15%;
  right: 30%;
}

.hero .hero-text h5 {
  text-transform: uppercase;
  font-size: 22px;
  color: #344ead;
}

.hero .hero-text h5 span {
  color: #ff6192;
}

.hero .hero-text h3 {
  font-size: 60px;
  font-weight: 300;
  color: #536bc3;
}

.hero .hero-text p {
  font-size: 18px;
  font-weight: 300;
  color: #536bc3;
}

.hero .hero-text p.pink {
  font-size: 18px;
  font-weight: 700;
  color: #ff6192;
  padding-bottom: 10px;
}

.hero .hero-text a {
  font-size: 18px;
  font-weight: 100;
  color: #ff6193;
  text-decoration: none;
}

.hero .hero-text a img {
  width: 18px;
  height: auto;
}

.hero-overlay-desktop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255 255 255 / 85%);
}

@media (max-width: 992px) {
  html {
    overflow-x: hidden;
  }

  .hero {
    height: auto;
    padding: 80px 0;
  }

  .hero .hero-text {
    position: static;
    text-align: center;
    margin-top: 40px;
  }

  .hero .hero-text h3 {
    font-size: 40px;
  }

  .hero .hero-text h5 {
    font-size: 18px;
  }

  .hero .hero-text p,
  .hero .hero-text p.pink,
  .hero .hero-text a {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .hero {
    height: auto;
    padding: 30px 0;
  }

  .hero .hero-text {
    text-align: center;
    margin-top: 20px;
  }

  .hero .hero-text h3 {
    font-size: 28px;
  }

  .hero .hero-text h5 {
    font-size: 16px;
  }

  .hero .hero-text p,
  .hero .hero-text p.pink,
  .hero .hero-text a {
    font-size: 14px;
  }

  .hero .hero-text a img {
    position: relative;
    width: 14px;
  }
}

/* hero end */

/* inner banner */

.inner-banner {
  /* margin-top: 75px; */
  background: linear-gradient(90deg, #5d73d6, #a15fb3);
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 9;
}

.inner-banner:after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  position: absolute;
  z-index: -1;
}

.inner-banner h1 {
  color: #ffffff;
  font-size: 42px;
  text-align: center;
  font-weight: 700;
  font-family: "PlayfairDisplay";
}

.inner-banner .breadcrumb {
  text-align: center;
  background-color: transparent;
}

.inner-banner .breadcrumb-nav {
  display: flex;
  justify-content: center;
}

.inner-banner .breadcrumb span {
  color: #fff;
  margin: 0 5px;
}

.inner-banner .breadcrumb li {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.inner-banner .breadcrumb a {
  text-decoration: none;
}

/* inner banner end */

/* banner section */

.banner .row {
  align-items: center;
}

.banner .banner-text h1 {
  font-size: 43px;
  color: #536bc3;
  padding-bottom: 20px;
  font-weight: 600;
  font-family: PlayfairDisplay;
}

.banner .banner-text a {
  font-size: 20px;
  background-color: #ff6193;
  display: inline-block;
  color: #ffffff;
  text-transform: uppercase;
  padding: 5px 30px;
  text-decoration: none;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.therapsists .banner-text a{
  text-transform: none;
      font-size: 18px;
}

/* banner section end*/

/* services */

.services-home {
  display: flex;
  position: relative;
}

.over-text-wrap {
  position: absolute;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 98px;
  z-index: 99;
}

.over-text {
  background-color: #ffffff;
  padding: 30px 30px;
}

.over-text h3 {
  font-family: "PlayfairDisplay";
  font-weight: 700;
  font-size: 22px;
}

.services-home img {
  display: block;
  margin: 0 auto;
}

.services-home .item {
  flex: 1;
  padding-top: 90px;
  text-align: center;
}

.services-home .for-myself {
  position: relative;
}

.services-home .for-my-org {
  position: relative;
}

.services-home .for-myself span {
  color: #fff;
}

.services-home .for-my-org span {
  color: #fff;
}

.services-home .for-myself a {
  position: absolute;
  right: 5%;
  bottom: 40%;
  font-size: 1.5rem;
  font-family: "Montserrat";
  color: #ddddddc4;
}

.services-home .for-myself a:hover {
  text-decoration: underline;
}

.services-home .for-my-org a:hover {
  text-decoration: underline;
}

.services-home .for-my-org a {
  position: absolute;
  left: 5%;
  top: 30%;
  font-size: 1.5rem;
  font-family: "Montserrat";
  color: #ddddddc4;
}

.services-home .for-myself img {
  width: 583px;
}

.services-home .for-my-org {
  background-image: url(../img/for-my-org.png);
  background-size: 92%;
  background-position: center bottom;
  background-repeat: no-repeat;
  height: 700px;
}

@media (max-width: 992px) {
  .services-home {
    flex-direction: column;
    align-items: center;
  }

  .over-text-wrap {
    position: static;
  }

  .services-home .item {
    padding-top: 20px;
    width: 100%;
  }

  .services-home .for-myself img {
    width: 80%;
    max-width: 400px;
  }

  .over-text h3 {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .services-home .for-myself .img {
    width: 100%;
    max-width: 320px;
  }

  .over-text {
    padding: 20px;
  }

  .over-text h3 {
    font-size: 18px;
  }
}

/* services end */

/* our mission */

.our-mission-wrap {
  display: flex;
  align-items: center;
}

.our-mission .item {
  flex: 1;
}

.our-mission h3 {
  font-family: "PlayfairDisplay";
  font-size: 40px;
}

.mission-box {
  background-color: #ffffff;
  box-shadow: 6px 6px 0px rgb(0 0 0 / 9%);
}

.mission-box h4 {
  font-family: "PlayfairDisplay";
  font-size: 28px;
  font-weight: bold;
  padding-bottom: 10px;
}

@media (max-width: 992px) {
  .our-mission-wrap {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .our-mission h3 {
    font-size: 28px;
    line-height: 1.4;
  }

  .our-mission .item img {
    width: 80%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
  }

  .mission-box {
    margin: 40px auto;
    padding: 20px;
    width: 90%;
  }

  f .mission-box h4 {
    font-size: 24px;
  }

  .mission-box p {
    font-size: 16px;
  }

  .our-mission .row .col-4:first-child,
  .our-mission .row .col-4:last-child {
    display: none;
  }

  .our-mission .row .col-4:nth-child(2) {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .our-mission h3 {
    font-size: 22px;
  }

  .mission-box h4 {
    font-size: 20px;
  }

  .mission-box p {
    font-size: 14px;
  }

  .our-mission .item img {
    width: 100%;
    max-width: 300px;
  }
}

/* our mission end */

/* Our Values */

.our-values h3 {
  font-family: "PlayfairDisplay";
  font-weight: 700;
  color: #000000;
  font-size: 40px;
  padding-bottom: 50px;
}

.values-box {
  padding-bottom: 30px;
}

.values-box h5 {
  font-family: "PlayfairDisplay";
  color: #536bc3;
  font-size: 25px;
  padding-bottom: 15px;
}

.values-box p {
  color: #595959;
}

.our-values h6 {
  font-family: "PlayfairDisplay";
  color: #000000;
  font-size: 32px;
}

@media (max-width: 992px) {
  .our-values h3 {
    font-size: 32px;
    text-align: center;
    padding-bottom: 30px;
  }

  .values-box h5 {
    font-size: 22px;
  }

  .our-values h6 {
    font-size: 24px;
    padding-top: 20px;
    padding-bottom: 15px;
  }

  .values-box p {
    font-size: 16px;
    text-align: justify;
  }

  .our-values .col-6 {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .our-values h3 {
    font-size: 26px;
  }

  .values-box h5 {
    font-size: 20px;
  }

  .our-values h6 {
    font-size: 20px;
  }

  .values-box p {
    font-size: 15px;
  }

  .values-box {
    padding-bottom: 20px;
  }
}

/* Our Values End */

/* highlight-text */

.highlight-text h3 {
  font-family: "PlayfairDisplay";
  font-weight: 700;
  font-size: 25px;
  text-align: center;
}

/* highlight-text end */

/* testimonial 2 */

.testimonial-section {
  padding: 60px 20px;
  background-color: #ff6193;
}

.testimonial-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-heading {
  color: #fff;
  font-family: "PlayfairDisplay";
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.testimonial-slider-2 .testimonial-item {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 0 15px;
}

.testimonials-slider-2 .testimonials-card {
  text-align: center;
}

.testimonials-slider-2 .testimonials-card .testimonial-text {
  color: #f0eeee !important;
  font-size: 16px;
  font-family: "Montserrat";
}

.testimonial-author {
  margin-top: 20px;
  color: #ffffff !important;
  font-weight: 500;
}

.testimonial-section .custom-prev,
.testimonial-section .custom-next {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.testimonial-section .custom-prev {
  left: -80px;
}

.testimonial-section .custom-next {
  right: -80px;
}

.testimonial-wrapper .testimonials-slider .slick-prev,
.testimonial-wrapper .testimonials-slider .slick-next {
  display: none !important;
}

/* testimonial 2 end */

/* Testimonials */

.testimonials {
  position: relative;
}

.testimonials h3 {
  color: #595959;
  font-family: "PlayfairDisplay";
  font-weight: 700;
  font-size: 40px;
  padding-bottom: 40px;
}

.testimonials-card p {
  color: #595959;
}

.testimonials-card h4 {
  color: #536bc3;
  font-size: 20px;
  font-weight: bold;
  padding-top: 15px;
}

.testimonials-card h5 {
  color: #595959;
  font-size: 18px;
  font-weight: normal;
}

.testimonials-slider .slick-prev,
.testimonials-slider .slick-next {
  position: absolute;
  top: -65px;
  z-index: 2;
  font-size: 0;
  /* Hide default slick arrow text */
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

.testimonials-slider .slick-prev {
  left: 260px;
}

.testimonials-slider .slick-next {
  left: 290px;
}

.testimonials-slider .slick-prev:before,
.testimonials-slider .slick-next:before {
  font-family: "Font Awesome 6 Free";
  /* Make sure this matches the version */
  font-weight: 900;
  /* Needed for solid icons */
  font-size: 30px;
  color: #000;
}

.testimonials-slider .slick-prev:before {
  content: "\f053";
  /* Font Awesome left arrow */
}

.testimonials-slider .slick-next:before {
  content: "\f054";
  /* Font Awesome right arrow */
}

/* Testimonials end */

/* Blogs */

.blogs {
  position: relative;
}

.blogs h3 {
  font-family: "PlayfairDisplay";
  font-weight: 700;
  color: #595959;
  font-size: 45px;
  padding-bottom: 40px;
}

.blogs h4 {
  color: #595959;
  font-size: 26px;
  font-weight: normal;
  padding-top: 15px;
}

.blogs-slider .slick-prev,
.blogs-slider .slick-next {
  position: absolute;
  top: -65px;
  z-index: 2;
  font-size: 0;
  /* Hide default slick arrow text */
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

.blog-insection-title {
  color: #ff5e84;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 18px;
  padding-bottom: 10px;
}

.blogs-slider .slick-prev {
  left: 136px;
}

.blogs-slider .slick-next {
  left: 166px;
}

.blogs-slider .slick-prev:before,
.blogs-slider .slick-next:before {
  font-family: "Font Awesome 6 Free";
  /* Make sure this matches the version */
  font-weight: 900;
  /* Needed for solid icons */
  font-size: 30px;
  color: #000;
}

.blogs-slider .slick-prev:before {
  content: "\f053";
  /* Font Awesome left arrow */
}

.blogs-slider .slick-next:before {
  content: "\f054";
  /* Font Awesome right arrow */
}

.blog-card {
  background: #fff;
  /* border-radius: 10px; */
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.blog-card h4 {
  color: #526cb9;
  font-size: 22px;
  font-family: "PlayfairDisplay";
  margin: 15px 15px 5px;
  font-weight: 600;
}

.blog-card p {
  font-size: 15px;
  margin: 0 15px 15px;
  color: #3c3c3c;
}

.blog-card a.btn {
  margin: 0 15px 20px;
  align-self: flex-start;
  font-family: "PlayfairDisplay";
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-weight: 400;
  padding: 6px 16px;
  background-color: #ff5e84;
  color: white;
  border: none;
}

.blog-card a.btn:hover {
  background-color: #5d73d6;
  transform: translateY(-2px);
  color: white;
}

.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.blog-card:hover img {
  transform: scale(1.03);
}

.blog-detail h {
  font-family: "PlayfairDisplay";
  font-weight: 700;
  font-size: 1.7rem;
  margin-bottom: 20px;
  color: #526cb9;
}

.blog-detail p {
  font-family: "Montserrat";
  color: #595959;
  margin-bottom: 20px;
}

.blog-detail li {
  font-family: "Montserrat";
  color: #595959;
  margin-bottom: 20px;
}

/* Blogs */

/* our team */

.our-team {
  padding: 100px 0px 0px 50px;
}

.team-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  cursor: pointer;
}

.team-card img {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  overflow: hidden;
}

.team-card h4 {
  padding-top: 10px;
  font-size: 18px;
  color: #ff6193;
}

.team-card p {
  padding-top: 0px;
  font-weight: normal;
  color: #3B5BDB;
}

.team-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content {
  background: white;
  padding: 20px 80px;
  max-width: 995px;
  width: 100%;
  border-radius: 10px;
  position: relative;
  overflow-y: auto;
  max-height: 90vh;
}

.close-modal {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 40px;
  cursor: pointer;
}

.profile-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.profile-pic {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  object-fit: cover;
}

.info .name {
  text-transform: uppercase;
  font-size: 30px;
  color: #ff6092;
  font-weight: 700;
}

.info .designation {
  font-size: 24px;
  margin-bottom: 20px;
}

.info p {
  margin: 3px 0;
}

.core-strengths {
  margin: 20px 0;
}

.core-strengths h4 {
  text-transform: uppercase;
  color: #536bc3;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  font-weight: normal;
}

.strength-icons {
  display: flex;
  gap: 20px;
  justify-content: space-around;
  margin-top: 10px;
}

.strength-icons div {
  text-align: center;
}

.strength-icons div img {
  width: 100px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Accordion */

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.accordion-button {
  background-color: #536bc3;
  color: #fff;
  font-weight: 600;
  padding: 20px 25px;
  border: none;
  font-size: 18px;
}

.accordion-button:not(.collapsed) {
  background-color: #ff6192;
  color: #fff;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  background-color: #f8f9fa;
  color: #333;
  padding: 25px;
  font-size: 16px;
  line-height: 1.6;
}

/* our team end*/

/* community */
.community-container {
  align-items: center;
  justify-content: center;
}

.community .row {
  justify-content: space-around !important;
}

.community-heading h2 {
  font-family: "PlayfairDisplay";
  font-size: 22px !important;
  font-weight: 700;
}

.community-container p {
  text-align: center;
  color: #595959;
}

.community-card p {
  color: #595959;
}

.community-card img {
  margin-bottom: 20px;
  box-shadow: 10px 10px 0px rgb(0 0 0 / 9%);
}

.community-card h4 {
  font-family: "PlayfairDisplay";
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.community-blog {
  background-color: #536bc3;
  text-align: center;
}

.community-blog h3 {
  font-size: 40px;
  font-family: "PlayfairDisplay";
  font-weight: 700;
  color: #ffffff;
  padding-bottom: 20px;
}

.community-blog p {
  font-size: 20px;
  color: #ffffff;
  padding-bottom: 20px;
  font-weight: 300;
}

.community-blog h4 {
  font-size: 40px;
  font-family: "PlayfairDisplay";
  font-weight: 400;
  color: #ffffff;
  padding-bottom: 20px;
  font-weight: 500;
}

.btn-sec {
  display: flex;
  justify-content: space-around;
}

.btn-sec a {
  border: 1px solid #ffffff;
  padding: 20px 30px;
  font-size: 20px;
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
}

.individual-contact-form-wrapper h1 {
  font-family: "PlayfairDisplay" !important;
}

/* Make banner image responsive */
.banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive Community Section */
@media (max-width: 992px) {
  .community-heading h2 {
    font-size: 20px !important;
    text-align: center;
  }

  .our-team {
    padding: 50px 0px;
  }

  .community-container p {
    font-size: 16px;
    text-align: justify;
  }

  .community-card {
    text-align: center;
    margin-bottom: 40px;
  }

  .community-card h4 {
    font-size: 18px;
    margin-top: 15px;
  }

  .community-card p {
    font-size: 15px;
    text-align: justify;
    padding: 0 10px;
  }

  .btn-sec {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .btn-sec a {
    font-size: 16px;
    padding: 15px 25px;
  }

  .community-blog h3,
  .community-blog h4 {
    font-size: 30px;
  }

  .community-blog p {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .community-heading h2 {
    font-size: 18px !important;
  }

  .community-card h4 {
    font-size: 16px;
  }

  .community-card p {
    font-size: 14px;
  }

  .community-blog h3,
  .community-blog h4 {
    font-size: 24px;
  }

  .community-blog p {
    font-size: 16px;
  }

  .btn-sec a {
    font-size: 14px;
    padding: 12px 20px;
  }
}

/* community end */

/* FAQ - start */
.faq-heading h2 {
  font-size: 55px;
  font-weight: 700;
  font-family: "PlayfairDisplay";
  color: #536bc3;
  margin-bottom: 45px;
}



.faqs {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.faqs::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-image: url(../img/FAQD.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.faqs>* {
  position: relative;
  z-index: 1;
}

/* .faq-side-img {
  background-image: url(../img/FAQD.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  opacity: 0.7;
} */
/* FAQ - end */

/* therapists-card */
#therapist-list {
  display: flex;
  flex-wrap: wrap;
}

#therapist-list .col-4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  box-sizing: border-box;
  padding: 15px;
  display: flex;
}

.therapists-card {
  background-color: #fbfbfb;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* horizontal, vertical, blur, color */
  text-align: center;
  margin: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.therapists-card h4 {
  font-family: "PlayfairDisplay";
  font-weight: 700;
  color: #ff6192;
  font-size: 25px;
  padding-top: 10px;
}

.therapists-card h5 {
  font-family: "PlayfairDisplay";
  font-weight: 400;
  font-size: 16px;
  font-weight: 500;
  padding-top: 0px;
}

.therapists-card p {
  font-size: 16px;
  font-weight: 300;
  padding-top: 10px;
  padding-bottom: 10px;
}

.therapists-card a {
  background-color: #536bc3;
  padding: 10px 30px;
  color: #ffffff;
  display: inline-block;
  text-decoration: none;
}

.therapists-card a:hover {
  background-color: #ff6192;
}

@media (max-width: 768px) {
  #therapist-list {
    display: block;
  }

  #therapist-list .col-4 {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 10px 0;
  }

  .therapists-card {
    margin: 10px 0;
    height: auto;
  }
}

/* therapists-card */

.filter-controls {
  display: flex;
  gap: 40px;
  margin: 60px 0;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-around;
}

.filter-controls>div {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 250px;
  max-width: 320px;
}

/* Label beside select */
.filter-controls label {
  font-family: "Montserrat";
  font-size: 1.2rem;
  margin: 0;
  white-space: nowrap;
}

/* Compact select styling */
.filter-controls select {
  padding: 6px 10px;
  font-size: 0.95rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  color: #1a2b48;
  appearance: none;
  background-color: white;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23333' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px 12px;
  min-width: 150px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .filter-controls {
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
  }

  .filter-controls>div {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: none;
  }

  .filter-controls label {
    font-size: 1rem;
    margin-bottom: 5px;
  }

  .filter-controls select {
    width: 100%;
    max-width: 300px;
  }
}

/* therapists-card end */

/* module */
.module h4 {
  font-size: 20px;
  color: #000000;
  font-weight: 600;
}

.mod-text {
  margin-top: 20px;
}

.mod-text h3 {
  font-weight: 700;
  font-family: "PlayfairDisplay";
  font-size: 28px;
}

.module p {
  padding-top: 15px;
  padding-bottom: 15px;
}

.module-content p {
  font-family: "Montserrat";
  color: #595959;
}

.mod-banner {
  text-align: center;
  margin: 35px 0px;
}

.mod-banner h2 {
  color: #ffffff;
  text-align: center;
  font-family: "PlayfairDisplay";
  font-weight: 700;
  font-size: 38px;
  margin-bottom: 30px;
}

.mod-banner a {
  text-decoration: none;
  background-color: transparent;
  padding: 10px;
  font-size: 18px;
  border: 1px solid #fff;
  color: #fff;
  padding: 15px 25px;
}

/* module end */

/* pranay css /////////////////// */

.hero-section {
  background-image: url("../img/2-section.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  /* Full viewport height */
  width: 100%;
  /* Full width */
  display: flex;
  /* Center content */
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #2d2d2d;
  position: relative;
  padding: 0;
  /* Remove padding if not needed */
}

/* Optional overlay if you want to dim the image */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  /* slight overlay */
  z-index: 0;
}

.hero-content {
  position: relative;
  padding-left: 400px;
  /* Increased from 50px to shift content right */
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-family: "PlayfairDisplay", serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content p {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  margin-bottom: 30px;
}

.btn-sec1 {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-sec1 a {
  background-color: #ff5e84;
  color: white;
  padding: 10px 20px;
  font-weight: 450;
  font-family: "Montserrat", sans-serif;
  /* border-radius: 5px; */
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hero2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 50px;
  background-size: cover;
  background-position: center center;
  min-height: 90vh;
  width: 100vw;
}

.hero-content2 {
  max-width: 50%;
  margin-left: 45%;
  text-align: left;
}

.mental-health-hero-content {
  margin-left: 50%;
}

.hero-content2 h1 {
  font-size: 3.5rem;
  font-family: "PlayfairDisplay";
  font-weight: 7000;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-content2 p {
  font-size: 2rem;
  font-family: "Montserrat";
  font-weight: 400;
  margin-bottom: 30px;
  color: #cbd5e0;
}

.mental-health-hero-content h1 {
  color: rgb(77, 77, 77) !important;
}

.mental-health-hero-content p {
  color: grey !important;
}

.module-hero-content {
  margin-left: 10%;
}

.module-hero-content h1 {
  color: rgb(77, 77, 77) !important;
}

.module-hero-content p {
  color: grey !important;
}

.hero-content2 .btn-group2 {
  display: flex;
  gap: 15px;
}

.btn2 {
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  /* border-radius: 5px; */
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-pink2 {
  background-color: #ff5e84;
  color: white;
}

.btn-pink2:hover {
  background-color: #ff6193;
}

@media (max-width: 768px) {
  .hero2 {
    flex-direction: column;
    padding: 20px;
    background-position: top center;
    background-size: cover;
    justify-content: center;
  }

  .hero-content2,
  .mental-health-hero-content,
  .module-hero-content {
    max-width: 100% !important;
    text-align: center !important;
    margin-left: 0 !important;
  }

  .hero-content2 .btn-group2 {
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    padding-left: 200px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding-left: 50px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .btn-sec {
    flex-direction: column;
    align-items: center;
  }

  .btn-sec1 a {
    width: 100%;
    max-width: 250px;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: auto;
    padding: 60px 15px;
  }

  .hero-content {
    padding-left: 0;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .btn-sec1 a {
    font-size: 14px;
    padding: 10px 16px;
  }
}

/* Org banner section- start */

.org-hero-section {
  height: 100vh;
  /* Full viewport height */
  width: 100%;
  /* Full width */
  /* Center content */
  position: relative;
  padding: 0;
  /* Remove padding if not needed */
}

.org-hero-section .org-hero-img {
  position: absolute;
  top: 0;
  left: 330px;
  height: 100%;
  width: 100%;
  display: flex;
  background-image: url("../img/organization-1.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

.org-hero-content {
  position: absolute;
  background-color: #ff5e84;
  text-align: center;
  color: #fff;
  padding: 40px 40px;
  top: 120px;
  left: 300px;
  z-index: 1;
  max-width: 550px;
  box-shadow: 10px 10px 0px rgb(0 0 0 / 9%);
}

.org-hero-content p {
  margin-bottom: 20px;
}

.hero-content p {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  margin-bottom: 30px;
}

.org-hero-content .btn-sec1 {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.org-hero-content .btn-sec1 a:nth-child(1) {
  background-color: #fff;
  color: #000;
}

.org-hero-content .btn-sec1 a:nth-child(2) {
  border: 1px solid #000;
  background-color: transparent;
  color: #000;
}

.country-org .col-12 {
  margin-bottom: 20px;
}

.country-org .col-4 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.org-logo {
  border-radius: 50%;
  height: 180px;
  border: 1px solid black;
  width: 50%;
}

.org-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.org-content-sec {
  height: 800px;
  background-image: url("../img/organization-2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.org-content-sec {
  display: flex;
  justify-content: center;
  align-items: center;
}

.org-content-sec .org-content {
  max-width: 50%;
}

.org-content-sec .org-content p {
  color: #eeeeee;
  font-family: "Montserrat";
  margin-bottom: 20px;
}

.org-content-sec .org-content .btn-sec1 {
  justify-content: left;
}

.org-mid-banner {
  background-image: url("../img/Break-Gradient.jpg");
  background-position: center;
  background-repeat: no-repeat;
}

.org-mid-banner .ord-mid-banner-content {
  margin: 0 auto;
}

.org-mid-banner .ord-mid-banner-content p {
  color: #000;
  text-align: center;
  font-size: 25px;
  font-family: "PlayfairDisplay";
}

.org-mid-banner .ord-mid-banner-content p span {
  font-weight: 900;
}

.org-options h2 {
  font-size: 36px;
  font-family: "PlayfairDisplay";
  font-weight: 400;
  margin-bottom: 30px;
}

.org-options ul {
  list-style: none;
}

.org-options ul li {
  margin-bottom: 35px;
  font-size: 22px;
}

.org-options .btn-sec1 {
  justify-content: left;
}

.org-options:nth-child(1) h2,
.org-options:nth-child(1) li {
  color: grey;
}

.org-options:nth-child(2) h2,
.org-options:nth-child(2) li {
  color: #ff6192;
}

.org-options:nth-child(1) .btn-sec1 a {
  background-color: grey;
  color: #fff;
}

/* --------------------------------------- */

.org-options1 h2 {
  font-size: 36px;
  font-family: "PlayfairDisplay";
  font-weight: 400;
  margin-bottom: 30px;
}

.org-options1 ul {
  list-style: none;
}

.org-options1 ul li {
  margin-bottom: 35px;
  font-size: 22px;
}

.org-options1 .btn-sec1 {
  justify-content: left;
}

.org-options1:nth-child(1) h2,
.org-options1:nth-child(1) li {
  color: #536bc3;
}

.org-options:nth-child(2) h2,
.org-options:nth-child(2) li {
  color: #ff6192;
}

.org-options1:nth-child(1) .btn-sec1 a {
  background-color: #536bc3;
  color: #fff;
}

.org-content-sec p {
  font-size: 23px;
  /* Increase as needed */
  line-height: 1.6;
  /* Optional for better readability */
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
}

.btn-sec2 a {
  font-size: 23px;
  /* Increase text size */
  padding: 12px 24px;
  /* Increase padding for bigger button */
  display: inline-block;
  /* Ensure padding applies properly */
  font-weight: 250;
  background-color: #ff5e84;
  color: white;
  padding: 10px 20px;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
}

.organization-call-to-action {
  padding: 0px 20px 25px 20px;
  text-align: left;
  background-color: #ffffff;
}

.org-container {
  max-width: 1000px;
  margin: 0 auto;
}

.org-heading {
  font-size: 32px;
  font-weight: 500;
  color: #111;
  margin-bottom: 30px;
  font-family: "PlayfairDisplay";
}

.org-cta-btn {
  padding: 10px 24px;
  border: 1px solid #000;
  font-size: 20px;
  color: #000;
  text-decoration: none;
  display: inline-block;
  font-family: "PlayfairDisplay";
  transition: all 0.3s ease;
}

.org-cta-btn:hover {
  background-color: #000;
  color: #fff;
}

/* Arrows */

/* Responsive */
@media (max-width: 768px) {
  .testimonial-section .slick-prev {
    left: -30px;
  }

  .testimonial-section .slick-next {
    right: -30px;
  }
}

@media (max-width: 1200px) {
  .org-hero-section .org-hero-img {
    left: 250px;
  }

  .org-hero-content {
    left: 200px;
  }
}

@media (max-width: 992px) {
  .org-hero-section {
    height: auto;
    padding-bottom: 40px;
  }

  .org-hero-section .org-hero-img {
    position: relative;
    left: 0;
    height: 400px;
    background-position: center;
  }

  .org-hero-content {
    position: relative;
    top: auto;
    left: auto;
    margin: 20px auto;
    width: 90%;
    max-width: 500px;
    text-align: center;
  }

  .org-content-sec {
    flex-direction: column;
    height: auto;
    padding: 60px 20px;
  }

  .org-content-sec .org-content {
    max-width: 100%;
    text-align: center;
  }

  .org-content-sec .org-content .btn-sec1 {
    justify-content: center;
  }

  .org-mid-banner {
    height: auto;
    padding: 40px 20px;
  }

  .org-mid-banner .ord-mid-banner-content p {
    font-size: 20px;
  }

  .org-options {
    padding: 23px 20px;
  }

  .org-options h2 {
    font-size: 28px;
    text-align: left;
  }

  .org-options ul li {
    font-size: 18px;
    text-align: left;
  }

  .org-options .btn-sec1 {
    align-items: left;
  }

  .organization-call-to-action {
    text-align: center;
  }

  .org-heading {
    font-size: 26px;
  }

  .org-cta-btn {
    font-size: 18px;
    padding: 10px 20px;
  }

  .organization-testimonial {
    padding: 40px 20px;
  }

  .testimonial-title {
    font-size: 28px;
  }

  .testimonial-text {
    font-size: 16px;
  }

  .testimonial-author {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .org-hero-section .org-hero-img {
    height: 300px;
  }

  .org-hero-content {
    padding: 20px;
    font-size: 16px;
  }

  .org-content-sec .org-content p {
    font-size: 16px;
  }

  .org-mid-banner .ord-mid-banner-content p {
    font-size: 18px;
  }

  .org-options h2 {
    font-size: 24px;
  }

  .org-options ul li {
    font-size: 16px;
    align-items: left;
  }

  .btn-sec2 a {
    font-size: 16px;
    padding: 10px 18px;
  }

  .org-cta-btn {
    font-size: 16px;
    padding: 8px 16px;
  }

  .testimonial-title {
    font-size: 22px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .testimonial-author {
    font-size: 14px;
  }
}

/* Org banner section- end */

/* individual section start */
.individuals-section {
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: auto;
  font-family: "PlayfairDisplay";
  background-color: #fff;
  color: #333;
}

.individuals-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}

.individuals-content {
  flex: 1 1 55%;
  font-family: "PlayfairDisplay";
  min-width: 300px;
}

.individuals-image {
  flex: 1 1 40%;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.individuals-image img {
  width: 650px;
  margin-top: 40px;
  /* max-width: 800px; */
  height: auto;
  object-fit: contain;
}

.individuals-title {
  font-size: 2.5rem;
  /* font-weight: bold; */
  font-weight: 500;
  font-family: "PlayfairDisplay";
  margin-bottom: 1rem;
}

.individuals-description {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 15px;
}

.individuals-steps {
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}

.individuals-steps li {
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.individuals-steps li::marker {
  font-size: 2.3rem;
  /* Increase as needed */
  font-weight: bold;
  font-family: "PlayfairDisplay";
}

.individuals-note {
  font-style: italic;
  font-weight: bold;
  color: #333;
  margin-bottom: 2rem;
}

.individuals-message {
  font-size: 1.8rem;
  margin-top: 2rem;
  font-weight: 500;
  font-family: "PlayfairDisplay";
}

.individuals-highlight {
  color: #344ead;
  font-weight: bold;
}

.individuals-footer {
  color: #888;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.individuals-guide {
  color: #e0418d;
  font-weight: 500;
}

@media (max-width: 992px) {
  .individuals-title {
    font-size: 2rem;
  }

  .individuals-description {
    font-size: 1rem;
  }

  .individuals-steps li {
    font-size: 1rem;
  }

  .individuals-steps li::marker {
    font-size: 1.6rem;
  }

  .individuals-message {
    font-size: 1.5rem;
  }

  .individuals-image img {
    width: 100%;
    max-width: 500px;
  }
}

.blog-title1234 {
  font-family: "Times New Roman", Georgia, serif;
  font-weight: bold;
  color: #4a6bb8;
  font-size: 2rem;
  /* adjust if needed */
  margin-bottom: 1rem;
  text-align: left;
}

@media (max-width: 576px) {
  .individuals-section {
    padding: 2rem 1rem;
  }

  .individuals-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .individuals-description,
  .individuals-steps li,
  .individuals-note,
  .individuals-footer {
    font-size: 0.95rem;
    text-align: justify;
  }

  .individuals-message {
    font-size: 1.3rem;
    text-align: center;
  }

  .individuals-wrapper {
    gap: 2rem;
  }

  .individuals-image img {
    width: 100%;
    max-width: 350px;
    margin-top: 20px;
  }

  .individuals-steps {
    padding-left: 1rem;
  }

  .individuals-steps li::marker {
    font-size: 1.3rem;
  }
}

/* individual section end */

.section-wrapper {
  padding: 35px 20px;
  background-color: #fff;
}

.flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.column-half {
  width: 100%;
}

@media (min-width: 768px) {
  .column-half {
    width: 48%;
  }
}

.text-column p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #595959;
  line-height: 1.6;
  margin-bottom: 20px;
}

.image-column img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 500px;
  margin: 0 auto;
}

/* .section-note {
  margin-top: 60px;
} */

.section-highlight {
  font-family: "PlayfairDisplay", serif;
  font-size: 28px;
  font-weight: 500;
  color: #222;
  line-height: 1.5;
  text-align: left;
}

.text-accent {
  color: #ff5e84;
  /* font-weight: bold; */
}

.apply-banner {
  background-color: #5067c5;
  /* Replace with your exact shade if different */
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.apply-content {
  max-width: 900px;
  margin: 0 auto;
}

.apply-heading {
  font-family: "PlayfairDisplay", serif;
  font-size: 35px;
  font-weight: 800;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #fff;
}

.apply-btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  border: 2px solid #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background-color: #fff;
  color: #5067c5;
}

@media (max-width: 768px) {
  .apply-heading {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .apply-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}

.peaceful-block {
  padding: 30px 20px;
  background-color: #ffffff;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.peaceful-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.peaceful-image {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin-bottom: 25px;
}

.peaceful-heading {
  font-family: "PlayfairDisplay", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #5067c5;
}

/* About us start */
.about-us-section {
  /* background-color: #f5f7ff; */
  padding: 20px 20px 0px 20px;
  font-family: "Montserrat", sans-serif;
}

.about-us-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: auto;
  flex-wrap: wrap;
}

.about-us-container1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.about-us-content {
  flex: 1 1 50%;
  padding: 20px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.about-us-image {
  flex: 1 1 45%;
  text-align: center;
  /* padding: 20px; */
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.about-us-content h2 {
  font-family: "PlayfairDisplay", serif;
  font-size: 47px;
  color: #ff5e84;
  margin-bottom: 20px;
}

.about-us-content h1 {
  font-family: "PlayfairDisplay", serif;
  font-size: 47px;
  color: #344ead;
  margin-bottom: 20px;
}

.about-us-content p {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-us-btn {
  display: inline-block;
  font-family: "PlayfairDisplay", serif;
  padding: 12px 28px;
  background-color: #ff6192;
  color: white;
  text-decoration: none;
  /* border-radius: 8px; */
  font-weight: 200;
  transition: background-color 0.3s ease;
}

.about-us-btn:hover {
  background-color: #e04d7b;
}

.about-us-image img {
  max-width: 100%;
  height: auto;
  /* border-radius: 12px; */
  /* box-shadow: 8px 8px 0px rgba(52, 78, 173, 0.15); */
}

.about-us-founder {
  flex: 1 1 35%;
  text-align: center;
}

.about-us-founder img {
  max-width: 100%;
  height: auto;
  /* border-radius: 8px; */
}

.team-section {
  background-color: #5a6fc2;
  /* Adjust to match your color */
  padding: 60px 20px;
  text-align: center;
}

.team-heading {
  font-size: 39px;
  font-family: "PlayfairDisplay", serif;
  color: #fff;
  font-weight: bold;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  max-width: 900px;
  margin: auto;
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  /* border: 4px solid #fff; */
  transition: transform 0.3s ease;
}

.team-member img:hover {
  transform: scale(1.05);
}

.team-member {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member-name {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #ff5e78;
  font-family: "Montserrat", sans-serif;
}

/* Team Canvas */
.team-canvas {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: #fff;
  box-shadow: -3px 0 15px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  z-index: 1001;
  overflow-y: auto;
}

.team-canvas.active {
  right: 0;
}

.canvas-content {
  padding: 30px 20px;
  position: relative;
}

.canvas-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.member-photo {
  text-align: center;
  margin-bottom: 20px;
}

.member-photo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.member-info h3 {
  font-family: "PlayfairDisplay";
  font-size: 24px;
  color: #ff5e84;
  margin-bottom: 5px;
  text-align: center;
}

.member-info p {
    font-size: 16px;
    color: #5a6fc2;
    text-align: center;
    margin-bottom: 10px;
}

.member-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.member-socials a {
  color: #536bc3;
  font-size: 20px;
  transition: color 0.3s ease;
}

.member-socials a:hover {
  color: #ff5e84;
}

#memberBrief {
  text-align: justify;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 768px) {
  .team-canvas {
    width: 100%;
    right: -100%;
  }
  
  .canvas-content {
    padding: 20px 15px;
  }
}

.animate-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.animate-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

@media (max-width: 992px) {
  .about-us-container {
    flex-direction: column;
    text-align: center;
  }

  .about-us-content,
  .about-us-image {
    flex: 1 1 100%;
    padding: 10px 15px;
    transform: none !important;
    opacity: 1 !important;
  }

  .about-us-content h2 {
    font-size: 28px;
  }

  .about-us-content p {
    font-size: 16px;
  }

  .about-us-btn {
    padding: 10px 24px;
    font-size: 16px;
  }

  .about-us-image img {
    max-width: 90%;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .about-us-section {
    padding: 30px 15px 0px 15px;
  }

  .about-us-content h2 {
    font-size: 32px;
  }

  .about-us-content h1 {
    font-size: 32px;
  }

  .about-us-content p {
    font-size: 15px;
  }

  .about-us-btn {
    font-size: 15px;
    padding: 10px 20px;
  }

  .about-us-image img {
    max-width: 100%;
  }
}

.animate-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.1s ease;
}

.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* About us end  */

/* Contact us start  */
.contact-section {
  padding: 30px 20px;
  background-color: #f5f7ff;
  font-family: "Montserrat", sans-serif;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
}

.contact-info h3 {
  font-size: 36px;
  font-family: "PlayfairDisplay", serif;
  margin-bottom: 20px;
  color: #ff5e78;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin-top: 45px;
}

.contact-info ul li {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  padding-left: 30px;
}

.contact-info ul li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: #ff5e78;
  font-size: 18px;
}

.contact-info a {
  color: #007bff;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-socials {
  margin-top: 50px !important;
}

.contact-socials P {
  margin-bottom: 15px;
  font-size: 18px;
}

.contact-socials P i {
  margin-right: 15px;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.contact-form-wrapper {
  flex: 1 1 50%;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.contact-form-wrapper h2 {
  font-size: 36px;
  font-family: "PlayfairDisplay", serif;
  color: #344ead;
  margin-bottom: 10px;
}

.contact-form-wrapper p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.contact-form1 input,
.contact-form1 textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.contact-form1 button {
  background-color: #ff6192;
  color: white;
  padding: 14px 30px;
  font-size: 18px;
  font-family: "PlayfairDisplay", serif;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form1 button:hover {
  background-color: #e04d7b;
}

.contact-map {
  margin: 0 20px;
}

/* Animation visible class */
.animate-left.visible,
.animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (min-width: 768px) {

  .contact-info,
  .contact-form-wrapper {
    flex: 1 1 48%;
  }
}

/* contact us end  */

/* blog start */
.blg-page-section {
  padding: 80px 20px 0px 20px;
  background-color: #f9fbff;
  font-family: "Montserrat", sans-serif;
}

.blg-page-container {
  max-width: 1200px;
  margin: auto;
}

.blg-page-container .col-4 {
  margin-bottom: 20px;
}

.blg-page-heading {
  text-align: center;
  font-size: 36px;
  font-family: "PlayfairDisplay", serif;
  color: #344ead;
  margin-bottom: 60px;
}

.blg-page-card {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.blg-page-reverse {
  flex-direction: row-reverse;
}

.blg-page-img {
  flex: 1 1 45%;
}

.blg-page-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.05);
}

.blg-page-content {
  flex: 1 1 50%;
}

.blg-page-content h3 {
  font-size: 26px;
  color: #2e408f;
  font-family: "PlayfairDisplay", serif;
  margin-bottom: 15px;
}

.blg-page-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blg-page-readmore {
  font-size: 16px;
  color: #ff6192;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.blg-page-readmore:hover {
  color: #e04d7b;
}

/* Animation visible class */
.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------new blog css------------------------------ */

.blog-title {
  text-align: center;
  font-family: "PlayfairDisplay", serif;
  font-size: 36px;
  margin-bottom: 50px;
  color: #ff5e84;
}

.blog-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  align-items: center;
  gap: 30px;
  /* padding: 21px 20px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px; */
}

.blog-row.reverse {
  flex-direction: row-reverse;
}

.blog-image {
  flex: 1 1 45%;
  text-align: center;
}

.blog-image img {
  width: 100%;
  max-width: 500px;
  height: auto;

  border-radius: 5px;
}

.blog-page-section {
  padding: 30px 0px;
  background: #f5f7ff;
}

.blog-content {
  flex: 1 1 50%;
}

.blog-content h3 {
  font-size: 28px;
  font-family: "PlayfairDisplay", serif;
  margin-bottom: 15px;
  color: #2e408f;
}

.blog-content p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #555;
}

.blog-content a {
  color: #fff;
  padding: 10px 20px;
  background-color: #ff6192;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-content a:hover {
  background-color: #526cb9;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {

  .blog-row,
  .blog-row.reverse {
    flex-direction: column;
  }

  .blog-image,
  .blog-content {
    flex: 1 1 100%;
    text-align: center;
  }

  .blog-content {
    padding-top: 20px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .blg-page-card {
    flex-direction: column !important;
    text-align: center;
  }

  .blg-page-img,
  .blg-page-content {
    flex: 1 1 100%;
  }

  .blg-page-content h3 {
    font-size: 22px;
  }

  .blg-page-heading {
    font-size: 30px;
  }
}

/* blog end */

/* footer */

.organisation-footer {
  background: linear-gradient(90deg, #5d73d6, #a15fb3);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* gap: 40px; */
}

.footer-brand {
  flex: 1 1 300px;
  text-align: center;
}

.footer-logo {
  width: 180px;
  height: auto;
}

.footer-info {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.6;
  color: #f3f3f3;
}

.footer-socials {
  margin-top: 20px;
}

.footer-socials a {
  color: #5e52a0;
  background-color: #ffffff;
  font-size: 18px;
  margin: 0 6px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.nav-socials {
  margin-top: 55px !important;
}

.nav-socials a {
  color: #fff !important;
  background-color: #ff5e84 !important;
  margin-bottom: 5px !important;
}

.nav-socials a:hover {
  background-color: #5e52a0 !important;
  color: #fff !important;
}

@media (max-width: 576px) {
  .nav-socials a {
    margin: 0 6px !important;
    /* Reduce horizontal spacing */
    font-size: 20px;
    /* Optional: slightly smaller icons */
  }

  .nav-socials {
    justify-content: center;
    gap: 0 !important;
    /* Remove any flex gap if used */
  }
}

.footer-socials a:hover {
  background-color: #ff5e84;
  color: #fff;
}

.footer-links {
  display: flex;
  flex: 2 1 600px;
  justify-content: space-evenly;
  text-align: left;
  flex-wrap: wrap;
  gap: 30px;
}

.link-section {
  flex: 1 1 150px;
}

.link-section h5 {
  margin-top: 30px;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  border-bottom: 2px solid pink;
  padding-bottom: 5px;
  display: inline-block;
}

.link-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-section ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.link-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.link-section ul li a:hover {
  opacity: 0.7;
}

.link-section ul li i {
  margin-right: 8px;
}

.mobile-quick {
  display: none;
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff !important;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    /* gap: 10px; */
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .link-section {
    width: 100%;
  }

  .footer-socials a {
    margin: 0 10px;
  }

  .mobile-quick {
    display: block;
    z-index: 999;
    position: absolute;
  }

  .mobile-quick ul {
    padding: 0px;
    margin: 0px;
    display: flex;
    width: 100%;
    position: fixed;
    bottom: 0px;
  }

  .mobile-quick li {
    width: 50%;
    color: #ffffff;
    padding: 6px;
    font-size: 18px;
    list-style: none;
    text-align: center;
  }

  .mobile-quick li:first-child {
    background-color: #34b7f1;
  }

  .mobile-quick li:last-child {
    background-color: #25d366;
  }

  .mobile-quick li a {
    color: #ffffff;
    text-decoration: none;
  }

  .float {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    width: 140px;
  }

  .footer-info {
    font-size: 13px;
  }

  .link-section h5 {
    font-size: 15px;
  }

  .link-section ul li {
    font-size: 13px;
  }

  .footer-socials a {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
  }

  .footer-brand {
    flex: 1 1 230px;
  }

  .footer-links {
    flex: 2 1 565px;
  }
}

/* footer end */

/* Team Canvas Overlay */
.canvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.canvas-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Tablet responsive fixes */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-content2 h1 {
    font-size: 3rem;
  }

  .hero-content2 p {
    font-size: 1.5rem;
  }

  .individuals-image img {
    width: 100%;
    max-width: 450px;
  }

  .org-hero-content {
    max-width: 450px;
    padding: 30px;
  }

  .testimonial-section .custom-prev {
    left: -50px;
  }

  .testimonial-section .custom-next {
    right: -50px;
  }

  .offcanvas-menu {
    width: 320px;
  }

  .main-heading h2 {
    font-size: 42px;
  }

  .our-mission h3 {
    font-size: 32px;
  }

  .our-values h3 {
    font-size: 36px;
  }

  .blogs h3 {
    font-size: 38px;
  }

  .testimonials h3 {
    font-size: 36px;
  }

  .faq-heading h2 {
    font-size: 48px;
  }

  .about-us-content h1,
  .about-us-content h2 {
    font-size: 38px;
  }

  .contact-info h3,
  .contact-form-wrapper h2 {
    font-size: 32px;
  }

  .blog-title {
    font-size: 32px;
  }

  .team-heading {
    font-size: 34px;
  }
}

/* Mobile responsiveness */
@media only screen and (max-width: 768px) {

  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12 {
    width: 100%;
  }

  .team-modal .modal-content {
    max-width: 90%;
    padding: 15px;
  }

  .inner-banner h1 {
    font-size: 28px;
  }

  .inner-banner .breadcrumb li {
    font-size: 16px;
  }

  .main-heading h2 {
    font-size: 32px;
  }

  .testimonial-heading {
    font-size: 1.8rem;
  }

  .blogs h3 {
    font-size: 32px;
  }

  .faq-heading h2 {
    font-size: 36px;
  }

  .accordion-button {
    font-size: 18px;
  }

  .accordion-body {
    font-size: 16px;
  }

  .offcanvas-menu {
    width: 280px;
  }

  .offcanvas-menu ul li a {
    font-size: 16px;
  }

  .hero-content2 h1 {
    font-size: 2.5rem !important;
  }

  .hero-content2 p {
    font-size: 1.2rem !important;
  }

  .btn-group2 {
    flex-direction: column;
    gap: 10px;
  }

  .btn2 {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .modal-content {
    width: 95% !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    padding: 20px !important;
    border-radius: 12px;
  }

  .profile-header {
    flex-direction: column;
    text-align: center;
    align-items: center !important;
  }

  .profile-header img.profile-pic {
    width: 140px !important;
    height: 140px !important;
    margin-bottom: 15px;
  }

  .core-strengths .strength-icons {
    flex-direction: column;
    align-items: center !important;
    gap: 10px;
  }

  .accordion-section .accordion {
    font-size: 16px;
  }
}

/* --------------------------------conatct-pop------------------------------ */
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
  .services-home .for-myself img {
    width: 500px;
  }

  .services-home .for-my-org a {
    top: 35%;
  }

  .services-home .for-my-org {
    background-image: url(../img/for-my-org.png);
    background-size: 92%;
    background-position: center bottom;
    background-repeat: no-repeat;
    height: 614px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
  .hero {
    background-size: 90%;
    height: 49vh;
  }

  .hero .hero-text {
    right: 10%;
    bottom: 25%;
    max-width: 80vw;
  }

  .hero .hero-text h3 {
    font-size: 40px;
  }

  .hero .hero-text h5 {
    font-size: 18px;
  }

  .hero .hero-text p,
  .hero .hero-text p.pink,
  .hero .hero-text a {
    font-size: 16px;
  }
}


/* Modal base */
.team-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Modal content container */
.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px 20px;
  border-radius: 10px;
  max-width: 900px;
  width: 95%;
  position: relative;
  box-sizing: border-box;
}

/* Close button */
.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2;
}

/* Contact form container */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}

/* Left: Image */
.contact-image1 {
  flex: 1 1 300px;
  max-width: 100%;
  text-align: center;
}

.contact-image1 img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
}

/* Right: Form */
.contact-form-wrapper {
  flex: 1 1 300px;
  min-width: 250px;
}

.contact-form-wrapper h1 {
  font-size: 26px;
  margin-bottom: 10px;
}

.contact-form-wrapper p {
  margin-bottom: 20px;
  font-size: 15px;
  color: #555;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  padding: 10px 20px;
  background-color: #536bc3;
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #3f56a0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .modal-content {
    margin: 10% auto;
    padding: 20px 15px;
  }

  .contact-container {
    flex-direction: column;
    gap: 20px;
  }

  .contact-image {
    display: none;
  }

  .close-modal {
    top: 10px;
    right: 15px;
    font-size: 24px;
  }

  .contact-form-wrapper h2 {
    font-size: 28px;
  }
}

/* individual-modle ------------------------------- */
.individual-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.individual-modal-content {
  background-color: #fff;
  margin: 8% auto;
  padding: 30px 20px;
  border-radius: 10px;
  max-width: 600px;
  width: 95%;
  position: relative;
  box-sizing: border-box;
}

.individual-close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.individual-contact-form-wrapper h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.individual-contact-form-wrapper p {
  margin-bottom: 20px;
  font-size: 15px;
  color: #555;
}

.individual-contact-form input,
.individual-contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.individual-contact-form textarea {
  resize: vertical;
}

.individual-contact-form button {
  padding: 10px 20px;
  background-color: #536bc3;
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

.individual-contact-form button:hover {
  background-color: #3f56a0;
}

/* Responsive */
@media (max-width: 768px) {
  .individual-modal-content {
    margin: 15% auto;
    padding: 20px 15px;
  }

  .individual-close-modal {
    font-size: 24px;
    top: 10px;
    right: 15px;
  }
}

/* ----------------------------------------------------------------- */

.mental-health-services-section {
  padding: 20px 20px 40px 20px;
  background-color: white;
  text-align: center;
  font-family: "PlayfairDisplay", serif;
}

.mental-health-services-section h4 {
  font-weight: 200;
  font-size: 35px;
  margin-bottom: 20px;
  font-family: "PlayfairDisplay";
  color: #333;
}

.service-buttons {
  margin-top: 30px;
  display: flex;
  gap: 100px;
  /* space between buttons on desktop */
  justify-content: center;
  flex-wrap: wrap;
}

.service-buttons a {
  border: 1px solid black;
  padding: 15px 25px;
  font-size: 18px;
  display: inline-block;
  color: black;
  text-decoration: none;
  transition: all 0.3s ease;
  /* border-radius: 6px; */
}

.service-buttons a:hover {
  background-color: black;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .service-buttons {
    gap: 30px;
  }

  .service-buttons a {
    font-size: 16px;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .service-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .service-buttons a {
    width: 80%;
    text-align: center;
  }
}

/* Clients Slider */
.clients-slider {
  margin: 40px 0;
  position: relative;
}

.clients-slider::after {
  content: "";
  display: table;
  clear: both;
}

.client-logo {
  padding: 0 8px;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  max-width: 300px;
  height: 100px;
  object-fit: contain;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.client-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.clients-slider .client-prev,
.clients-slider .client-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #536bc3;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.clients-slider .client-prev:hover,
.clients-slider .client-next:hover {
  background: #ff6192;
  transform: translateY(-50%) scale(1.1);
}

.clients-slider .client-prev {
  left: -50px;
}

.clients-slider .client-next {
  right: -50px;
}

.clients-slider .slick-prev:before,
.clients-slider .slick-next:before {
  display: none;
}

@media (max-width: 768px) {
  .clients-slider .client-prev {
    left: -30px;
  }
  
  .clients-slider .client-next {
    right: -30px;
  }
}

.team-card {
  background: white;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 30px;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  background: #f8f9fa;
}

.team-card img {
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.team-card:hover img {
  transform: scale(1.1);
}

.team-card h4 {
  color: #536bc3;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.team-card:hover h4 {
  color: #ff6192;
}

.team-card p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 0;
}
.therapist-profile {
  padding: 80px 0 60px;
  background: #f8f9fa;
}

.therapist-image{
  text-align: center;
}

.therapist-image img {
    height: auto;
    width: auto;
    border-radius: 50%;
    overflow: hidden;
}

.therapist-info h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #536bc3;
  margin-bottom: 10px;
  font-family: "PlayfairDisplay", serif;
}

.therapist-info h3 {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 30px;
  font-weight: 400;
}

.therapist-details p {
  margin-bottom: 8px;
  color: #555;
  font-size: 16px;
}

.contact-btn {
  background: #ff6192;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #e5507d;
  transform: translateY(-2px);
}

.core-strengths {
  padding: 60px 0;
  background: white;
}

.core-strengths h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
  font-family: "PlayfairDisplay", serif;
}

.strength-item {
  padding: 30px 20px;
}

.strength-icon {
  width: 150px;
  height: 150px;
  background: #ff6192;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.strength-icon img{
  width: 80px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.strength-icon i {
  font-size: 5rem;
  color: white;
}

.strength-item h4 {
  font-size: 1.3rem;
  color: #333;
  font-weight: 500;
  text-transform: capitalize;
}

.about-therapist {
  padding: 60px 0;
  background: #f8f9fa;
}

.accordion-button {
  background: #536bc3;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
}

.accordion-button:not(.collapsed) {
  background: #536bc3;
  color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 768px) {
  .therapist-info h1 {
    font-size: 2rem;
  }
  
  .core-strengths h2 {
    font-size: 2rem;
  }
  
  .therapist-profile {
    padding: 40px 0;
  }
  
  .core-strengths {
    padding: 40px 0;
  }
  
  .about-therapist {
    padding: 40px 0;
  }
}

.therapists-contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 870px;
  position: relative;
}

.close-modal {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

/* --------------------------list-counsellors- hero ----------------- */
.list-counsellors-hero {
  background-color: #f5f6fa;
}

.list-counsellors-hero .container {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.hero-image3 {
  flex: 1;
  min-width: 300px;
  /* text-align: left; */
}

.hero-image3 img {
  margin-left: -29%;
  width: 140%;
  max-width: 900px;
  height: 750px;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-family: "PlayfairDisplay";
  font-weight: 7000;
  /* margin-bottom: 20px; */
  color: #4e4e4e;
}

.hero-text p {
  font-size: 1.6rem;
  font-family: "Montserrat";
  font-weight: 400;
  /* margin-bottom: 30px; */
  color: #646667;
}

@media (max-width: 991px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 0px;
  }

  .hero-image3 img {
    max-width: 90%;
    height: auto;
    margin: 0 auto;
    align-items: center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero {
    color: #fff;
    position: relative;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 85%);
  }

  .services-home .for-myself a,
  .services-home .for-my-org a {
    font-size: 1rem;
    padding: 8px 12px;
  }

  .services-home .for-my-org {
    background-image: url(../img/for-my-org.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    aspect-ratio: 16 / 14;
    width: 100%;
    display: block;
    padding-top: 100px;
    background-origin: content-box;
  }

  .services-home .for-my-org a {
    left: 5%;
    top: 15%;
  }

  .services-home .for-myself a {
    bottom: 47%;
  }

  .list-counsellors-hero {
    padding: 40px 15px;
  }

  .footer-brand {
    flex: 1 1 230px;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .inner-banner {
    height: 200px;
  }

  .inner-banner h1 {
    font-size: 24px;
  }

  .mental-health-services-section h4 {
    font-size: 24px;
  }

  .hero-content2 h1 {
    font-size: 2rem !important;
  }

  .hero-content2 p {
    font-size: 1rem !important;
  }

  .testimonial-section .custom-prev,
  .testimonial-section .custom-next {
    display: none;
  }

  .blogs-slider .slick-prev,
  .blogs-slider .slick-next {
    display: none !important;
  }

  .testimonials-slider .slick-prev,
  .testimonials-slider .slick-next {
    display: none !important;
  }
}