:root{
    --primary:#003f7d;
    --secondary:#e31e24;
    --white:#ffffff;
    --dark:#1f2937;
    --light:#f8fafc;
}

.main-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(0,0,0,.05);
    transition:.4s;
}

.main-header.sticky{
    background:#fff;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.navbar{
    padding:10px 0;
}

.navbar-brand img{
    width: 220px;
}

.nav-link{
    color:var(--dark);
    font-weight:600;
    margin:0 12px;
    position:relative;
    transition:.3s;
}


.nav-link::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:-5px;
    width:0;
    height:3px;
    background:var(--secondary);
    transform:translateX(-50%);
    transition:.4s;
    border-radius:10px;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

.nav-link:hover{
    color:var(--primary);
}

.appointment-btn{
    position:relative;
    overflow:hidden;
    background:linear-gradient(
    135deg,
    #003f7d,
    #0056a8);
    color:#fff;
    text-decoration:none;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:10px;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,13,105,.25);
}

.appointment-btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.4),
        transparent
    );
    transition:.7s;
}

.appointment-btn:hover::before{
    left:100%;
}

.appointment-btn:hover{
    
    color:#fff;
  
}

.nav-link:hover{
    color:var(--primary);
    text-shadow:0 0 15px rgba(0,63,125,.15);
}


.navbar-toggler{
    border:none;
    box-shadow:none !important;
    font-size:24px;
    color:var(--primary);
    width:45px;
    height:45px;
    border-radius:10px;
    background:#f3f7fb;
}

.navbar-toggler:hover{
    background:#e8f1fb;
}

.hero-section{
    position:relative;
    overflow:hidden;
    background:#f8fbff;
    padding-top:120px;
    padding-bottom: 80px ;
}

.hero-shape{
    position:absolute;
    border-radius:50%;
}

.hero-shape-1{
    width:400px;
    height:400px;
    background:rgba(0,63,125,.05);
    top:-150px;
    left:-100px;
}

.hero-shape-2{
    width:500px;
    height:500px;
    background:rgba(227,30,36,.04);
    right:-200px;
    bottom:-150px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#fff;
    padding:12px 20px;
    border-radius:50px;
    color:#003f7d;
    font-weight:600;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    margin-bottom:25px;
}

.hero-badge i{
    color:#e31e24;
}

.hero-section h1{
    font-size:55px;
    font-weight:700;
    line-height:1.15;
    color:#1f2937;
    margin-bottom:25px;
}

.hero-section h1 span{
    color:#003f7d;
}

.hero-section p{
    font-size:18px;
    line-height:1.8;
    color:#6b7280;
    margin-bottom:35px;
}

