:root{
  --primary:#0D2055;
  --secondary:#00BFBF;
  --dark:#08163A;
  --text:#4B5563;
  --light:#EFF6F6;
  --white:#ffffff;
  --border:#E5E7EB;
  --font:'Poppins',Arial,sans-serif;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body {
  font-family: 'Poppins',sans-serif;
}

/* INFO BAR */
.info-bar{
  background:var(--dark);
  padding:10px 0;
}

.info-inner{
  max-width:1180px;
  margin:auto;
  padding:0 15px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
}

.info-left,
.info-right{
  display:flex;
  align-items:center;
  gap:9px;
  color:rgba(255,255,255,.78);
  font-size:14px;
}

.info-left i,
.info-right i{
  color:var(--secondary);
  font-size:15px;
}

/* HEADER */
.main-header{
  width:100%;
  background:#fff;
  border-bottom:1px solid rgba(0,191,191,.25);
  position:relative;
  z-index:999;
}

.header-inner {
    max-width: 1180px;
    margin: auto;
    padding: 0px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo-box img{
    width: 369px;
    height: 102px;
    object-fit: contain;
    display: block;
}

/* NAV */
.navbar{
  display:flex;
  align-items:center;
  gap:28px;
}

.navbar > a,
.has-dropdown > a{
  color:#333;
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  transition:.3s ease;
  position:relative;
}

.navbar > a::after,
.has-dropdown > a::after{
  content:"";
  width:0;
  height:2px;
  background:var(--secondary);
  position:absolute;
  left:0;
  bottom:-8px;
  transition:.3s ease;
}

.navbar > a:hover,
.navbar > a.active,
.has-dropdown > a:hover{
  color:var(--primary);
}

.navbar > a:hover::after,
.navbar > a.active::after,
.has-dropdown:hover > a::after{
  width:100%;
}

.has-dropdown{
  position:relative;
}

.has-dropdown > a{
  display:flex;
  align-items:center;
  gap:6px;
}

.has-dropdown > a i{
  font-size:11px;
  transition:.3s ease;
}

.has-dropdown:hover > a i{
  transform:rotate(180deg);
}


/* DROPDOWN */
.dropdown-menu{
  position:absolute;
  top:38px;
  left:0;
  width:235px;
  background:#fff;
  box-shadow:0 15px 40px rgba(8,22,58,.15);
  opacity:0;
  visibility:hidden;
  transform:translateY(12px);
  transition:.3s ease;
  z-index:999;
}

.has-dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown-menu a{
  display:block;
  color:#555;
  text-decoration:none;
  font-size:14px;
  font-weight:500;
  padding:13px 18px;
  border-bottom:1px solid #f0f0f0;
  transition:.25s ease;
}

.dropdown-menu a:hover{
  background:var(--primary);
  color:#fff;
  padding-left:24px;
}

.dropdown-menu a:last-child{
  border-bottom:0;
}

/* CONTACT BUTTON */
.contact-btn{
  background:var(--secondary);
  color:#fff;
  text-decoration:none;
  padding:14px 24px;
  font-size:15px;
  font-weight:700;
  transition:.3s ease;
  white-space:nowrap;
}

.contact-btn:hover{
  background:var(--primary);
  transform:translateY(-3px);
}

/* HAMBURGER */
.hamburger{
  display:none;
  width:44px;
  height:44px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--primary);
  font-size:20px;
  cursor:pointer;
}

/* OVERLAY */
.sidebar-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  z-index:1000;
}

.sidebar-overlay.active{
  display:block;
}

/* MOBILE MENU */
.mobile-menu{
  position:fixed;
  top:0;
  left:-300px;
  width:290px;
  height:100vh;
  background:#fff;
  z-index:1001;
  display:flex;
  flex-direction:column;
  transition:.35s ease;
  box-shadow:8px 0 30px rgba(0,0,0,.18);
  overflow-y:auto;
}

.mobile-menu.open{
  left:0;
}

