/* ===========================================
   Dr. Markanday Clinic
   Premium Medical Website
   Part 2A
=========================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7fbff;
    color:#333;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

section{
    padding:80px 0;
}

/* ================= NAVBAR ================= */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#ffffff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    z-index:1000;
}

.navbar{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 20px;
}

.logo h2{
    color:#0B6FA4;
    font-size:28px;
    font-weight:700;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:28px;
}

.nav-links a{
    text-decoration:none;
    color:#333;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#0B6FA4;
}

.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
}

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

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    background:
    linear-gradient(rgba(11,111,164,.85),
    rgba(8,59,102,.92)),
    url("images/hero-placeholder.jpg")
    center/cover no-repeat;
}

.overlay{
    position:absolute;
    inset:0;
}

.hero-content{
    position:relative;
    max-width:900px;
    padding:20px;
}

.hero h1{
    font-size:64px;
    margin-bottom:10px;
}

.hero h2{
    font-size:34px;
    font-weight:600;
    margin-bottom:10px;
}

.hero h3{
    font-size:24px;
    margin-bottom:25px;
    color:#FFD700;
}

.hero-description{
    font-size:20px;
    line-height:1.9;
    margin:30px auto;
    max-width:850px;
}

/* ================= BADGE ================= */

.centenary-badge{
    display:inline-block;
    background:linear-gradient(135deg,#FFD700,#FFC107);
    color:#083b66;
    padding:16px 40px;
    border-radius:50px;
    font-weight:700;
    font-size:22px;
    margin-bottom:35px;
    box-shadow:0 8px 25px rgba(0,0,0,.25);
    animation:glow 2s infinite alternate;
}

.centenary-badge span{
    display:block;
    margin-top:8px;
    font-size:18px;
}

@keyframes glow{

from{
box-shadow:0 0 10px rgba(255,215,0,.5);
}

to{
box-shadow:0 0 30px rgba(255,215,0,.9);
}

}

/* ================= TAGLINE ================= */

.tagline{
    color:#FFD700;
    font-size:34px;
    font-style:italic;
    margin-top:20px;
    margin-bottom:25px;
}

/* ================= BUTTONS ================= */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:40px;
}

.btn-primary,
.btn-secondary{

display:inline-block;

padding:15px 35px;

border-radius:40px;

text-decoration:none;

font-weight:600;

transition:.35s;

}

.btn-primary{

background:#FFD700;

color:#083b66;

}

.btn-primary:hover{

transform:translateY(-4px);

}

.btn-secondary{

background:white;

color:#0B6FA4;

}

.btn-secondary:hover{

background:#f2f2f2;

transform:translateY(-4px);

}

/* ================= WELCOME ================= */

.welcome{

background:white;

text-align:center;

}

.welcome h2{

font-size:42px;

color:#0B6FA4;

margin-bottom:25px;

}

.welcome p{

font-size:20px;

max-width:850px;

margin:auto;

}

/* ================= TITLES ================= */

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title span{

color:#0B6FA4;

font-weight:700;

text-transform:uppercase;

letter-spacing:2px;

}

.section-title h2{

font-size:42px;

margin-top:15px;

margin-bottom:15px;

color:#083b66;

}

.section-title p{

font-size:20px;

max-width:800px;

margin:auto;

}
/* ===========================================
   PART 2B
   Doctor • About • Values • Why Choose Us
===========================================*/

/* ===== ABOUT DOCTOR ===== */

.doctor-section{
    background:#ffffff;
}

.doctor-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

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

.doctor-image img{
    width:100%;
    max-width:420px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    transition:.4s;
}

.doctor-image img:hover{
    transform:scale(1.03);
}

.section-subtitle{
    color:#0B6FA4;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.doctor-content h2{
    font-size:42px;
    color:#083b66;
    margin:15px 0;
}

.doctor-content h3{
    color:#0B6FA4;
    font-size:24px;
    margin-bottom:25px;
}

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

/* ===== HIGHLIGHTS ===== */

.doctor-highlights{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:35px;
}

.highlight-card{
    background:#0B6FA4;
    color:white;
    text-align:center;
    padding:25px;
    border-radius:15px;
    transition:.3s;
}

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