.hero-btns{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.call-btn{
    padding:14px 30px;
    border:2px solid #003f7d;
    color:#003f7d;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.call-btn:hover{
    background:#003f7d;
    color:#fff;
}

.hero-stats{
    display:flex;
    gap:20px;
    margin-top:50px;
    flex-wrap:wrap;
}

.stat-box{
    background:#fff;
    padding:20px 30px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.stat-box h3{
    color:#003f7d;
    font-size:32px;
    margin-bottom:5px;
    font-weight:700;
}

.stat-box span{
    font-size:14px;
    color:#666;
}

.doctor-wrapper{
    position:relative;
    text-align:center;
}



.doctor-img{
    max-width:350px;
    position:relative;
    z-index:2;
    border-radius: 20px;
}

.experience-card{
    position:absolute;
    bottom:80px;
    left:0;
    background:#fff;
    padding:20px;
    border-radius:20px;
    display:flex;
    align-items:center;
    gap:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    z-index:3;
}

.experience-card i{
    font-size:35px;
    color:#e31e24;
}

.experience-card h5{
    margin:0;
    color:#003f7d;
    font-weight:700;
}

.experience-card p{
    margin:0;
    font-size:13px;
}

@media(max-width:991px){

.hero-section{
    text-align:center;
    padding:150px 0 80px;
}

.hero-section h1{
    font-size:42px;
}

.hero-btns{
    justify-content:center;
}

.hero-stats{
    justify-content:center;
}

.experience-card{
    position:relative;
    bottom:auto;
    margin-top:20px;
}

.doctor-bg{
    width:300px;
    height:300px;
}

}

/* About Section */
.scr-about-section{
    background: var(--white);
    overflow: hidden;
}

.scr-about-img-wrap{
    border-radius:16px;
    overflow:hidden;
    position:relative;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.scr-about-img-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.scr-about-img-wrap:hover img{
    transform:scale(1.05);
}

.scr-about-content{
    padding-left:10px;
}

.scr-about-tag{
    display:inline-block;
    background:rgba(0,63,125,.08);
    color:var(--primary);
    font-size:.72rem;
    font-weight:700;
    padding:6px 14px;
    border-radius:30px;
    margin-bottom:10px;
    text-transform:uppercase;
    letter-spacing:.8px;
}

.scr-about-title{
    font-size:1.9rem;
    font-weight:700;
    line-height:1.3;
    color:var(--dark);
    margin-bottom:12px;
}

.scr-about-title span{
    color:var(--primary);
}

.scr-about-content p{
    font-size:.88rem;
    line-height:1.7;
    color:#5b6472;
    margin-bottom:10px;
}

.scr-about-feature{
    display:flex;
    align-items:center;
    gap:10px;
    background:var(--light);
    padding:10px 14px;
    border-radius:10px;
    font-size:.82rem;
    font-weight:600;
    color:var(--dark);
    transition:.3s;
}

.scr-about-feature i{
    color:var(--secondary);
    font-size:1rem;
}

.scr-about-feature:hover{
    transform:translateY(-3px);
    background:#eef5ff;
}

@media(max-width:991px){

    .scr-about-content{
        padding-left:0;
    }

    .scr-about-title{
        font-size:1.55rem;
    }
}

@media(max-width:576px){

    .scr-about-section{
        padding-top:35px !important;
        padding-bottom:35px !important;
    }

    .scr-about-title{
        font-size:1.35rem;
    }

    .scr-about-content p{
        font-size:.84rem;
    }
}

.umed-profile-section{
    background:#f8fafc;
}

.umed-profile-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
    position:relative;
}

.umed-profile-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:8px;
    height:100%;
    background:linear-gradient(
        180deg,
        var(--secondary),
        var(--primary)
    );
}

.umed-img-box{
    height:100%;
    min-height:520px;
    position:relative;
}

.umed-img-box img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.umed-content{
    padding:50px;
}

.umed-tag{
    display:inline-block;
    background:rgba(227,30,36,.08);
    color:var(--secondary);
    font-size:.75rem;
    font-weight:700;
    padding:8px 16px;
    border-radius:50px;
    margin-bottom:15px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.umed-content h2{
    font-size:2.2rem;
    font-weight:800;
    color:var(--dark);
    margin-bottom:20px;
}

.umed-content h2 span{
    color:var(--primary);
}

.umed-content p{
    font-size:.95rem;
    line-height:1.9;
    color:#5f6b7a;
    margin-bottom:15px;
}

.umed-highlights{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin-top:25px;
}

.umed-item{
    display:flex;
    align-items:center;
    gap:12px;
    background:#f8fafc;
    padding:14px 18px;
    border-radius:12px;
    border:1px solid #edf2f7;
    transition:.3s;
}

.umed-item:hover{
    transform:translateY(-4px);
    border-color:var(--primary);
}

.umed-item i{
    color:var(--secondary);
    font-size:1.1rem;
}

.umed-item span{
    font-size:.85rem;
    font-weight:600;
    color:var(--dark);
}

@media(max-width:991px){

    .umed-img-box{
        min-height:400px;
    }

    .umed-content{
        padding:30px;
    }

    .umed-content h2{
        font-size:1.8rem;
    }
}

@media(max-width:576px){

    .umed-highlights{
        grid-template-columns:1fr;
    }

    .umed-content{
        padding:25px;
    }

    .umed-content h2{
        font-size:1.5rem;
    }
}

.scr-services-section{
    background:#f8fafc;
}

.scr-services-heading{
    max-width:750px;
    margin:auto;
}

.scr-subtitle{
    display:inline-block;
    color:#e31e24;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:8px;
}

.scr-services-heading h2{
    font-size:42px;
    font-weight:800;
    color:#003f7d;
    margin-bottom:12px;
}

.scr-services-heading p{
    font-size:15px;
    color:#6b7280;
}

.scr-service-card{
    background:#fff;
    border-radius:22px;
    padding:30px;
    height:100%;
    position:relative;
    overflow:hidden;
    border:1px solid #edf2f7;
    transition:.4s;
}

.scr-service-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(
        90deg,
        #003f7d,
        #e31e24
    );
}

.scr-service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.08);
}