.mob-header{
  background:var(--primary);
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.mob-header img{
  width:170px;
  height:auto;
  object-fit:contain;
}

.mob-close{
  width:36px;
  height:36px;
  border:0;
  background:rgba(255,255,255,.16);
  color:#fff;
  font-size:18px;
  cursor:pointer;
}

.mob-nav{
  flex:1;
  padding:12px 0;
}

.mob-nav > a,
.mob-dropdown-toggle{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 22px;
  color:#333;
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  border-bottom:1px solid #f1f1f1;
  cursor:pointer;
}

.mob-nav > a.active{
  color:var(--primary);
  background:var(--light);
}

.mob-nav > a:hover,
.mob-dropdown-toggle:hover{
  color:var(--secondary);
  background:#f7ffff;
}

.mob-dropdown-toggle i{
  font-size:12px;
  transition:.3s ease;
}

.mob-dropdown-toggle.open i{
  transform:rotate(180deg);
}

.mob-sub{
  display:none;
  background:#f8ffff;
}

.mob-sub.open{
  display:block;
}

.mob-sub a{
  display:block;
  padding:12px 22px 12px 38px;
  color:#555;
  text-decoration:none;
  font-size:14px;
  border-bottom:1px solid #eef4f4;
  transition:.25s ease;
}

.mob-sub a:hover{
  color:var(--primary);
  background:#eefafa;
  padding-left:44px;
}

.mob-footer{
  padding:18px;
  border-top:1px solid var(--border);
}

.mob-footer a{
  display:block;
  background:var(--secondary);
  color:#fff;
  text-align:center;
  text-decoration:none;
  padding:13px;
  font-size:15px;
  font-weight:700;
}

.mob-footer a:hover{
  background:var(--primary);
}

/* RESPONSIVE */
@media(max-width:900px){
  .navbar,
  .contact-btn{
    display:none;
  }

  .hamburger{
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .logo-box img{
    width:220px;
    height:62px;
  }
}

@media(max-width:600px){
  .info-inner{
    justify-content:center;
    text-align:center;
  }

  .info-left{
    font-size:12.5px;
    line-height:1.5;
  }

  .info-right{
    display:none;
  }

  .header-inner{
    padding:12px 14px;
  }

  .logo-box img{
    width:190px;
    height:55px;
  }
}


/* ==================
   HERO SLIDER
================== */
/* HERO SLIDER */
.hero-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.heroSwiper{
    width:100%;
    height:auto;
}

.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide{
    width:100%;
    height:auto;
}

.heroSwiper .swiper-slide img{
    width:100%;
    height:auto;
    display:block;
    object-fit:contain;
    object-position:center;
}

/* Arrows */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev{
    width:45px;
    height:45px;
    background:rgba(30,69,180,.85);
    border-radius:50%;
    color:#fff;
}

.heroSwiper .swiper-button-next:after,
.heroSwiper .swiper-button-prev:after{
    font-size:16px;
    font-weight:700;
}

/* Dots */
.heroSwiper .swiper-pagination{
    bottom:12px !important;
}

.heroSwiper .swiper-pagination-bullet{
    width:10px;
    height:10px;
    background:#fff;
    opacity:1;
}

.heroSwiper .swiper-pagination-bullet-active{
    background:#1E45B4;
}

/* Mobile */
@media(max-width:767px){
    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev{
        display:none;
    }

    .heroSwiper .swiper-pagination{
        bottom:6px !important;
    }

    .heroSwiper .swiper-pagination-bullet{
        width:7px;
        height:7px;
    }
}

/* ==================
   ABOUT SECTION
================== */
.doctor-about-section{
  width:100%;
  padding:80px 15px;
  background:#fff;
  font-family:'Poppins',sans-serif;
}

.doctor-about-container{
  max-width:1120px;
  margin:0 auto;
  display:grid;
  grid-template-columns:500px 1fr;
  gap:60px;
  align-items:center;
}

/* ===== IMAGES ===== */
.about-images{
  position:relative;
  height:480px;
  max-width:480px;
}

.img-main-wrap,
.about-img-small-wrap{
  position:relative;
  overflow:hidden;
}

.img-main-wrap{
  width:380px;
  height:450px;
}

.about-img-main{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.about-img-small-wrap{
  position:absolute;
  right:0;
  bottom:0;
  border:8px solid #fff;
  box-shadow:0 12px 35px rgba(0,0,0,.12);
  line-height:0;
}

.about-img-small{
  width:220px;
  height:240px;
  object-fit:cover;
  display:block;
}

/* ===== SHINE EFFECT ===== */
.shine-effect{
  position:absolute;
  top:0;
  left:-75%;
  width:50%;
  height:100%;
  background:linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.5) 50%,
    rgba(255,255,255,0) 100%
  );
  transform:skewX(-25deg);
  transition:left .75s ease;
  pointer-events:none;
}

.img-main-wrap:hover .shine-effect,
.about-img-small-wrap:hover .shine-effect{
  left:125%;
}

/* ===== EXPERIENCE BADGE ===== */
.about-experience{
  position:absolute;
  top:20px;
  left:-20px;
  background:#19776b;
  color:#fff;
  padding:18px 24px;
  text-align:center;
  animation:pulse 2.5s ease-in-out infinite;
}

.about-experience h3{
  font-size:30px;
  font-weight:700;
  margin:0;
  line-height:1;
}

.about-experience p{
  font-size:13px;
  margin:4px 0 0;
}

@keyframes pulse{
  0%, 100%{ box-shadow:0 0 0 0 rgba(25,119,107,.4); }
  50%{ box-shadow:0 0 0 12px rgba(25,119,107,0); }
}

/* ===== CONTENT ===== */
.about-content::before{
  content:"";
  width:60px;
  height:2px;
  background:var(--secondary);
  display:block;
  margin-bottom:22px;
}

.about-content span{
  display:block;
  color:var(--secondary);
  font-size:13px;
  font-weight:700;
  letter-spacing:3px;
  margin-bottom:12px;
  text-transform:uppercase;
}

.about-content h2{
  font-size:40px;
  line-height:1.2;
  color:var(--dark);
  font-weight:700;
  margin:0 0 18px;
}

.about-content p{
  max-width:540px;
  color:#7c828b;
  font-size:15px;
  line-height:1.8;
  margin:0 0 28px;
}

.about-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:145px;
  height:50px;
  background:var(--primary);
  color:#fff;
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  transition:.35s ease;
}

