:root {
  --primary: #0f6fda;
  --primary-dark: #0a54a6;
  --accent: #19c37d;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 6px 20px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

.topbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--bg); border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
}

.topbar .container {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 16px; min-height: 72px;
}

.brand { display: flex; align-items: center; text-decoration: none; gap: 12px; }
.brand-logo { width: 44px; height: 44px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 700; font-size: 18px; color: var(--primary-dark); }
.brand-tagline { font-size: 12px; color: var(--muted); }

.nav { justify-self: center; }
.nav-list { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }
.nav-link { position: relative; display: inline-block; padding: 8px 8px; text-decoration: none; color: var(--text); font-weight: 500; }
.nav-link:hover, .nav-link:focus { color: var(--primary-dark); }
.nav-link.active { color: var(--primary); }
.nav-link.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--primary); border-radius: 2px; }

.contact { display: flex; align-items: center; gap: 12px; }
.phone { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border: 1px solid var(--border); border-radius: 999px; text-decoration: none; color: var(--text); background: #f9fafb; }
.phone:hover { border-color: var(--primary); background: #eef6ff; }
.phone-label { font-size: 12px; color: var(--muted); }
.phone-number { font-weight: 700; color: var(--primary-dark); }

.badge { display: inline-flex; align-items: center; padding: 8px 12px; border-radius: 999px; font-weight: 700; font-size: 12px; }
.badge-24x7 { background: var(--accent); color: #083b2a; border: 1px solid #0fb274; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--border);
  border-radius: 8px; background: #fff; align-items: center; justify-content: center; gap: 4px; cursor: pointer;
}
.nav-toggle-line { display: block; width: 20px; height: 2px; background: var(--text); }

@media (max-width: 980px) {
  .topbar .container { grid-template-columns: auto auto auto; }
  .nav-toggle { display: inline-flex; order: 2; }
  .nav { position: absolute; top: 72px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); display: none; }
  .nav.open { display: block; }
  .nav-list { flex-direction: column; padding: 12px 16px; gap: 8px; }
  .contact { justify-self: end; gap: 8px; }
  .brand-tagline { display: none; }
}

@media (max-width: 520px) {
  .contact .phone { display: none; }
}
.phone i {
  font-size: 14px;
  color: var(--primary-dark);
}
.phone-number {
  margin-left: 4px;
}
.phone {
  display: inline-flex;
  align-items: center;      /* ICON + TEXT PERFECT CENTER */
  gap: 8px;                 /* spacing */
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  background: #f9fafb;
}

.phone i {
  font-size: 16px;          /* icon सही size */
  line-height: 1;           /* extra height हटेगी */
  display: flex;            /* centering fix */
  align-items: center; 
  justify-content: center;
}

.phone-number {
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  align-items: center;       /* perfect alignment */
  line-height: 1;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #eef6ff, #ffffff);
  padding: 60px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 500px;
}

.hero-title {
  font-size: 48px; /* was 36px */
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.3;
  margin-bottom: 24px;
}

.hero-subtext {
  font-size: 18px; /* was 16px */
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-video {
  background: #f3f4f6;
  color: var(--primary-dark);
  border: 1px solid var(--border);
}

.btn-video i {
  font-size: 18px;
  margin-right: 8px;
  color: var(--primary);
}

.btn-video:hover {
  background: #e0e7ff;
}

/* Image */
.hero-image {
  flex: 1 1 400px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    order: 2;
  }

  .hero-image {
    order: 1;
  }

  .hero-actions {
    justify-content: center;
  }
}

/* Floating Social Media Bar */
.social-fixed {
  position: fixed;
  top: 50%;
  left: 20px; /* distance from left edge */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2000;
}

.social-fixed a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.social-fixed a:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.social-fixed i {
  font-size: 18px;
}

/* Floating Social Media Bar */
.social-fixed {
  position: fixed;
  top: 50%;
  left: 20px; /* distance from left edge */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2000;
}

/* Base style */
.social-fixed a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.3s ease;
}

.social-fixed a:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

