:root{
  --bg:#ffffff;
  --text:#1b1f23;
  --muted:#5b6770;
  --border:#e2e8f0;
  --primary:#005A9C;
  --primary-dark:#004a80;
  --primary-light:#006bb8;
  --accent:#005A9C;
  --card:#ffffff;
  --shadow:0 4px 20px rgba(0,90,156,.08);
  --shadow-lg:0 10px 40px rgba(0,90,156,.12);
  --gradient:linear-gradient(135deg,#005A9C 0%,#006bb8 100%);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
html,body{width:100%;min-height:100vh}
body{
  font-family:'Inter',ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none;transition:all .2s ease}
img{max-width:100%;height:auto;display:block}

.container{width:100%;max-width:1200px;margin:0 auto;padding:0 24px}

/* Hero Slider */
.hero-slider{
  width:100%;
  position:relative;
  background:#fff;
}
.heroSwiper{
  width:100%;
}
.heroSwiper .swiper-slide{
  width:100%;
  background:#fff;
}
.heroSwiper .swiper-slide img{
  width:100%;
  height:auto;
  display:block;
}
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev{
  color:#fff;
  background:rgba(0,0,0,.3);
  width:50px;
  height:50px;
  border-radius:50%;
  transition:all .3s;
}
.heroSwiper .swiper-button-next:after,
.heroSwiper .swiper-button-prev:after{
  font-size:18px;
  font-weight:bold;
}
.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover{
  background:rgba(0,0,0,.5);
}
.heroSwiper .swiper-pagination{
  bottom:20px;
}
.heroSwiper .swiper-pagination-bullet{
  width:12px;
  height:12px;
  background:#005A9C;
  opacity:.5;
  transition:all .3s;
}
.heroSwiper .swiper-pagination-bullet-active{
  opacity:1;
  background:#005A9C;
  width:30px;
  border-radius:6px;
}

/* Animations */
.fade-up{opacity:0;transform:translateY(30px);transition:opacity .6s ease,transform .6s ease}
.fade-up.visible{opacity:1;transform:translateY(0)}
.fade-in{opacity:0;transition:opacity .6s ease}
.fade-in.visible{opacity:1}
.slide-left{opacity:0;transform:translateX(-30px);transition:opacity .6s ease,transform .6s ease}
.slide-left.visible{opacity:1;transform:translateX(0)}
.slide-right{opacity:0;transform:translateX(30px);transition:opacity .6s ease,transform .6s ease}
.slide-right.visible{opacity:1;transform:translateX(0)}
.scale-in{opacity:0;transform:scale(.95);transition:opacity .5s ease,transform .5s ease}
.scale-in.visible{opacity:1;transform:scale(1)}

/* Stagger children */
.stagger-children > *{opacity:0;transform:translateY(20px);transition:opacity .4s ease,transform .4s ease}
.stagger-children.visible > *:nth-child(1){transition-delay:.1s}
.stagger-children.visible > *:nth-child(2){transition-delay:.2s}
.stagger-children.visible > *:nth-child(3){transition-delay:.3s}
.stagger-children.visible > *:nth-child(4){transition-delay:.4s}
.stagger-children.visible > *:nth-child(5){transition-delay:.5s}
.stagger-children.visible > *:nth-child(6){transition-delay:.6s}
.stagger-children.visible > *:nth-child(7){transition-delay:.7s}
.stagger-children.visible > *{opacity:1;transform:translateY(0)}

/* Top bar */
.topbar{
  background:var(--primary);
  color:rgba(255,255,255,.9);
  font-size:14px;
  padding:10px 0;
}
.topbar .row{display:flex;gap:16px;align-items:center;justify-content:space-between;flex-wrap:wrap}
.topbar .contact-info{display:flex;gap:20px;align-items:center;flex-wrap:wrap}
.topbar .contact-info a{color:#fff;display:flex;align-items:center;gap:6px}
.topbar .contact-info a:hover{opacity:.8}
.topbar .contact-info svg{width:16px;height:16px}

/* Navbar */
.navbar{
  position:sticky;top:0;z-index:100;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
  transition:box-shadow .3s ease;
}
.navbar.scrolled{box-shadow:var(--shadow)}
.navbar .row{display:flex;align-items:center;justify-content:space-between;padding:16px 0;gap:20px}
.brand{display:flex;align-items:center;gap:12px}
.brand .logo{
  width:44px;height:44px;border-radius:12px;
  object-fit:contain;
}
.brand .name{font-weight:700;font-size:18px;color:var(--primary)}
.brand .tag{font-size:12px;color:var(--muted);margin-top:2px}

.navlinks{display:flex;gap:8px;align-items:center}
.navlinks a{font-size:15px;color:var(--muted);padding:10px 14px;border-radius:8px;font-weight:500;transition:all .2s}
.navlinks a:hover{background:rgba(30,58,95,.05);color:var(--primary)}

.mobile-toggle{display:none;background:none;border:none;cursor:pointer;padding:8px}
.mobile-toggle svg{width:24px;height:24px;color:var(--primary)}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:12px 20px;border-radius:10px;border:2px solid transparent;
  background:#fff;color:var(--text);font-weight:600;font-size:15px;
  cursor:pointer;transition:all .25s ease;
}
.btn:hover{transform:translateY(-2px);box-shadow:var(--shadow)}
.btn.primary{background:var(--gradient);border-color:var(--primary);color:#fff}
.btn.primary:hover{box-shadow:0 8px 25px rgba(30,58,95,.25)}
.btn.secondary{background:#fff;border-color:var(--border);color:var(--primary)}
.btn.secondary:hover{border-color:var(--primary);background:rgba(30,58,95,.02)}
.btn.outline{background:transparent;border-color:rgba(255,255,255,.3);color:#fff}
.btn.outline:hover{background:rgba(255,255,255,.1);border-color:#fff}
.btn.small{padding:10px 16px;font-size:14px;border-radius:8px}

/* Hero */
.hero{
  background:var(--gradient);
  color:#fff;
  padding:80px 0 100px;
  position:relative;
  overflow:hidden;
  width:100%;
}
.hero::before{
  content:'';position:absolute;top:0;left:0;right:0;bottom:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container{position:relative;z-index:1}
.hero .grid{display:grid;grid-template-columns:1.1fr .9fr;gap:60px;align-items:center}
.hero h1{font-size:48px;line-height:1.15;margin:0 0 16px;font-weight:800}
.hero .subtitle{font-size:20px;opacity:.9;margin:0 0 28px;line-height:1.5}
.hero .cta{display:flex;gap:14px;flex-wrap:wrap}
.hero .stats{display:flex;gap:30px;margin-top:40px;flex-wrap:wrap}
.hero .stat{text-align:center}
.hero .stat-value{font-size:32px;font-weight:700}
.hero .stat-label{font-size:14px;opacity:.8}

.hero-card{
  background:rgba(255,255,255,.1);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.2);
  border-radius:20px;
  padding:28px;
}
.hero-card h3{font-size:20px;margin:0 0 20px}
.hero-card .action{
  display:flex;align-items:center;gap:12px;
  padding:14px 16px;background:rgba(255,255,255,.1);
  border-radius:12px;margin-bottom:12px;
  transition:all .2s;
}
.hero-card .action:hover{background:rgba(255,255,255,.2)}
.hero-card .action svg{width:20px;height:20px;flex-shrink:0}
.hero-card .action span{font-weight:500}

/* Sections */
.section{padding:80px 0;width:100%}
.section.alt{background:#f8fafc}
.section-header{text-align:center;max-width:700px;margin:0 auto 50px}
.section-header h2{font-size:36px;margin:0 0 14px;color:var(--primary)}
.section-header p{color:var(--muted);font-size:18px;margin:0}
.section-header.left{text-align:left;margin:0 0 40px}

/* Cards */
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:28px;
  transition:all .3s ease;
  position:relative;
  overflow:hidden;
}
.card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg);border-color:transparent}
.card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:4px;
  background:var(--gradient);opacity:0;transition:opacity .3s;
}
.card:hover::before{opacity:1}
.card .icon{
  width:56px;height:56px;border-radius:14px;
  background:linear-gradient(135deg,rgba(30,58,95,.08),rgba(30,58,95,.04));
  display:flex;align-items:center;justify-content:center;
  margin-bottom:20px;color:var(--primary);
}
.card .icon svg{width:28px;height:28px}
.card .badge{
  position:absolute;top:20px;right:20px;
  font-size:12px;font-weight:600;color:var(--primary);
  background:rgba(30,58,95,.08);padding:6px 12px;border-radius:20px;
}
.card h3{font-size:20px;margin:0 0 10px;color:var(--primary)}
.card p{color:var(--muted);font-size:15px;margin:0 0 20px;line-height:1.6}
.card .actions{display:flex;gap:10px;flex-wrap:wrap}

/* Feature grid */
.features{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.feature{
  display:flex;gap:20px;padding:24px;
  background:#fff;border:1px solid var(--border);border-radius:16px;
  transition:all .3s;
}
.feature:hover{box-shadow:var(--shadow);border-color:transparent}
.feature .icon{
  width:48px;height:48px;border-radius:12px;flex-shrink:0;
  background:var(--gradient);
  display:flex;align-items:center;justify-content:center;color:#fff;
}
.feature h4{font-size:18px;margin:0 0 6px;color:var(--primary)}
.feature p{color:var(--muted);font-size:14px;margin:0}

/* Split layout */
.split{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.split-content h2{font-size:32px;margin:0 0 16px;color:var(--primary)}
.split-content p{color:var(--muted);font-size:16px;margin:0 0 24px;line-height:1.7}
.split-content ul{list-style:none;margin:0 0 28px}
.split-content li{
  padding:10px 0;padding-left:28px;position:relative;color:var(--muted);
}
.split-content li::before{
  content:'✓';position:absolute;left:0;color:var(--primary);font-weight:700;
}
.split-image{
  border-radius:20px;overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.split-image img{width:100%;height:auto;display:block}

/* Partners */
.partners{display:grid;grid-template-columns:repeat(5,1fr);gap:20px;align-items:center}
.partner{
  background:#fff;border:1px solid var(--border);border-radius:12px;
  padding:20px;
  display:flex;align-items:center;justify-content:center;
  min-height:100px;
  transition:all .3s;
}
.partner:hover{border-color:var(--primary);box-shadow:var(--shadow)}
.partner img{
  max-width:100%;
  max-height:80px;
  object-fit:contain;
}

/* CTA Banner */
.cta-banner{
  background:var(--gradient);
  color:#fff;
  padding:60px 0;
  text-align:center;
  width:100%;
}
.cta-banner h2{font-size:32px;margin:0 0 12px}
.cta-banner p{font-size:18px;opacity:.9;margin:0 0 28px}
.cta-banner .buttons{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}

/* Blog listing */
.posts{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.post-card{
  background:#fff;border:1px solid var(--border);border-radius:16px;
  overflow:hidden;transition:all .3s;
}
.post-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.post-card .thumb{
  height:180px;background:linear-gradient(135deg,var(--primary-light),var(--primary));
  display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.3);
}
.post-card .thumb svg{width:48px;height:48px}
.post-card .thumb img{width:100%;height:100%;object-fit:cover}
.post-card .body{padding:24px}
.post-card .date{font-size:13px;color:var(--muted);margin-bottom:10px}
.post-card h3{font-size:18px;margin:0 0 10px;color:var(--primary);line-height:1.4}
.post-card p{color:var(--muted);font-size:14px;margin:0;line-height:1.6}

/* Footer */
.footer{
  background:var(--primary-dark);
  color:rgba(255,255,255,.9);
  padding:60px 0 0;
  width:100%;
}
.footer a{color:rgba(255,255,255,.8);transition:color .2s}
.footer a:hover{color:#fff}
.footer .grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:40px}
.footer h4{font-size:16px;margin:0 0 20px;color:#fff}
.footer p{font-size:14px;line-height:1.7;color:rgba(255,255,255,.7)}
.footer ul{list-style:none}
.footer li{margin:10px 0}
.footer li a{font-size:14px}
.footer .social{display:flex;gap:12px;margin-top:20px}
.footer .social a{
  width:40px;height:40px;border-radius:10px;
  background:rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:center;
}
.footer .social a:hover{background:rgba(255,255,255,.2)}
.footer .bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding:20px 0;margin-top:40px;
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px;
}
.footer .copy{font-size:13px;color:rgba(255,255,255,.6)}

/* Content pages */
.page-header{
  background:var(--gradient);
  color:#fff;
  padding:60px 0;
  text-align:center;
}
.page-header h1{font-size:40px;margin:0 0 10px}
.page-header p{font-size:18px;opacity:.9;margin:0}

.content{padding:60px 0}
.prose{max-width:800px}
.prose p{color:var(--muted);font-size:16px;line-height:1.8;margin:0 0 20px}
.prose h2{font-size:24px;color:var(--primary);margin:40px 0 16px}
.prose h3{font-size:20px;color:var(--primary);margin:32px 0 12px}
.prose ul,.prose ol{color:var(--muted);margin:0 0 20px;padding-left:24px}
.prose li{margin:8px 0}
.prose a{color:var(--accent);text-decoration:underline}
.prose img{border-radius:12px;margin:24px 0}

/* Listing page */
.listing{padding:60px 0}
.listing h1{font-size:32px;margin:0 0 10px;color:var(--primary)}
.listing .lead{color:var(--muted);margin:0 0 40px}
.pagination{display:flex;gap:10px;margin-top:40px;align-items:center;justify-content:center;flex-wrap:wrap}
.page-numbers{display:flex;gap:6px;align-items:center}
.page-num{
  width:40px;height:40px;
  display:flex;align-items:center;justify-content:center;
  border-radius:8px;font-weight:600;font-size:14px;
  color:var(--muted);background:#fff;border:1px solid var(--border);
  transition:all .2s;
}
.page-num:hover{border-color:var(--primary);color:var(--primary)}
.page-num.active{background:var(--primary);color:#fff;border-color:var(--primary)}

/* Responsive */
@media(max-width:1024px){
  .hero .grid{grid-template-columns:1fr;gap:40px}
  .hero{padding:60px 0 80px}
  .hero h1{font-size:40px}
  .cards{grid-template-columns:repeat(2,1fr)}
  .split{grid-template-columns:1fr;gap:40px}
  .split.reverse{direction:ltr}
  .split-image{order:-1}
  .partners{grid-template-columns:repeat(3,1fr)}
  .footer .grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:768px){
  .hero-slider{height:60vh;min-height:400px}
  .heroSwiper .slide-content h2{font-size:32px}
  .heroSwiper .slide-content p{font-size:16px}
  .heroSwiper .swiper-button-next,
  .heroSwiper .swiper-button-prev{display:none}
  .topbar .row{justify-content:center}
  .navlinks{
    display:none;position:fixed;top:80px;left:0;right:0;
    background:#fff;flex-direction:column;padding:20px;
    border-bottom:1px solid var(--border);box-shadow:var(--shadow);
  }
  .navlinks.open{display:flex}
  .mobile-toggle{display:block}
  .hero h1{font-size:32px}
  .hero .subtitle{font-size:16px}
  .section{padding:60px 0}
  .section-header h2{font-size:28px}
  .cards{grid-template-columns:1fr}
  .features{grid-template-columns:1fr}
  .posts{grid-template-columns:1fr}
  .partners{grid-template-columns:repeat(2,1fr)}
  .footer .grid{grid-template-columns:1fr}
  .footer .bottom{flex-direction:column;text-align:center}
}


/* Doctors */
.doctors-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.doctor-card{
  background:#fff;border:1px solid var(--border);border-radius:16px;
  overflow:hidden;transition:all .3s;text-align:center;
}
.doctor-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:transparent}
.doctor-image{
  background:#f8fafc;padding:16px;
  display:flex;align-items:center;justify-content:center;
}
.doctor-image img{width:100%;height:auto;max-height:280px;object-fit:contain;border-radius:8px}
.doctor-placeholder{color:var(--border)}
.doctor-placeholder.large{
  width:200px;height:200px;border-radius:50%;
  background:#f8fafc;display:flex;align-items:center;justify-content:center;
  margin:0 auto;
}
.doctor-info{padding:20px}
.doctor-info h3{font-size:18px;margin:0 0 6px;color:var(--primary)}
.doctor-info .credentials{font-size:14px;color:var(--muted);margin:0 0 4px}
.doctor-info .specialization{font-size:14px;color:var(--primary);font-weight:500;margin:0 0 4px}
.doctor-info .experience{font-size:13px;color:var(--muted);margin:0}
.doctor-profile{display:flex;gap:30px;margin-bottom:30px;align-items:flex-start}
.doctor-profile-image{flex-shrink:0}
.doctor-profile-image img{max-width:250px;height:auto;border-radius:16px;object-fit:contain}
.doctor-profile-info p{margin:8px 0;color:var(--muted)}

@media(max-width:768px){
  .doctors-grid{grid-template-columns:1fr}
  .doctor-profile{flex-direction:column;align-items:center;text-align:center}
}