.about-btn:hover{
  background:var(--secondary);
  transform:translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media(max-width:991px){
  .doctor-about-container{
    grid-template-columns:1fr;
    gap:50px;
  }

  .about-images{
    max-width:380px;
    margin:0 auto 30px;
  }

  .about-content{
    text-align:center;
  }

  .about-content::before{
    margin:0 auto 22px;
  }

  .about-content p{
    margin-left:auto;
    margin-right:auto;
  }
}

@media(max-width:575px){
  .doctor-about-section{
    padding:55px 14px;
  }

  .about-images{
    max-width:100%;
    height:auto;
  }

  .img-main-wrap{
    width:100%;
    height:380px;
  }

  .about-img-small-wrap{
    width:150px;
    height:170px;
  }

  .about-img-small{
    width:150px;
    height:170px;
  }

  .about-experience{
    top:14px;
    left:14px;
    padding:12px 18px;
  }

  .about-experience h3{
    font-size:24px;
  }

  .about-content h2{
    font-size:30px;
  }

  .about-content p{
    font-size:14.5px;
    line-height:1.75;
    margin-bottom:24px;
  }

  .about-btn{
    height:46px;
    min-width:135px;
    font-size:14px;
  }
}













/* ==================
   SERVICE SECTION
================== */


.feature-one{
  --meciy-base:#0d2055;
  --meciy-primary:#00bfbf;
  --meciy-gray:#878c8f;
  --meciy-bdr-color:#e6e6e6;
  --meciy-font:'Poppins',sans-serif;

  width:100%;
  background:#fbf8f6;
  padding:110px 15px 70px;
}

.feature-one__header{
  max-width:1320px;
  margin:0 auto 60px;
  text-align:center;
}

.feature-one__heading{
  font-family:'Cormorant Garamond', serif;
  font-size:48px;
  font-weight:700;
  color:#0d2055;
  margin:0 0 16px;
}

.feature-one__subheading{
  font-family:'Poppins', sans-serif;
  font-size:17px;
  color:var(--meciy-gray);
  max-width:640px;
  margin:0 auto;
  line-height:1.8;
}

.feature-one *,
.feature-one *::before,
.feature-one *::after{
  box-sizing:border-box;
}

.feature-one__row{
  max-width:1320px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.feature-one__single{
  position:relative;
  background:#fff;
  min-height:438px;
  padding:0 0 35px;
  margin-bottom:0;
  overflow:hidden;
  z-index:1;
  box-shadow: 0 0 25px rgba(0,0,0,0.15);
  transition:.4s ease;
}

.feature-one__single:nth-child(even){
  margin-top:70px;
}

.feature-one__single::before{
  content:"";
  position:absolute;
  inset:0;
  background:#0d2055;
  transform:scaleX(.7) rotateX(20deg);
  opacity:0;
  transition:all .4s linear;
  z-index:-1;
}

.feature-one__single:hover::before{
  transform:scaleX(1) rotateX(0deg);
  opacity:1;
}

.feature-one__icon{
  width:140px;
  height:140px;
  background:var(--meciy-base);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
  margin:0 0 38px 0;
  z-index:2;
  transition:.4s ease;
}

.feature-one__single:hover .feature-one__icon{
  background:var(--meciy-primary);
}

.feature-one__icon svg{
  width:58px;
  height:58px;
  filter:brightness(0) invert(1);
  position:relative;
  z-index:2;
}

.feature-one__title{
  font-size:25px;
  font-weight:700;
  line-height:1.25;
  color:#111;
  margin:0;
  padding:0 30px 24px;
  border-bottom:1px solid var(--meciy-bdr-color);
  transition:.35s ease;
      font-family: 'Poppins', sans-serif;
}

.feature-one__text{
  font-size:17px;
  line-height:1.8;
  color:var(--meciy-gray);
  margin:0;
  padding:24px 30px 22px;
  transition:.35s ease;
      font-family: 'Poppins', sans-serif;
}

.feature-one__footer{
  padding:0 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
}

.feature-one__number{
  font-size:42px;
  font-weight:700;
  color:transparent;
  -webkit-text-stroke:1px #bfc3c5;
  line-height:1;
  user-select:none;
  transition:.35s ease;
}

/* CORNER BUTTON */
.corner-btn{
  position:relative;
  width:132px;
  height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--meciy-base);
  font-size:15px;
  font-weight:600;
  text-decoration:none;
  overflow:visible;
  transition:.35s ease;
      font-family: 'Poppins', sans-serif;
}

.corner-btn span{
  position:relative;
  z-index:2;
}

.corner-btn::before,
.corner-btn::after{
  content:"";
  position:absolute;
  width:24px;
  height:24px;
  transition:.35s ease;
  pointer-events:none;
}

.corner-btn::before{
  left:0;
  bottom:0;
  border-left:1px solid var(--meciy-base);
  border-bottom:1px solid var(--meciy-base);
}

.corner-btn::after{
  right:0;
  top:0;
  border-right:1px solid var(--meciy-base);
  border-top:1px solid var(--meciy-base);
}

.corner-btn:hover::before,
.corner-btn:hover::after,
.feature-one__single:hover .corner-btn::before,
.feature-one__single:hover .corner-btn::after{
  width:100%;
  height:100%;
  border-color:#fff;
}

.corner-btn:hover,
.feature-one__single:hover .corner-btn{
  color:#fff;
}

.feature-one__single:hover .feature-one__title,
.feature-one__single:hover .feature-one__text{
  color:#fff;
}

.feature-one__single:hover .feature-one__title{
  border-color:rgba(255,255,255,.22);
}

.feature-one__single:hover .feature-one__number{
  -webkit-text-stroke:1px rgba(255,255,255,.7);
}

@media(max-width:1200px){
  .feature-one__row{
    grid-template-columns:repeat(2,1fr);
  }

  .feature-one__single:nth-child(even){
    margin-top:0;
  }
}

@media(max-width:576px){
  .feature-one{
    padding:70px 12px;
  }

   .feature-one__heading{
    font-size:32px;
  }
  .feature-one__subheading{
    font-size:15px;
  }

  .feature-one__row{
    grid-template-columns:1fr;
    gap:24px;
  }

  .feature-one__single{
    min-height:auto;
  }

  .feature-one__icon{
    width:115px;
    height:115px;
    margin-bottom:30px;
  }

  .feature-one__icon svg{
    width:48px;
    height:48px;
  }

  .feature-one__title{
    font-size:23px;
    padding:0 22px 20px;
  }

  .feature-one__text{
    font-size:15px;
    padding:20px 22px;
  }

  .feature-one__footer{
    padding:0 22px;
  }

  .feature-one__number{
    font-size:36px;
  }

  .corner-btn{
    width:120px;
    height:44px;
    font-size:14px;
  }
}




/* ==================
   WHY CHOOSE US
================== */
.why-us{
    width:100%;
    padding:90px 15px;
    background:#fafafa;
    font-family:'Poppins',sans-serif;

}

.why-us-container{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 550px;
    gap:60px;
    align-items:center;
}

.why-tag{
    display:block;
    color:#00bfbf;
    font-size:15px;
    font-weight:700;
    letter-spacing:4px;
    margin-bottom:18px;
}

.why-content h2{
    font-size:58px;
    line-height:1.15;
    color:#111;
    margin-bottom:25px;
    font-weight:700;
}

.why-content h3{
    font-size:42px;
    color:#0D2055;
    margin-bottom:20px;
}

.why-content p{
    max-width:650px;
    font-size:18px;
    line-height:1.9;
    color:#777;
    margin-bottom:45px;
}

.why-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    border-top:1px solid #ececec;
    border-left:1px solid #ececec;
}