.scr-icon{
    width:85px;
    height:85px;
    border-radius:20px;
    background:#eef5ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.scr-icon img{
    width:48px;
    height:48px;
    object-fit:contain;
}

.scr-service-card h4{
    font-size:20px;
    font-weight:700;
    color:#1f2937;
    margin-bottom:12px;
    line-height:1.4;
}

.scr-service-card p{
    font-size:14px;
    color:#64748b;
    line-height:1.8;
    margin-bottom:0;
}

.scr-featured-card{
    text-align:center;
    padding:40px;
}

.scr-featured-card .scr-icon{
    margin:0 auto 20px;
}

@media(max-width:991px){

    .scr-services-heading h2{
        font-size:34px;
    }

}

@media(max-width:576px){

    .scr-services-heading h2{
        font-size:28px;
    }

    .scr-service-card{
        padding:24px;
    }

    .scr-icon{
        width:75px;
        height:75px;
    }

    .scr-icon img{
        width:42px;
        height:42px;
    }
}

.scr-why-section{
    background:#fff;
}

.scr-section-title span{
    color:#e31e24;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.scr-section-title h2{
    color:#003f7d;
    font-size:42px;
    font-weight:800;
    margin-top:8px;
}

.scr-why-card{
    background:#fff;
    border:1px solid #edf2f7;
    border-radius:20px;
    padding:25px;
    height:100%;
    transition:.35s;
    position:relative;
}

.scr-why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.07);
}

.scr-why-number{
    font-size:42px;
    font-weight:800;
    color:rgba(0,63,125,.12);
    line-height:1;
    margin-bottom:15px;
}

.scr-why-card h5{
    color:#1f2937;
    font-weight:700;
    margin-bottom:10px;
}

.scr-why-card p{
    color:#64748b;
    font-size:14px;
    line-height:1.8;
    margin:0;
}

.scr-wellness-box{
    background:linear-gradient(
        135deg,
        #003f7d,
        #0056aa
    );
    color:#fff;
    padding:45px;
    border-radius:30px;
    position:relative;
    overflow:hidden;
}

.scr-wellness-box::before{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-100px;
    right:-100px;
}

.scr-mini-tag{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:8px 15px;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
    margin-bottom:15px;
}

.scr-wellness-box h3{
    font-size:32px;
    font-weight:800;
    line-height:1.3;
    margin-bottom:15px;
}

.scr-wellness-box p{
    color:rgba(255,255,255,.85);
    line-height:1.9;
    font-size:14px;
}

.scr-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    background:#e31e24;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    margin-top:10px;
    transition:.3s;
}

.scr-btn:hover{
    background:#c5161b;
    color:#fff;
}

@media(max-width:991px){

    .scr-section-title h2{
        font-size:34px;
    }

    .scr-wellness-box{
        padding:35px;
    }

    .scr-wellness-box h3{
        font-size:28px;
    }

}

/* CONTACT */
.scr-contact-section{
    background:#f8fafc;
}

