/* =========================================
GLOBAL
========================================= */

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

body{
    font-family:'Inter',sans-serif;
    background:#eef3f1;
    color:#0f172a;
    overflow-x:hidden;
}

.page,
.page-container,
.doctors-hero-container,
.specialization-section,
.doctors-grid-section,
.doctor-spotlight-container,
.doctor-sessions-section,
.doctor-testimonials-section,
.footer-container,
.footer-bottom{

    width:100%;
    max-width:1400px;

    margin:auto;

    padding-left:70px;
    padding-right:70px;
}



/* =========================================
HEADER
========================================= */

.header{
    padding:28px 0;
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo-section{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo-section img{
    width:52px;
}

.logo-section h2{
    font-size:34px;
    color:#005b4f;
    font-weight:800;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:34px;
}

.nav-links a{
    text-decoration:none;
    color:#475467;

    font-size:15px;
    font-weight:600;

    transition:0.3s ease;
}

.nav-links a:hover,
.nav-links .active{
    color:#ff7a00;
}

.whatsapp-btn{
    width:170px;
    height:56px;

    border-radius:999px;

    background:#00a693;
    color:#ffffff;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:14px;
    font-weight:700;

    transition:0.35s ease;
}

.whatsapp-btn:hover{
    background:#ff7a00;
    transform:translateY(-4px);
}



/* =========================================
HERO
========================================= */

.doctors-hero{
    padding:70px 0 100px;
}

.doctors-hero-container{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:60px;
    align-items:center;
}

.doctor-mini-title{
    display:block;

    color:#ff7a00;

    font-size:13px;
    font-weight:700;

    letter-spacing:4px;

    margin-bottom:22px;
}

.doctors-left h1{
    font-size:68px;
    line-height:1.02;

    color:#005b4f;

    font-weight:800;

    margin-bottom:26px;
}

.doctors-left p{
    font-size:18px;
    line-height:1.9;

    color:#667085;

    max-width:620px;

    margin-bottom:34px;
}

.doctor-hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;

    margin-bottom:34px;
}

.doctor-primary-btn,
.doctor-secondary-btn{

    min-width:240px;
    height:66px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    border-radius:999px;

    text-decoration:none;

    font-size:15px;
    font-weight:700;

    transition:0.35s ease;
}

.doctor-primary-btn{
    background:#00a693;
    color:#ffffff;
}

.doctor-primary-btn:hover{
    background:#ff7a00;
    transform:translateY(-4px);
}

.doctor-secondary-btn{
    background:#ffffff;

    color:#005b4f;

    border:1px solid #d6dfdc;
}

.doctor-secondary-btn:hover{
    background:#ff7a00;
    border-color:#ff7a00;

    color:#ffffff;

    transform:translateY(-4px);
}

.doctor-tags{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.doctor-tags span{
    background:#00a693;
    color:#ffffff;

    padding:12px 18px;

    border-radius:999px;

    font-size:13px;
    font-weight:700;

    transition:0.3s ease;
}

.doctor-tags span:hover{
    background:#ff7a00;
    transform:translateY(-3px);
}

.doctor-feature-card{
    position:relative;

    border-radius:36px;

    overflow:hidden;

    box-shadow:
    0 20px 55px rgba(0,0,0,0.06);
}

.doctor-feature-card img{
    width:100%;
    height:620px;

    object-fit:cover;
    display:block;
}

.doctor-floating-badge{
    position:absolute;

    left:30px;
    bottom:30px;

    background:rgba(255,255,255,0.96);

    padding:24px 28px;

    border-radius:24px;
}

.doctor-floating-badge strong{
    display:block;

    font-size:26px;
    color:#005b4f;

    margin-bottom:6px;
}

.doctor-floating-badge p{
    color:#667085;
    font-size:14px;
}



/* =========================================
SPECIALIZATION
========================================= */

.specialization-section{
    padding-bottom:90px;
}

.specialization-header{
    margin-bottom:36px;
}

.specialization-header span{
    color:#ff7a00;

    font-size:13px;
    font-weight:700;

    letter-spacing:4px;
}

.specialization-header h2{
    margin-top:18px;

    font-size:56px;
    line-height:1.05;

    color:#005b4f;
}

.specialization-tabs{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.specialization-tabs button{
    border:none;

    background:#ffffff;

    padding:14px 24px;

    border-radius:999px;

    font-size:14px;
    font-weight:700;

    cursor:pointer;

    transition:0.3s ease;
}

.specialization-tabs button:hover,
.specialization-tabs .active{
    background:#ff7a00;
    color:#ffffff;
}



/* =========================================
DOCTOR GRID
========================================= */

.doctors-grid-section{
    padding-bottom:100px;
}

.doctors-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.doctor-card{
    background:#ffffff;

    border-radius:30px;

    overflow:hidden;

    transition:0.35s ease;

    box-shadow:
    0 14px 35px rgba(0,0,0,0.05);
}

.doctor-card:hover{
    transform:translateY(-8px);
}

.doctor-image img{
    width:100%;
    height:320px;

    object-fit:cover;
    display:block;
}

.doctor-content{
    padding:28px;
}

.doctor-content span{
    color:#ff7a00;

    font-size:12px;
    font-weight:700;

    letter-spacing:3px;
}

.doctor-content h3{
    font-size:30px;
    line-height:1.1;

    margin:18px 0;
}

.doctor-content p{
    color:#667085;

    font-size:15px;
    line-height:1.8;

    margin-bottom:24px;
}

.doctor-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.doctor-meta small{
    color:#667085;
}

.doctor-meta a{
    color:#00a693;

    text-decoration:none;

    font-size:14px;
    font-weight:700;

    transition:0.3s ease;
}

.doctor-meta a:hover{
    color:#ff7a00;
}



/* =========================================
SPOTLIGHT
========================================= */

.doctor-spotlight-section{
    padding-bottom:110px;
}

.doctor-spotlight-container{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:70px;
    align-items:center;
}

.spotlight-image img{
    width:100%;
    height:620px;

    object-fit:cover;

    border-radius:36px;
}

.spotlight-tag{
    color:#ff7a00;

    font-size:13px;
    font-weight:700;

    letter-spacing:4px;
}

.spotlight-content h2{
    font-size:64px;
    line-height:1.02;

    color:#005b4f;

    margin:20px 0 14px;
}

.spotlight-content h4{
    font-size:22px;
    color:#101828;

    margin-bottom:24px;
}

.spotlight-content p{
    color:#667085;

    line-height:1.9;
    font-size:17px;

    margin-bottom:34px;
}

.spotlight-stats{
    display:flex;
    gap:50px;

    margin-bottom:36px;
}

.spotlight-stat h3{
    font-size:42px;
    color:#00a693;

    margin-bottom:10px;
}

.spotlight-stat span{
    color:#667085;
    font-size:14px;
}

.spotlight-btn{
    width:220px;
    height:60px;

    border-radius:999px;

    background:#00a693;
    color:#ffffff;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:15px;
    font-weight:700;

    transition:0.35s ease;
}

.spotlight-btn:hover{
    background:#ff7a00;
    transform:translateY(-4px);
}



/* =========================================
SESSIONS
========================================= */

.doctor-sessions-section{
    padding-bottom:110px;
}

.sessions-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;

    margin-bottom:50px;
}

.sessions-tag{
    color:#ff7a00;

    font-size:13px;
    font-weight:700;

    letter-spacing:4px;
}

.sessions-header h2{
    margin-top:20px;

    font-size:58px;
    line-height:1.05;

    color:#005b4f;

    max-width:720px;
}

.sessions-link{
    color:#00a693;

    text-decoration:none;

    font-size:15px;
    font-weight:700;
}

.sessions-link:hover{
    color:#ff7a00;
}

.sessions-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.session-card{
    background:#ffffff;

    border-radius:30px;

    overflow:hidden;

    transition:0.35s ease;

    box-shadow:
    0 14px 35px rgba(0,0,0,0.05);
}

.session-card:hover{
    transform:translateY(-8px);
}

.session-image{
    position:relative;
}

.session-image img{
    width:100%;
    height:240px;

    object-fit:cover;
}

.play-button{
    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    width:74px;
    height:74px;

    border-radius:50%;

    background:#ffffff;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#ff7a00;

    font-size:20px;
}

.session-content{
    padding:28px;
}

.session-content span{
    color:#ff7a00;

    font-size:12px;
    font-weight:700;

    letter-spacing:3px;
}

.session-content h3{
    font-size:28px;
    line-height:1.2;

    margin:18px 0;
}

.session-content p{
    color:#667085;
}
.register-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-top:18px;

    width:180px;
    height:48px;

    border-radius:999px;

    background:#00a693;
    color:#ffffff;

    text-decoration:none;
    font-size:14px;
    font-weight:700;

    transition:0.3s ease;
}

.register-btn:hover{

    background:#ff7a00;
    transform:translateY(-2px);
}


/* =========================================
TESTIMONIALS
========================================= */

.doctor-testimonials-section{
    padding-bottom:110px;
}

.testimonials-heading{
    position:relative;

    text-align:center;

    margin-bottom:60px;
}

.testimonials-heading span{
    color:#ff7a00;

    font-size:13px;
    font-weight:700;

    letter-spacing:4px;
}

.testimonials-heading h2{
    font-size:58px;
    color:#005b4f;

    margin-top:18px;
}

.testimonial-bg-text{
    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    font-size:120px;
    font-weight:800;

    color:rgba(0,0,0,0.03);

    z-index:-1;
}
.doctor-testimonials-section{
    padding:120px 80px;
}

.testimonial-slider-wrapper{
    width:100%;
    max-width:1400px;
    margin:0 auto;
}

.testimonial-slider{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(380px,1fr));
    gap:40px;
}