.why-box{
    display:flex;
    align-items:center;
    gap:18px;
    padding:35px 25px;
    border-right:1px solid #ececec;
    border-bottom:1px solid #ececec;
    transition:.3s;
}

.why-box:hover{
    background:#fff;
}

.why-box i{
    font-size:40px;
    color:#00bfbf;
}

.why-box span{
    font-size:24px;
    color:#111;
}

.why-image{
    width:100%;
    height:439px;
    overflow:hidden;
}

.why-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Responsive */

@media(max-width:991px){

    .why-us-container{
        grid-template-columns:1fr;
    }

    .why-image{
        height:500px;
        order:-1;
    }

    .why-content h2{
        font-size:42px;
    }

    .why-content h3{
        font-size:30px;
    }
}

@media(max-width:768px){

    .why-features{
        grid-template-columns:1fr;
    }

    .why-content h2{
        font-size:34px;
    }

    .why-content p{
        font-size:16px;
    }

    .why-box span{
        font-size:20px;
    }

    .why-image{
        height:350px;
    }
}

/* ==================
   APPOINTMENT STRIP
================== */
.book-appointment-section{
  width:100%;
  padding:26px 34px;
  background:#fff;
}

.book-appointment-wrap{
  max-width:1170px;
  margin:auto;
  height:230px;
  position:relative;
  display:flex;
  align-items:center;
}