/* Platform-specific colors */
.social-fixed a.facebook { background: #1877F2; }   /* Facebook Blue */
.social-fixed a.twitter { background: #1DA1F2; }    /* Twitter Blue */
.social-fixed a.instagram { 
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
} /* Instagram gradient */
.social-fixed a.linkedin { background: #0A66C2; }   /* LinkedIn Blue */

.social-fixed i {
  font-size: 18px;
}

/* Expertise Section */
.expertise {
  background: #f9fafb;
  padding: 80px 0;
}

.expertise-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.expertise-text {
  flex: 1 1 500px;
}

.expertise-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.expertise-subtext {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 24px;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.expertise-list li {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.expertise-list i {
  color: var(--accent);
  font-size: 18px;
}

.expertise-image {
  flex: 1 1 400px;
  text-align: center;
}

.expertise-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* Responsive */
@media (max-width: 768px) {
  .expertise-content {
    flex-direction: column;
    text-align: center;
  }

  .expertise-text {
    order: 2;
  }

  .expertise-image {
    order: 1;
  }
}

/* Banner Divider */
.divider-banner {
  background: #0f6fda; /* dark medical blue */
  padding: 20px 0;
  color: #fff;
}

.divider-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.divider-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.divider-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.divider-button:hover {
  background: #fff;
  color: #0f6fda;
}

.divider-button span {
  font-size: 18px;
}

/* Patient Caring Section */
.patient-care {
  background: #f3f4f6;
  padding: 80px 0;
}

.patient-care-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Reverse layout: image left, text right */
.patient-care-content.reverse-layout {
  flex-direction: row-reverse;
}

.patient-care-image {
  flex: 1 1 400px;
  text-align: center;
}

.patient-care-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.patient-care-text {
  flex: 1 1 500px;
}

.care-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.care-description {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 24px;
}

.care-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.care-list li {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.care-list i {
  color: var(--accent);
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .patient-care-content {
    flex-direction: column;
    text-align: center;
  }

  .patient-care-content.reverse-layout {
    flex-direction: column;
  }

  .patient-care-text {
    order: 2;
  }

  .patient-care-image {
    order: 1;
  }
}


/* FAQ Section */
.faq-section {
  background: #ffffff;
  padding: 80px 0;
}

.faq-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Reverse layout: image left, text right */
.faq-content.reverse-layout {
  flex-direction: row-reverse;
}

.faq-image-block {
  flex: 1 1 400px;
  text-align: center;
  position: relative;
}

.faq-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.faq-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #f43f5e;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.faq-badge i {
  font-size: 16px;
}

.faq-text {
  flex: 1 1 500px;
}

.faq-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-list li {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 16px;
  display: flex;              /* ensures icon + text align */
  align-items: center;        /* vertically center icon */
  gap: 10px;                  /* spacing between icon and text */
}

.faq-list i {
  color: #0f6fda;             /* deep blue accent */
  font-size: 18px;
  flex-shrink: 0;             /* prevents icon from resizing */
}


/* Responsive */
@media (max-width: 768px) {
  .faq-content {
    flex-direction: column;
    text-align: center;
  }

  .faq-content.reverse-layout {
    flex-direction: column;
  }

  .faq-badge {
    position: static;
    transform: none;
    margin-top: 16px;
  }
}

/* Footer Bar */
.footer-bar {
  background: #0f6fda;
  color: #fff;
  padding: 40px 0;
}

.footer-bar-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* Buttons on Top */
.footer-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-btn {
  background: #fff;
  color: #0f6fda;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.footer-btn:hover {
  background: #e0e7ff;
}

/* Contact Info Below */
.footer-contact {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-item i {
  font-size: 20px;
  color: #fff;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-contact {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-item {
    justify-content: center;
  }
}

/* Services Grid Section */
.services-grid {
  background: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.services-grid-title {
  font-size: 36px;
  font-weight: 800;
  color: #0b1f4d;
  margin-bottom: 40px;
}

.services-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* exactly 3 columns */
  gap: 30px;
  justify-content: center;
}

@media (max-width: 768px) {
  .services-grid-wrapper {
    grid-template-columns: 1fr; /* stack cards vertically */
  }
}

.service-card {
  background: #f9fafb;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f6fda;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 16px;
}

.learn-link {
  font-weight: 600;
  color: #0f6fda;
  text-decoration: none;
}

.learn-link:hover {
  text-decoration: underline;
}

/* Treatment Section */
.treatment-section {
  background: #f9fafb;
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #0b1f4d;
  margin-bottom: 40px;
}

.treatment-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.treatment-list {
  list-style: none;
  padding: 0;
  width: 300px;
}

.treatment-list li {
  font-size: 20px;
  color: #374151;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.treatment-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0f6fda;
  font-size: 20px;
  line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .treatment-grid {
    flex-direction: column;
    align-items: center;
  }

  .treatment-list {
    width: 100%;
    max-width: 400px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .treatment-grid {
    grid-template-columns: 1fr;
  }
}


/* Testimonials Section */
.testimonials-section {
  background: #f5f7fb;
  padding: 80px 0;
}

.testimonials-title {
  font-size: 36px;
  font-weight: 800;
  color: #0b1f4d;
  margin-bottom: 40px;
}

.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.stars {
  color: #facc15; /* yellow star */
  font-size: 18px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

/* Contact Info Section */
.contact-info-section {
  background: #f5f7fb;
  padding: 80px 0;
  text-align: center;
}

.contact-info-title {
  font-size: 36px;
  font-weight: 800;
  color: #0b1f4d;
  margin-bottom: 40px;
}

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

.contact-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.contact-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f6fda;
  margin-bottom: 16px;
}

.contact-card p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 12px;
}

.contact-card a {
  color: #ffffff;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.btn-primary {
  display: inline-block;
  margin-top: 10px;
  background: #0f6fda;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #0c5ec0;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}
/* Contact Icons */
.contact-icon {
  font-size: 32px;
  color: #0f6fda;
  margin-bottom: 12px;
}




/* Only style the last button in the form */
.two-column-form button[type="submit"] {
  display: block;          /* apni line pe aayega */
  margin: 0 auto;          /* center align */
  width: 520px;            /* lamba size (adjust as you like) */
}


/* Appointment + Map Section */
.appointment-map-section {
  background: #ffffff;
  padding: 80px 0;
}

.appointment-map-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.appointment-form {
  flex: 1 1 400px;
}

.appointment-form h2 {
  font-size: 28px;
  font-weight: 800;
  color: #0b1f4d;
  margin-bottom: 20px;
}

.appointment-form .form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.appointment-form label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #0f6fda;
}

.appointment-form input {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
}

.btn-primary {
  background: #e11d48;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #be123c;
}

.appointment-form {
  flex: 1 1 400px;
  background: #f9fafb;        /* light background box */
  padding: 30px;              /* inner spacing */
  border-radius: 12px;        /* rounded corners */
  box-shadow: 0 8px 20px rgba(0,0,0,0.1); /* soft shadow */
}


/* Map Box */
.map-box {
  flex: 1 1 400px;
}

.map-box iframe {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .appointment-map-wrapper {
    flex-direction: column;
  }

  .map-box iframe {
    height: 300px;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .appointment-map-wrapper {
    flex-direction: column;
  }

  .map-placeholder {
    height: 300px;
  }
}



/* About Baluni Section */


/* Add separator */
.breadcrumb li::after {
  content: ">";
  margin: 0 6px;
  color: #9ca3af;
}

.breadcrumb li:last-child::after {
  content: "";
}


.about-baluni-section {
  background: #ffffff;
  padding: 80px 0 120px;  /* top 80px, bottom 120px */
}


.about-baluni-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.about-baluni-image {
  flex: 1 1 300px;
  text-align: center;
}

.about-baluni-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.about-baluni-text {
  flex: 1 1 500px;
}

.doctor-name {
  font-size: 32px;
  font-weight: 800;
  color: #0b1f4d;
  margin-bottom: 8px;
}

.doctor-title {
  font-size: 18px;
  font-weight: 600;
  color: #0f6fda;
  margin-bottom: 4px;
}

.doctor-specialty {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 20px;
}

.doctor-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  color: #374151;
  font-size: 15px;
  line-height: 1.6;
}

.doctor-profile,
.doctor-care {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 20px;
}

.btn-primary {
  background: #0f6fda;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #0c5ec0;
}
.about-baluni-section {
  background: #ffffff;
  padding: 80px 0 120px;  /* top 80px, bottom 120px */
}





/* Responsive */
@media (max-width: 768px) {
  .about-baluni-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-baluni-text {
    padding-top: 30px;
  }

  .doctor-list {
    text-align: left;
    margin: 0 auto;
    max-width: 400px;
  }
}




/* Blog Section */
.blog-section {
  background: #ffffff;
  padding: 80px 0;
}

.blog-title {
  font-size: 36px;
  font-weight: 800;
  color: #0b1f4d;
  margin-bottom: 40px;
}

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

.blog-card {
  background: #f9fafb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  text-align: left;
}

.blog-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f6fda;
  margin-bottom: 10px;
}

.blog-meta {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 12px;
}

.blog-desc {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 16px;
}

.read-more {
  font-weight: 600;
  color: #0f6fda;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* Breadcrumb */
.breadcrumb {
  background: #379bff;
  padding: 32px 0;
  font-size: 14px;
}

.breadcrumb ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  color: #374151;
}

.breadcrumb a {
  text-decoration: none;
  color: #0f6fda;
  font-weight: 600;
}

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

/* Separator */
.breadcrumb li::after {
  content: ">";
  margin: 0 6px;
  color: #9ca3af;
}

.breadcrumb li:last-child::after {
  content: "";
}

/* Active Page */
.breadcrumb .active {
  font-weight: 700;
  color: #111827;
}
