/*About Us Section CSS*/
  /* ==========================
ABOUT SECTION
========================== */

.about-section{
    padding:80px 0;
    background:#f8fbff;
    overflow:hidden;
}

.about-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:60px;
    align-items:center;
}

/* IMAGE SIDE */

.about-image-area{
    position:relative;
}

.doctor-image-wrapper{
    position:relative;
}

.doctor-image-wrapper img{
    width:100%;
    max-height:580px;
    object-fit:cover;
    display:block;
    border-radius:24px;
    box-shadow:0 25px 70px rgba(0,0,0,.12);
}

/* EXPERIENCE CARD */

.experience-card{
    position:absolute;
    bottom:20px;
    right:-20px;

    background:#fff;

    padding:20px 28px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    text-align:center;
}

.experience-card h3{
    font-size:36px;
    font-weight:700;
    color:#0ea5e9;
    margin:0;
    line-height:1;
}

.experience-card span{
    display:block;
    margin-top:5px;
    font-size:14px;
    color:#64748b;
}

/* CONTENT SIDE */


.about-content h2{
    font-size:32px;
    line-height:1.3;
    font-weight:700;
    color:#0f172a;
    margin-bottom:15px;
}

.gold-line{
    width:80px;
    height:4px;
    background:#0ea5e9;
    border-radius:20px;
    margin-bottom:25px;
}

.about-content p{
    font-size:15px;
    line-height:1.8;
    color:#64748b;
    margin-bottom:15px;
}

/* FEATURE BOXES */

.credential-boxes{
    margin-top:30px;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:15px;
}

.credential{
    background:#fff;

    border-radius:18px;

    padding:20px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

    transition:.3s ease;

    min-height:170px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.credential:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.10);
}

.credential i{
    width:55px;
    height:55px;

    background:#e0f2fe;
    color:#0ea5e9;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:20px;

    margin-bottom:12px;
}

.credential h4{
    font-size:17px;
    font-weight:600;
    color:#0f172a;
    margin-bottom:6px;
}

.credential p{
    font-size:13px;
    color:#64748b;
    line-height:1.5;
    margin:0;
}

/* BUTTON */

.about-btn{
    display:inline-block;

    margin-top:30px;

    background:#0ea5e9;
    color:#fff;

    text-decoration:none;

    padding:14px 32px;

    border-radius:50px;

    font-weight:600;

    transition:.3s ease;
}

.about-btn:hover{
    background:#0284c7;
    color:#fff;
    transform:translateY(-3px);
}

/* ==========================
TABLET
========================== */

@media(max-width:1199px){

    .about-grid{
        grid-template-columns:380px 1fr;
        gap:40px;
    }

    .credential-boxes{
        grid-template-columns:repeat(3,1fr);
    }

}

/* ==========================
MOBILE
========================== */

@media(max-width:991px){

    .about-section{
        padding:60px 0;
    }

    .about-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .about-content{
        text-align:center;
    }

    .about-content h2{
        font-size:28px;
    }

    .gold-line{
        margin-left:auto;
        margin-right:auto;
    }

    .credential-boxes{
        grid-template-columns:1fr;
    }

    .doctor-image-wrapper img{
        max-height:none;
    }

    .experience-card{
        right:10px;
        bottom:10px;
    }

}

/* ==========================
SMALL MOBILE
========================== */

@media(max-width:576px){

    .about-content h2{
        font-size:24px;
    }

    .about-content p{
        font-size:14px;
    }

    .experience-card{
        padding:15px 20px;
    }

    .experience-card h3{
        font-size:28px;
    }

}
/*End*/



















.hero-slider{
    background:linear-gradient(135deg,#f0f9ff,#ffffff);
    padding:80px 0;
    overflow:hidden;
}

.heroSwiper{
    width:100%;
    overflow:hidden;
}

.swiper-slide{
    width:100%;
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    min-height:650px;
}

.hero-left{
    width:50%;
}

.hero-right{
    width:50%;
    text-align:center;
}

.hero-right img{
    width:100%;
    max-width:550px;
    height:auto;

    border-radius:30px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);

    transition:.4s ease;
}

.hero-right img:hover{
    transform:translateY(-8px);
}

.sub-title{
    display:inline-block;
    padding:10px 22px;
    background:#e0f2fe;
    color:#0284c7;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-left h1{
    font-size:58px;
    line-height:1.2;
    font-weight:700;
    color:#0f172a;
    margin-bottom:20px;
}

.hero-left p{
    font-size:18px;
    line-height:1.8;
    color:#475569;
    margin-bottom:30px;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:50px;
    background:#0ea5e9;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.hero-btn:hover{
    background:#0284c7;
    color:#fff;
}

/* DOTS */

.swiper-pagination{
    position:relative;
    margin-top:30px;
}

.swiper-pagination-bullet{
    width:12px;
    height:12px;
}

.swiper-pagination-bullet-active{
    background:#0ea5e9;
    width:35px;
    border-radius:30px;
}