.book-img{
  width:360px;
  height:230px;
  position:absolute;
  left:0;
  top:0;
  z-index:2;
  overflow:hidden;
}

.book-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.book-content{
  width:calc(100% - 360px);
  height:100%;
  margin-left:360px;
  background:#0d2055;
  position:relative;
  display:flex;
  align-items:center;
  padding-left:115px;
  padding-right:60px;
}

.book-icon{
  width:110px;
  height:110px;
  background:#fff;
  position:absolute;
  left:-20px;
  top:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#00bfbf;
  font-size:54px;
  z-index: 2;
}

.book-content h2{
  color:#fff;
  font-size:30px;
  line-height:1.35;
  font-weight:700;
  margin:0;
  position:relative;
  z-index:2;
}

.book-content h3{
  position:absolute;
  left:210px;
  top:92px;
  font-size:45px;
  color:rgba(0,0,0,.18);
  margin:0;
  font-weight:700;
  z-index:1;
}

.book-btn{
  margin-left:auto;
  background:#00bfbf;
  color:#fff;
  text-decoration:none;
  padding:27px 50px;
  font-size:26px;
  font-weight:700;
  position:relative;
  overflow:hidden;
  z-index:2;
}

.book-btn:hover {
    background:#33adad;
}

.book-btn::after{
  content:"";
  position:absolute;
  width:90px;
  height:90px;
  right:-25px;
  top:-25px;
  background:rgba(255,255,255,.13);
  border-radius:50%;
}

@media(max-width:768px){
  .book-appointment-section{
    padding:20px 15px;
  }

  .book-appointment-wrap{
    height:auto;
    display:block;
  }

  .book-img{
    position:relative;
    width:100%;
    height:220px;
  }

  .book-content{
    width:100%;
    margin-left:0;
    min-height:250px;
    padding:90px 25px 30px;
    display:block;
    text-align:center;
  }

  .book-icon{
    left:50%;
    top:-55px;
    transform:translateX(-50%);
  }

  .book-content h2{
    font-size:28px;
  }

  .book-content h3{
    display:none;
  }

  .book-btn{
    display:inline-block;
    margin-top:25px;
    padding:18px 42px;
    font-size:22px;
  }
}

/* ==================
   FAQ SECTION
================== */
.psy-faq-section{
  width:100%;
  padding:95px 15px;
  background:#fff;
  font-family:'Poppins',sans-serif;
}

.psy-faq-container{
  max-width:1180px;
  margin:auto;
  display:grid;
  grid-template-columns:390px 1fr;
  gap:75px;
  align-items:start;
}

.psy-faq-tag{
  display:inline-block;
  color:#0D2055;
  font-size:15px;
  font-weight:700;
  letter-spacing:5px;
  margin-bottom:18px;
}

.psy-faq-left h2 {
    font-size: 52px;
    line-height: 1.12;
    color: #090909;
    margin: 0 0 25px;
    font-weight: 200;
}

.psy-faq-left p{
  color:#8a8f96;
  font-size:17px;
  line-height:1.9;
  margin:0 0 35px;
}

.psy-faq-btn{
  display:inline-block;
  background:#0D2055;
  color:#fff;
  text-decoration:none;
  padding:18px 34px;
  font-size:18px;
  font-weight:700;
  transition:.3s ease;
}

.psy-faq-btn:hover{
  background:#00BFBF;
}

.psy-faq-right{
  border-top:1px solid #ededed;
}

.psy-faq-item{
  border-bottom:1px solid #ededed;
}

.psy-faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 28px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-align: left;
    font-size: 24px;
    font-weight: 500;
    color: #111;
}

.psy-faq-question span{
  min-width:42px;
  height:42px;
  background:#fff5f1;
  color:#0D2055;
  border:1px solid #f4c2b2;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  line-height:1;
  transition:.3s ease;
}

.psy-faq-item.active .psy-faq-question span,
.psy-faq-question:hover span{
  background:#0D2055;
  color:#fff;
}