.testimonial-slide{
    background:#ffffff;
    border-radius:28px;
    padding:40px;
    box-shadow:0 14px 35px rgba(0,0,0,0.05);
    transition:0.35s ease;
}

.testimonial-slide:hover{
    transform:translateY(-8px);
}

.testimonial-slide h4{
    font-size:24px;
    margin-bottom:8px;
    color:#101828;
}

.testimonial-slide span{
    color:#ff7a00;
    font-size:13px;
    font-weight:700;
}

.testimonial-slide p{
    margin-top:22px;
    color:#667085;
    line-height:1.9;
}

/* OLD SLIDER ELEMENTS DISABLED */

.active-slide{
    width:auto;
}

.side-slide{
    width:auto;
    opacity:1;
}

.testimonial-arrow{
    display:none;
}

.testimonial-dots{
    display:none;
}

/* =========================================
FOOTER
========================================= */

.doctors-footer{
    background:linear-gradient(135deg,#004d43,#00695c);

    border-radius:40px 40px 0 0;

    padding:80px 0 30px;

    color:#ffffff;
}

.footer-container{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:70px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:14px;

    margin-bottom:24px;
}

.footer-logo img{
    width:52px;
}

.footer-logo h2{
    font-size:38px;
}

.footer-brand p{
    color:rgba(255,255,255,0.75);

    line-height:1.9;

    max-width:420px;
}

.footer-socials{
    display:flex;
    gap:14px;

    margin-top:28px;
}

.footer-socials a{
    width:46px;
    height:46px;

    border-radius:50%;

    background:rgba(255,255,255,0.08);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#ffffff;

    text-decoration:none;

    transition:0.3s ease;
}

.footer-socials a:hover{
    background:#ff7a00;
    transform:translateY(-4px);
}

.footer-links h4,
.footer-contact h4{
    margin-bottom:26px;
}

.footer-links{
    display:flex;
    flex-direction:column;
}

.footer-links a{
    margin-bottom:16px;

    color:rgba(255,255,255,0.75);

    text-decoration:none;

    transition:0.3s ease;
}

.footer-links a:hover{
    color:#ff7a00;
}

.footer-contact p{
    color:rgba(255,255,255,0.75);

    margin-bottom:16px;
}

.footer-bottom{
    border-top:
    1px solid rgba(255,255,255,0.10);

    margin-top:60px;
    padding-top:24px;

    text-align:center;
}

.footer-bottom p{
    color:rgba(255,255,255,0.7);
}



/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1100px){

.doctors-hero-container,
.doctor-spotlight-container,
.doctors-grid,
.sessions-grid,
.footer-container{

    grid-template-columns:1fr;
}

.sessions-header{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
}

.testimonial-slider{
    flex-direction:column;
}

.active-slide,
.side-slide{
    width:100%;
}

.doctors-left h1,
.spotlight-content h2,
.sessions-header h2{
    font-size:48px;
}
}