@media(max-width:991px){

    .hero-content{
        flex-direction:column;
        text-align:center;
        min-height:auto;
        gap:40px;
    }

    .hero-left,
    .hero-right{
        width:100%;
    }

    .hero-left h1{
        font-size:38px;
    }

    .hero-right img{
        max-width:100%;
    }

}





/*Service Box Css*/

.services-section{
  padding: 50px 20px;
  font-family: "Poppins", sans-serif;
}

.container{
  max-width: 1400px;
  margin: auto;
}

.section-title{
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #1c2b4a;
  margin-bottom: 15px;
}

/* CENTER DESCRIPTION */
.section-subtitle{
  text-align: center;
  padding-bottom: 10px;
}

/* GRID */
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* BOX */
.service-box{
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
}

/* IMAGE FULL WIDTH CENTER */
.service-box img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* TEXT */
.service-box h3{
  font-size: 18px;
  margin: 18px 20px 10px;
  color: #1c2b4a;
}

.service-box p{
  font-size: 14px;
  line-height: 1.7;
  color: #6b7a90;
  padding: 0 20px 25px;
}

/* HOVER BACKGROUND SLIDE */
.service-box::before{
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #2b6cb0, #1a365d);
  transition: all 0.4s ease;
  z-index: 0;
}

.service-box:hover::before{
  top: 0;
}

.service-box:hover{
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

/* TEXT ABOVE HOVER */
.service-box h3,
.service-box p,
.service-box img{
  position: relative;
  z-index: 1;
}

.service-box:hover h3,
.service-box:hover p{
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 992px){
  .services-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .services-grid{
    grid-template-columns: 1fr;
  }

  .section-title{
    font-size: 28px;
  }
}
/*End*/


/*Testmonial Slider*/

.testimonial-section{
    padding:0px 30px;
    overflow:hidden;
}

.testimonial-section .container{
    max-width:1200px;
    margin:auto;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading h2{
    font-size:42px;
    color:#0f172a;
    margin-bottom:15px;
    font-weight:700;
}

.section-heading p{
    max-width:850px;
    margin:auto;
    line-height:1.8;
    color:#64748b;
    font-size:16px;
}

.testimonial-slider{
    overflow:hidden;
    position:relative;
}

.testimonial-track{
    display:flex;
    gap:30px;
    width:max-content;
    animation:scrollReviews 30s linear infinite;
}

.testimonial-slider:hover .testimonial-track{
    animation-play-state:paused;
}

.testimonial-card{
    width:360px;
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 16px 19px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.stars{
    color:#ffc107;
    font-size:22px;
    margin-bottom:15px;
    letter-spacing:3px;
}

.testimonial-card p{
    color:#475569;
    line-height:1.8;
    margin-bottom:25px;
    font-size:15px;
}

.testimonial-card h4{
    color:#0f172a;
    margin-bottom:5px;
    font-size:18px;
}

.testimonial-card span{
    color:#64748b;
    font-size:14px;
}

@keyframes scrollReviews{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

@media(max-width:991px){

    .testimonial-card{
        width:320px;
    }

    .section-heading h2{
        font-size:34px;
    }
}

@media(max-width:768px){

    .testimonial-card{
        width:280px;
        padding:25px;
    }

    .section-heading h2{
        font-size:30px;
    }

    .section-heading p{
        font-size:15px;
    }
}





.testimonial-card::before{
    content:"❝";
    position:absolute;
    top:15px;
    right:20px;
    font-size:60px;
    color:rgba(212,175,55,.15);
    font-family:serif;
}

/*End*/


/*News Section Css*/
  .news-section{
    padding:100px 20px;
    background:#f7f9fc;
}

.news-section .container{
    max-width:1300px;
    margin:auto;
}

/* SECTION HEADING */

.section-heading{
    text-align:center;
    max-width:900px;
    margin:0 auto 60px;
}

.section-heading h2{
    font-size:42px;
    color:#0f172a;
    margin-bottom:15px;
    font-weight:700;
}

.section-heading p{
    font-size:16px;
    line-height:1.9;
    color:#64748b;
}

/* GRID */

.news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */

.news-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.5s;
    position:relative;
}

.news-card::before{
    content:'';
    position:absolute;
    left:0;
    top:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
    180deg,
    rgba(15,23,42,.95),
    rgba(30,64,175,.95));
    transition:.5s;
    z-index:1;
}

.news-card:hover::before{
    top:0;
}

.news-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.news-image{
    position:relative;
    z-index:2;
}

.news-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.news-content{
    padding:25px;
    position:relative;
    z-index:2;
}

.news-content h3{
    font-size:20px;
    line-height:1.5;
    color:#0f172a;
    margin-bottom:15px;
    transition:.4s;
}

.news-content p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:25px;
    transition:.4s;
}

.news-card:hover h3,
.news-card:hover p{
    color:#fff;
}

/* BUTTON */

.read-btn{
    display:inline-block;
    padding:12px 26px;
    background:#d4af37;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.read-btn:hover{
    background:#c59a16;
    transform:translateY(-3px);
}

/* RESPONSIVE */

@media(max-width:1100px){

    .news-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .news-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:34px;
    }

    .news-content h3{
        font-size:18px;
    }

}



/*End*/