.psy-faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.psy-faq-answer p{
  color:#858b92;
  font-size:16px;
  line-height:1.9;
  padding:0 70px 28px 0;
  margin:0;
}

.psy-faq-item.active .psy-faq-answer{
  max-height:260px;
}

@media(max-width:991px){
  .psy-faq-container{
    grid-template-columns:1fr;
    gap:45px;
  }

  .psy-faq-left h2{
    font-size:42px;
  }
}

@media(max-width:576px){
  .psy-faq-section{
    padding:70px 15px;
  }

  .psy-faq-left h2{
    font-size:34px;
  }

  .psy-faq-left p{
    font-size:15px;
  }

  .psy-faq-question{
    font-size:19px;
    padding:22px 0;
  }

  .psy-faq-question span{
    min-width:36px;
    height:36px;
    font-size:24px;
  }

  .psy-faq-answer p{
    padding-right:0;
    font-size:15px;
  }
}

/* ==================
   HEALTH CARE SECTION
================== */
.psy-health-section{
  width:100%;
  padding:90px 15px 100px;
  background:#fff;
  font-family:'Poppins',sans-serif;
}

.psy-health-container{
  max-width:1180px;
  margin:auto;
}

.psy-health-heading{
  text-align:center;
  margin-bottom:70px;
}

.psy-health-heading span{
  display:block;
  color:#0D2055;
  font-size:15px;
  font-weight:700;
  letter-spacing:5px;
  margin-bottom:15px;
}

.psy-health-heading h2{
  font-size:52px;
  line-height:1.15;
  color:#090909;
  margin:0;
  font-weight:700;
}

.psy-health-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.psy-health-card{
  background:#fff;
  text-align:center;
  padding:55px 34px 45px;
  border:1px solid #ededed;
  position:relative;
  overflow:hidden;
  transition:.35s ease;
}

.psy-health-card::before{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:0;
  background:#00BFBF;
  transition:.4s ease;
  z-index:1;
}

.psy-health-card:hover::before{
  height:100%;
}

.psy-health-card > *{
  position:relative;
  z-index:2;
}

.psy-health-icon{
  width:88px;
  height:88px;
  background:#fff5f1;
  border:1px solid #0D2055;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 28px;
  color:#0D2055;
  font-size:38px;
  transition:.35s ease;
}

.psy-health-card h3{
  font-size:28px;
  color:#111;
  margin:0 0 18px;
  font-weight:700;
  transition:.35s ease;
}

.psy-health-card p{
  color:#858b92;
  font-size:15px;
  line-height:1.8;
  margin:0 0 24px;
  transition:.35s ease;
}

.psy-health-card a{
  color:#0D2055;
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  transition:.35s ease;
}

.psy-health-card a i{
  margin-right:5px;
}

.psy-health-card:hover h3,
.psy-health-card:hover p,
.psy-health-card:hover a{
  color:#fff;
}

.psy-health-card:hover .psy-health-icon{
  background:#0D2055;
  color:#fff;
  border-color:#0D2055;
  transform:translateY(-6px);
}

@media(max-width:991px){
  .psy-health-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .psy-health-heading h2{
    font-size:42px;
  }
}

@media(max-width:767px){
  .psy-health-section{
    padding:70px 15px;
  }

  .psy-health-heading{
    margin-bottom:45px;
  }

  .psy-health-heading h2{
    font-size:34px;
  }

  .psy-health-grid{
    grid-template-columns:1fr;
  }

  .psy-health-card{
    padding:45px 25px 38px;
  }
}


/* ==================
   APPOINTMENT FORM SECTION
================== */

.psy-appointment-section{
  width:100%;
  padding:70px 15px 80px;
  font-family:'Poppins',sans-serif;
}

.psy-appointment-section h2{
  text-align:center;
  color:#0D2055;
  font-size:52px;
  line-height:1.1;
  font-weight:700;
  margin:0 0 45px;
}

.psy-appointment-box{
  max-width:1120px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  background:#fff;
}

.psy-appointment-form{
  background:#fff;
  padding:55px 55px;
   box-shadow: 0 0 25px rgba(0,0,0,0.15);
}

.appt-tag,
.contact-tag{
  display:block;
  color:#0D2055;
  font-size:14px;
  font-weight:700;
  letter-spacing:4px;
  margin-bottom:12px;
}

.psy-appointment-form h3{
  font-size:38px;
  color:#111;
  margin:0 0 32px;
  font-weight:700;
}

.psy-appointment-form input,
.psy-appointment-form textarea,
.psy-appointment-form select{
  width:100%;
  height:58px;
  border:1px solid #eeeeee;
  outline:0;
  background:#fff8f5;
  color:#555;
  font-size:15px;
  padding:0 18px;
  margin-bottom:18px;
  font-family:'Poppins',sans-serif;
  transition:.25s ease;
}