.highlight-card h4{
    font-size:36px;
    color:#FFD700;
}

.highlight-card p{
    color:white;
    margin-top:10px;
    font-size:15px;
}

/* ===== ABOUT US ===== */

.about-section{
    background:#f5fbff;
}

.about-content{
    max-width:950px;
    margin:auto;
}

.about-content p{
    margin-bottom:22px;
    font-size:19px;
    text-align:justify;
    color:#555;
}

.about-content strong{
    color:#083b66;
}

/* ===== VALUES ===== */

.values-section{
    background:white;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.value-card{
    background:#ffffff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.value-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.value-card h3{
    color:#0B6FA4;
    margin-bottom:20px;
    font-size:24px;
}

.value-card p{
    color:#666;
    font-size:17px;
}

/* ===== WHY CHOOSE US ===== */

.choose-section{
    background:#eef8ff;
}

.choose-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.choose-card{
    background:white;
    padding:35px;
    border-radius:20px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.choose-card:hover{
    background:#0B6FA4;
    color:white;
    transform:translateY(-10px);
}

.choose-card h3{
    margin-bottom:20px;
    color:#083b66;
    font-size:24px;
    transition:.35s;
}

.choose-card:hover h3{
    color:#FFD700;
}

.choose-card p{
    font-size:17px;
    line-height:1.8;
}

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

@media(max-width:900px){

.doctor-grid{
    grid-template-columns:1fr;
}

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

.doctor-highlights{
    grid-template-columns:1fr;
}

}
/* ===========================================
   PART 2C
   Services • Legacy • Centenary Celebration
===========================================*/

/* ===== SERVICES ===== */

.services-section{
    background:#ffffff;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.service-card{
    background:#ffffff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:all .35s ease;
    border-top:5px solid #0B6FA4;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.service-icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#eaf6fc;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
}

.service-card h3{
    color:#083b66;
    font-size:24px;
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    font-size:17px;
    line-height:1.7;
}

/* ===== LEGACY ===== */

.legacy-section{
    background:#f8fcff;
}

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

.timeline::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    bottom:0;
    width:4px;
    background:#0B6FA4;
    transform:translateX(-50%);
}

.timeline-item{
    position:relative;
    width:50%;
    padding:20px 40px;
}

.timeline-item:nth-child(odd){
    left:0;
    text-align:right;
}

.timeline-item:nth-child(even){
    left:50%;
}

.timeline-year{
    width:90px;
    height:90px;
    background:#0B6FA4;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
    box-shadow:0 8px 20px rgba(0,0,0,.2);
}

.timeline-item:nth-child(odd) .timeline-year{
    margin-left:auto;
}

.timeline-content{
    background:#ffffff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.timeline-content h3{
    color:#083b66;
    margin-bottom:15px;
    font-size:24px;
}

.timeline-content p{
    color:#666;
    font-size:17px;
    line-height:1.8;
}

/* ===== CENTENARY ===== */

.centenary-section{
    background:linear-gradient(135deg,#083b66,#0B6FA4);
    color:#fff;
    text-align:center;
}

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

.centenary-icon{
    font-size:70px;
    margin-bottom:20px;
}

.centenary-section h2{
    font-size:48px;
    margin-bottom:10px;
}

.centenary-section h3{
    color:#FFD700;
    font-size:32px;
    margin-bottom:30px;
}

.centenary-section p{
    font-size:20px;
    line-height:1.9;
    margin-bottom:25px;
}

.centenary-section blockquote{
    margin:45px auto;
    max-width:700px;
    color:#FFD700;
    font-size:30px;
    font-style:italic;
    font-weight:700;
}

.centenary-signature{
    display:inline-block;
    margin-top:20px;
    padding:15px 35px;
    border:2px solid #FFD700;
    border-radius:40px;
    color:#FFD700;
    font-size:20px;
    font-weight:700;
}

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

@media(max-width:900px){

.timeline::before{
    left:25px;
}

.timeline-item{
    width:100%;
    left:0 !important;
    text-align:left !important;
    padding-left:70px;
    padding-right:10px;
    margin-bottom:40px;
}

.timeline-year{
    margin-left:0 !important;
}

.centenary-section h2{
    font-size:36px;
}

.centenary-section h3{
    font-size:26px;
}

.centenary-section blockquote{
    font-size:24px;
}

}
/* ===========================================
   PART 2D
   Reviews • Map • Contact • FAQ • Footer
   Responsive • Animations
===========================================*/

/* ===== GOOGLE REVIEWS ===== */

.reviews-section{
    background:#ffffff;
}

.review-box{
    max-width:850px;
    margin:auto;
    padding:50px;
    background:#f8fcff;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.review-box h3{
    color:#083b66;
    font-size:34px;
    margin-bottom:20px;
}

.review-box p{
    font-size:18px;
    color:#666;
    margin-bottom:30px;
}

.review-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* ===== GOOGLE MAP ===== */

.map-section{
    background:#eef8ff;
}

.map-container{
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.map-container iframe{
    width:100%;
    height:500px;
    border:none;
}

/* ===== CONTACT ===== */

.contact-section{
    background:#ffffff;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.contact-card{
    background:#ffffff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

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

.contact-card h3{
    color:#083b66;
    margin-bottom:20px;
    font-size:24px;
}

.contact-card p{
    color:#555;
    font-size:18px;
    line-height:1.8;
}

.contact-card a{
    color:#0B6FA4;
    font-weight:700;
    text-decoration:none;
}

/* ===== FAQ ===== */

.faq-section{
    background:#f8fcff;
}

.faq{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:white;
    padding:25px 30px;
    margin-bottom:20px;
    border-left:6px solid #0B6FA4;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.faq-item h3{
    color:#083b66;
    margin-bottom:15px;
    font-size:22px;
}

.faq-item p{
    color:#666;
    font-size:17px;
}

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

.footer{
    background:#083b66;
    color:white;
    text-align:center;
    padding:70px 20px;
}

.footer h2{
    font-size:38px;
    margin-bottom:20px;
}

.footer p{
    font-size:18px;
    margin:12px 0;
}

.footer a{
    color:#FFD700;
    text-decoration:none;
    font-weight:600;
}

.footer-badge{
    display:inline-block;
    margin:35px 0 20px;
    padding:15px 35px;
    background:linear-gradient(135deg,#FFD700,#FFC107);
    color:#083b66;
    border-radius:40px;
    font-size:22px;
    font-weight:700;
}

.footer-tagline{
    font-size:26px;
    color:#FFD700;
    font-style:italic;
    margin-top:20px;
}

.copyright{
    margin-top:30px;
    color:#ddd;
    font-size:15px;
}

/* ===== SCROLLBAR ===== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-thumb{
    background:#0B6FA4;
    border-radius:20px;
}

::-webkit-scrollbar-track{
    background:#eef8ff;
}

/* ===== SIMPLE FADE ANIMATION ===== */

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

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

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

@media(max-width:992px){

.hero h1{
    font-size:46px;
}

.hero h2{
    font-size:28px;
}

.hero-description{
    font-size:18px;
}

.tagline{
    font-size:28px;
}

.nav-links{
    display:none;
}

.menu-toggle{
    display:block;
}

.review-box{
    padding:30px;
}

}

@media(max-width:768px){

section{
    padding:60px 0;
}

.hero{
    padding:120px 20px 80px;
}

.hero h1{
    font-size:38px;
}

.hero h2{
    font-size:24px;
}

.hero h3{
    font-size:20px;
}

.hero-description{
    font-size:17px;
}

.section-title h2{
    font-size:32px;
}

.review-box h3{
    font-size:28px;
}

.map-container iframe{
    height:350px;
}

.footer h2{
    font-size:30px;
}

.footer-tagline{
    font-size:22px;
}

}

@media(max-width:480px){

.logo h2{
    font-size:22px;
}

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

.hero h2{
    font-size:20px;
}

.tagline{
    font-size:22px;
}

.centenary-badge{
    font-size:18px;
    padding:12px 24px;
}

.btn-primary,
.btn-secondary{
    width:100%;
}

.review-buttons{
    flex-direction:column;
}

.contact-grid,
.services-grid,
.values-grid,
.choose-grid{
    grid-template-columns:1fr;
}

}