@media(max-width:768px){

.page,
.page-container,
.doctors-hero-container,
.specialization-section,
.doctors-grid-section,
.doctor-spotlight-container,
.doctor-sessions-section,
.doctor-testimonials-section,
.footer-container,
.footer-bottom{

    padding-left:24px;
    padding-right:24px;
}

.doctors-left h1,
.spotlight-content h2{
    font-size:40px;
}

.specialization-header h2,
.sessions-header h2,
.testimonials-heading h2{
    font-size:38px;
}

.doctor-hero-buttons{
    flex-direction:column;
}
}
/* =========================================
EVENT REGISTER BUTTON
========================================= */

.register-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-top:20px;

    padding:14px 28px;

    background:#00a693;

    color:#ffffff !important;

    border-radius:999px;

    text-decoration:none !important;

    font-size:14px;
    font-weight:700;

    transition:0.3s ease;
}

.register-btn:hover{

    background:#ff7a00;

    color:#ffffff !important;

    transform:translateY(-2px);
}



/* Event Meta Styling */

.session-content p{

    margin-top:8px;

    color:#667085;

    font-size:15px;

    line-height:1.6;
}



/* Better Card Spacing */

.session-content{

    display:flex;
    flex-direction:column;

    align-items:flex-start;
}
.register-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:180px;
    height:54px;
    background:#00a693;
    color:#fff !important;
    border-radius:999px;
    text-decoration:none;
    font-weight:700;
    transition:0.35s ease;
}

.register-btn:hover{
    background:#ff7a00;
    color:#fff !important;
    transform:translateY(-4px);
}.session-content a{
    transition:all 0.35s ease;
}

.session-content a:hover{
    background:#ff7a00 !important;
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(255,122,0,0.25);
}
.register-btn{
    display:inline-block;
    margin-top:20px;
    padding:14px 28px;
    background:#00a693;
    color:#ffffff !important;
    text-decoration:none;
    border-radius:999px;
    font-weight:700;
    transition:all .35s ease;
}

.register-btn:hover{
    background:#ff7a00;
    color:#ffffff !important;
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(255,122,0,.25);
}