.psy-appointment-form select{
  appearance:none;
  -webkit-appearance:none;
  cursor:pointer;
  color:#777;
  background-color:#fff8f5;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23777777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 16px center;
}

.psy-appointment-form textarea{
  height:105px;
  resize:none;
  padding-top:16px;
  line-height:1.6;
}

.psy-appointment-form input:focus,
.psy-appointment-form textarea:focus,
.psy-appointment-form select:focus{
  border-color:#0D2055;
  background:#fff;
  box-shadow:0 0 0 3px rgba(239,165,143,.15);
}

.psy-appointment-form input::placeholder,
.psy-appointment-form textarea::placeholder{
  color:#8c8c8c;
}

.psy-appointment-form button{
  width:100%;
  height:58px;
  border:0;
  background:#0D2055;
  color:#fff;
  font-size:20px;
  font-weight:700;
  cursor:pointer;
  transition:.3s ease;
}

.psy-appointment-form button:hover{
  background:#111;
}

.psy-appointment-contact{
  background:#00BFBF;
  padding:58px 44px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  position:relative;
  overflow:hidden;
}

.psy-appointment-contact::after{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  right:-65px;
  top:-65px;
  background:rgba(255,255,255,.08);
  border-radius:50%;
}

.psy-appointment-contact h3{
  color:#fff;
  font-size:34px;
  line-height:1.2;
  margin:0 0 15px;
}

.psy-appointment-contact p{
  color:rgba(255,255,255,.75);
  font-size:15px;
  line-height:1.8;
  margin:0 0 32px;
}

.psy-ac-item{
  display:flex;
  gap:16px;
  align-items:flex-start;
  margin-bottom:24px;
  position:relative;
  z-index:2;
}

.psy-ac-icon{
  width:48px;
  height:48px;
  background:rgba(255,255,255,.13);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  transition:.3s ease;
}

.psy-ac-item:hover .psy-ac-icon{
  background:#0D2055;
}

