:root {
  --primary: #0b3c5d;
  --accent: #c9a24d;
  --text: #1f2933;
  --muted: #6b7280;
  --bg: #eef2f7;
  --card-bg: #ffffff;
  --radius: 16px;
}

/* Base */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #e9f2f8; /* soft clinic blue */
  color: #1f2d3d;
 
  font-size: 30px; /* default is usually 16px */
  line-height: 1.7;

}


/* Hero / Anniversary */
.hero {
  background: linear-gradient(135deg, #0B1D51 0%, #1A2733 100%);
  color: #F5F7FA;
  padding: 60px 20px;
  text-align: center;
  border-radius: 14px;
  margin-bottom: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.65);
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero {
  background: linear-gradient(135deg, #E6F0FA 0%, #C2D9F9 100%);
  color: #1A1A1A;
  padding: 60px 20px;
  text-align: center;
  border-radius: 14px;
  margin-bottom: 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero img.logo {
  max-width: 150px;
  margin-bottom: 25px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
  color: #0D1A2D; /* Dark Navy for contrast */
  text-shadow: none;
}

.hero p {
  font-size: 1.25rem;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
  color: #33475B;
  line-height: 1.6;
  text-shadow: none;
}


.logo {
  max-width: 160px;
  margin-bottom: 14px;
}

.anniversary {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.95;
}

.anniversary strong {
  color: var(--accent);
  font-weight: 600;
}

/* Headings */
h1 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

body > p {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 26px;
}

/* Branch cards */
.branch {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 16px;

  /* Blue borders on left and right */
  border-left: 6px solid #0080FF;
  border-right: 6px solid #0080FF;

  /* Existing box-shadow */
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.08),
    0 4px 10px rgba(0, 0, 0, 0.05);
}


.branch h2 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
}

.branch p {
  margin: 6px 0;
  font-size: 0.95rem;
}

.branch a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.branch a:hover {
  text-decoration: underline;
}

/* Branch imagery */
.branch-img img {
  width: 100%;
  border-radius: var(--radius);
  margin-top: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* Footer */
footer {
  margin-top: 40px;
  padding: 24px 12px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

/* WhatsApp – right floating tab */
.whatsapp-float {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #25d366;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 14px 0 0 14px;
 
  text-decoration: none;
  box-shadow: -8px 12px 30px rgba(0, 0, 0, 0.35);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.5px;

}

.whatsapp-float::after {
  content: "Chat with us";
  font-size: 24px;
}

.whatsapp-float:hover {
  background: #1ebe5d;
}
.visit-site-container {
  text-align: center;
  margin: 30px 0 40px;
}

.visit-site-btn {
  display: inline-block;
  background: linear-gradient(135deg, #0080FF, #00B4FF);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 15px 35px rgba(0,128,255,0.35);
  transition: all 0.3s ease;
}

.visit-site-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 45px rgba(0,128,255,0.45);
}

/* Desktop refinement */
@media (min-width: 768px) {
  body {
    max-width: 860px;
    margin: 0 auto;
  }

  .logo {
    max-width: 180px;
  }
}