.scr-contact-head span{
    color:#e31e24;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
}

.scr-contact-head h2{
    color:#003f7d;
    font-size:42px;
    font-weight:800;
    margin:10px 0;
}

.scr-contact-info{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.scr-contact-card{
    background:#fff;
    padding:20px;
    border-radius:18px;
    display:flex;
    gap:15px;
    align-items:center;
    border:1px solid #edf2f7;
}

.scr-contact-icon{
    width:60px;
    height:60px;
    background:#eef5ff;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.scr-contact-icon img{
    width:30px;
}

.scr-contact-card h6{
    margin:0 0 5px;
    color:#003f7d;
    font-weight:700;
}

.scr-contact-card p{
    margin:0;
    color:#64748b;
    font-size:16px;
}

.scr-contact-form{
    background:#fff;
    padding:35px;
    border-radius:25px;
    border:1px solid #edf2f7;
}

.scr-contact-form input,
.scr-contact-form textarea{
    width:100%;
    border:none;
    background:#f8fafc;
    padding:14px 18px;
    border-radius:12px;
    font-size:14px;
    outline:none;
}

.scr-contact-form textarea{
    resize:none;
}

.scr-submit-btn{
    background:#003f7d;
    color:#fff;
    border:none;
    padding:15px 32px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.scr-submit-btn:hover{
    background:#e31e24;
}

/* FOOTER */
.scr-footer{
    background:#111827;
    color:#fff;
    padding:80px 0 0;
}

.scr-footer h4,
.scr-footer h5{
    margin-bottom:20px;
    font-weight:700;
}

.scr-footer p{
    color:#9ca3af;
    line-height:1.9;
}

.scr-footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.scr-footer ul li{
    margin-bottom:12px;
}

.scr-footer ul li a{
    color:#9ca3af;
    text-decoration:none;
    transition:.3s;
}

.scr-footer ul li a:hover{
    color:#fff;
}

.scr-footer-bottom{
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:25px 0;
}

.scr-footer-bottom p{
    margin:0;
    font-size:14px;
}



/* services page css  */


.services-section {
  width: 100%;
 background: #f8fafc;
  margin: 0 auto;
  padding: 9rem 0 5rem;
}

/* =========================
   HEADING
========================= */

.services-heading {
  text-align: center;
  margin-bottom: 35px;
  position: relative;
  border-bottom: 1px solid gainsboro;
  padding-bottom: 3rem;
  margin-bottom: 4rem;
}

.services-heading span {
 margin-bottom: 1rem;
}

.services-heading h1 {
   color:var(--primary);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.heading-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 12px 0 15px;
}

.heading-line span {
  display: block;
  width: 70px;
  height: 1px;
  background-color: #087174;
}

.heading-line b {
  display: block;
  color: #087174;
  font-size: 22px;
  line-height: 1;
  font-weight: normal;
}

.services-heading p {
  max-width: 660px;
 font-size: 18px;
  line-height: 1.9;
    color: #5f6b7a;
    margin-bottom: 15px;
    margin:auto
}


/* =========================
   SERVICE CARD
========================= */

.service-card {
  border: 1px solid #e3e9e9;
  border-radius: 10px;
  margin-bottom: 30px;
  background: #fff;
  overflow: hidden;
  transition: 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 5px 18px rgba(0, 80, 80, 0.08);
}


/* =========================
   TOP AREA
========================= */

.service-top {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 2rem;
}

.service-icon {
  min-width: 65px;
  height: 65px;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;
  color: #087174;
} 

.consultation {
  background: #e2f5ef;
}

.service-icon img{
    width:4rem;
}
.child {
  background: #f9e5f6;
  color: #a33b9d;
}

.addiction {
  background: #fff4db;
  color: #d49b22;
}

.rehab {
  background: #eee7ff;
  color: #8254db;
}

.hypnosis {
  background: #e0f5f1;
  color: #087174;
}

.assessment {
  background: #fff0e8;
  color: #ff6a25;
}


/* =========================
   TITLE
========================= */

.service-title {
  flex: 1;
}

.service-title h3 {
      color: #1f2937;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}

.service-title p {
     color: #64748b;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}


/* =========================
   BUTTON
========================= */

.read-btn {
  border: none;
  background: #075e63;
  color: white;
  padding: 12px 13px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  white-space: nowrap;
}

.read-btn span {
  margin-left: 3px;
  font-size: 14px;
}


/* =========================
   EXPANDED CONTENT
========================= */

/* .service-content {
    display: none;
    margin: 0 14px 14px;
    padding: 25px;
    border: 1px solid #dcebea;
    border-radius: 8px;
    background: #f8fdfc;
}

.service-card.active .service-content {
  display: block;
} */

.service-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0 14px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f8fdfc;
  transition:
    max-height 0.5s ease,
    opacity 0.35s ease,
    padding 0.4s ease,
    margin 0.4s ease,
    border-color 0.4s ease;
}


/* OPEN */

.service-card.active .service-content {
  max-height: fit-content;
  opacity: 1;
  margin: 0 20px 30px;
  padding: 25px;
  border-color: #dce9e8;
}

.intro {
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}


/* =========================
   THREE COLUMNS
========================= */

.service-columns {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

.service-box {
  border: 1px solid #dce9e8;
  border-radius: 8px;
  padding: 18px;
}

.service-box h4 {
    margin: 0 0 20px;
    color: #087174;
    font-size: 19px;
    font-weight: 700;
}

.service-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-box li {
  position: relative;

  padding-left: 20px;
  margin-bottom: 10px;

  color: #444;
  font-size: 15px;
  line-height: 1.5;
}

.service-box p{
  color: #444;
  margin-top: 1.5rem;
  font-size: 15px;
}
.service-box li::before {
  content: "✓";

  position: absolute;
  left: 0;
  top: 0;

  color: #087174;
  font-weight: bold;
}


/* =========================
   CTA
========================= */

.services-cta {
  margin-top: 30px;

  display: flex;
  align-items: center;
  gap: 20px;

  padding: 25px 35px;

  border-radius: 12px;

  background: #f8f1e5;
}

.calendar-icon {
  width: 65px;
  height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: white;

  font-size: 30px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.services-cta div:nth-child(2) {
  flex: 1;
}

.services-cta h2 {
      margin: 1px 0 7px;
    font-size: 25px;
    font-weight: 700;
}

.services-cta p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

.appointment-btn {
  border: none;

  background: #e31e24;
  color: white;

  padding: 15px 25px;

  border-radius: 6px;

  font-size: 16px;
  cursor: pointer;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .service-columns {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

 

  

  .services-cta {
    flex-wrap: wrap;
  }

  .appointment-btn {
    width: 100%;
  }
}


@media (max-width: 767px) {
.consultation {
    width: fit-content;
    margin-bottom: 2rem;
}
 
  .services-heading h1 {
    font-size: 32px;
  }

  .service-top {
    flex-wrap: wrap;
  }

  .service-title {
    width: 100%
  }

  .read-btn {
    width: 100%;
  }

  .service-content {
    padding: 15px;
  }

  .services-cta {
    padding: 20px;
  }

  .calendar-icon {
    width: 55px;
    height: 55px;
  }
    .service-columns {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}
.service-top {
    display: block;
  }
.service-card .read-btn{
    width: fit-content;
    margin-top: 2rem;
}
.service-icon{
    width: fit-content;
    margin-bottom: 1rem;
}
}

@media (max-width: 499px) {
    .service-top {
        padding: 1rem;
    }
    .services-heading {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}
.service-card.active .service-content {
    padding: 15px;
}
}


.contactsec1{
    padding-block: 10rem 5rem;
}
.contactsec1 .map{
    margin-top: 5rem;
}

.mobile-menu{
    padding-top: 50px;
}