.psy-ac-icon svg{
  width:22px;
  height:22px;
  stroke:#fff;
  fill:none;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.psy-ac-item label{
  display:block;
  color:#0D2055;
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:4px;
}

.psy-ac-item span{
  display:block;
  color:#fff;
  font-size:15px;
  line-height:1.55;
}

@media(max-width:991px){
  .psy-appointment-box{
    grid-template-columns:1fr;
  }

  .psy-appointment-section h2{
    font-size:42px;
  }
}

@media(max-width:576px){
  .psy-appointment-section{
    padding:60px 12px;
  }

  .psy-appointment-section h2{
    font-size:34px;
  }

  .psy-appointment-form{
    padding:35px 20px;
  }

  .psy-appointment-form h3{
    font-size:30px;
  }

  .psy-appointment-contact{
    padding:40px 22px;
  }

  .psy-appointment-contact h3{
    font-size:28px;
  }
}




/* ==========================
  REVIEW SECTION 
========================== */

.psy-review-section{
  width:100%;
  padding:80px 15px;
  background:#fff;
  font-family:'Poppins',sans-serif;
  box-shadow:0 0 25px rgba(0,0,0,0.12);
  overflow:hidden;
  margin-bottom:20px;
}

.psy-review-container{
  max-width:1180px;
  margin:auto;
  display:grid;
  grid-template-columns:310px 1fr;
  gap:35px;
  align-items:center;
}

.psy-review-left span{
  display:block;
  color:#0D2055;
  font-size:14px;
  font-weight:600;
  letter-spacing:2px;
  margin-bottom:14px;
}

.psy-review-left h2{
  font-size:46px;
  line-height:1.22;
  color:#111;
  font-weight:600;
  margin:0 0 28px;
}

.rating-text{
  color:#777;
  font-size:16px;
  margin-bottom:18px;
}

.rating-stars{
  display:flex;
  gap:10px;
}

.rating-stars i{
  width:38px;
  height:38px;
  background:#f2ece9;
  color:#0D2055;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:5px;
  font-size:15px;
}

.psyReviewSwiper{
  width:100%;
  position:relative;
  padding:10px 5px 75px;
}

.review-slide-box{
  width:100%;
  min-height:310px;
  background:#fff;
  border:1px solid rgba(13,32,85,0.10);
  border-radius:18px;
  padding:45px 45px 40px;
  box-shadow:0 18px 45px rgba(13,32,85,0.08);
  position:relative;
}

.review-slide-box::before{
  content:"“";
  position:absolute;
  top:18px;
  right:35px;
  font-size:95px;
  line-height:1;
  color:rgba(13,32,85,0.10);
  font-family:serif;
}

.psy-review-content p{
  max-width:100%;
  color:#5f6268;
  font-size:22px;
  line-height:1.8;
  margin:0 0 34px;
}

.psy-review-content h3{
  color:#111;
  font-size:24px;
  font-weight:600;
  margin:0;
}

.review-arrows{
  position:absolute;
  right:15px;
  bottom:28px;
  display:flex;
  gap:12px;
  z-index:5;
}

.review-arrows button{
  width:52px;
  height:52px;
  border:0;
  background:#fff;
  color:#222;
  border-radius:50%;
  box-shadow:0 12px 30px rgba(0,0,0,.10);
  font-size:21px;
  cursor:pointer;
  transition:.3s ease;
}

.review-arrows button:hover{
  background:#0D2055;
  color:#fff;
}

.review-pagination{
  bottom:20px !important;
  text-align:center;
}

.review-pagination .swiper-pagination-bullet{
  width:10px;
  height:10px;
  background:#d8c7bf;
  opacity:1;
}

.review-pagination .swiper-pagination-bullet-active{
  background:#0D2055;
}

@media(max-width:991px){
  .psy-review-container{
    grid-template-columns:1fr;
    gap:35px;
    text-align:center;
  }

  .rating-stars{
    justify-content:center;
  }

  .review-slide-box{
    padding:38px 28px;
    min-height:auto;
  }

  .psy-review-content p{
    font-size:20px;
  }

  .review-arrows{
    position:static;
    justify-content:center;
    margin-top:25px;
  }
}

@media(max-width:576px){
  .psy-review-section{
    padding:60px 15px;
  }

  .psy-review-left h2{
    font-size:34px;
  }

  .psy-review-content p{
    font-size:17px;
    line-height:1.7;
    margin-bottom:24px;
  }

  .psy-review-content h3{
    font-size:21px;
  }

  .review-slide-box{
    padding:32px 22px;
    border-radius:14px;
  }

  .review-slide-box::before{
    font-size:70px;
    right:22px;
  }

  .review-arrows button{
    width:46px;
    height:46px;
  }
}


/* ==================
   FOOTER
================== */
.site-footer{
    width:100%;
    background:var(--dark);
    color:#fff;
    font-family:'Poppins',sans-serif;
    position:relative;
}

.footer-container{
    max-width:1180px;
    margin:auto;
    padding:85px 15px 60px;
    display:grid;
    grid-template-columns:1.2fr 1fr 1.1fr 1.2fr;
    gap:55px;
}

.footer-col h3{
    font-size:30px;
    font-weight:700;
    color:var(--secondary);
    margin-bottom:28px;
    position:relative;
}

.footer-col h3::after{
    content:"";
    width:45px;
    height:2px;
    background:var(--secondary);
    position:absolute;
    left:0;
    bottom:-10px;
}

.footer-col p{
    color:rgba(255,255,255,.75);
    font-size:15px;
    line-height:1.9;
}

.footer-social{
    display:flex;
    gap:12px;
    margin-top:30px;
}

.footer-social a{
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s ease;
}

.footer-social a:hover{
    background:var(--secondary);
    border-color:var(--secondary);
    transform:translateY(-4px);
}

.footer-social i{
    font-size:16px;
}

.footer-col ul{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-col ul li{
    margin-bottom:15px;
    padding-left:0;
}

.footer-col ul li::before{
    display:none;
}

.footer-col ul li a{
    color:rgba(255,255,255,.75);
    text-decoration:none;
    font-size:15px;
    transition:.3s ease;
    display:flex;
    align-items:center;
    gap:10px;
}

.footer-col ul li a:hover{
    color:var(--secondary);
    padding-left:5px;
}

.footer-col ul li a i{
    color:var(--secondary);
    font-size:14px;
    min-width:16px;
}

.footer-contact p{
    display:flex;
    gap:12px;
    align-items:flex-start;
    margin-bottom:18px;
}

.footer-contact i{
    color:var(--secondary);
    font-size:16px;
    margin-top:5px;
    min-width:18px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding:24px 15px;
    text-align:center;
    color:rgba(255,255,255,.65);
    font-size:14px;
}

.footer-bottom a{
    color:var(--secondary);
    text-decoration:none;
    font-weight:600;
}

.footer-bottom a:hover{
    text-decoration:underline;
}

@media(max-width:991px){
    .footer-container{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }
}

@media(max-width:576px){
    .footer-container{
        grid-template-columns:1fr;
        padding:60px 15px 40px;
    }
    .footer-col h3{
        font-size:26px;
    }
    .footer-social{
        margin-top:20px;
    }
}