:root {
  --home-bg: #e8f7ff;
  --home-card: #ffffff;
  --home-text: #073d58;
  --home-muted: #4d6f88;
}

.home-summary {
  background: linear-gradient(180deg, var(--home-bg) 0%, #ffffff 100%);
  padding: 70px 0 50px;
  color: var(--home-text);
}

.home-quote {
  position: relative;
  margin: 0 auto 3rem;
  max-width: 900px;
  text-align: center;
}

.home-quote p {
  font-size: clamp(1.25rem, 3.8vw, 2.4rem);
  line-height: 1.45;
  font-weight: 600;
  margin: 0;
  color: #073d58;
  letter-spacing: 0.6px;
  text-align: center;
}

.home-quote::before,
.home-quote::after {
  position: absolute;
  color: rgb(7 90 88 / 39%);
  font-size: 40px;
  line-height: 1;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
}

.home-quote::before {
  content: '\f10d';
  top: -18px;
  left: 0px;
}

.home-quote::after {
  content: '\f10e';
  bottom: -20px;
  right: 0px;
}

.home-counters {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.counter-card {
  background: var(--home-card);
  padding: 1rem 1rem;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(7, 90, 88, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.72);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.counter-icon {
  flex: 0 0 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(7,90,88,0.08), rgba(66,171,225,0.04));
  border-radius: 12px;
  color: var(--primary);
}

/* Font Awesome icon sizing and alignment inside counter */
.counter-icon i {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--primary);
}

@media (max-width: 640px) {
  .counter-icon i {
    font-size: 1.15rem;
  }
}

.counter-content {
  flex: 1 1 auto;
}

.counter {
  display: block;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
  letter-spacing: 1px;
}

.counter-card p {
  margin: 0;
  color: var(--home-muted);
  font-weight: 400;
  line-height: 1.3;
  font-size: 15px;
  letter-spacing: 1px;
}

/* Carousel / Departments box styles */
.home-departments {
  padding: 60px 0 40px;
}

.dept-carousel .dept-box {
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem;
  text-align: center;
  border: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dept-carousel .dept-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 24px rgba(7, 90, 88, 0.12);
}

.dept-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem auto;
  background: linear-gradient(180deg, rgba(7,90,88,0.08), rgba(66,171,225,0.04));
  color: var(--primary);
  font-size: 1.5rem;
}

.dept-icon img{
	width:40px !important
}

.dept-title {
  font-weight: 600;
  color: var(--home-text);
  margin-top: 0px;
}

.dept-title a{
  color: var(--home-text);
  letter-spacing: 1px;
  text-decoration: none;
}

/* CTA section */
.home-cta-section {
  padding: 60px 0 60px;
  position: relative;
  overflow: hidden;
}

.home-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(65 169 224 / 77%), rgba(7, 90, 88, 0.4)), url('../images/banner/1.png') center / cover no-repeat;
  transform: scale(1.02);
}

.home-cta-section .container {
  position: relative;
  z-index: 1;
}

.home-cta-card {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-cta-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-cta-content {
  max-width: 800px;
  text-align: center;
  color: #fff;
}

.home-cta-content h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.85rem;
  letter-spacing: 1px;
}

.home-cta-content p {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 1px;
}

.home-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: #ffffff;
  letter-spacing: 1px;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.home-cta-btn:hover {
  transform: translateY(-2px);
  background: #f1f8ff;
}

/* Top doctors */
.home-doctors {
  padding: 70px 0 70px;
}

.doctor-carousel {
  margin-top: 1.5rem;
}

.home-testimonials {
  padding: 0 0 70px;
  background: linear-gradient(180deg, #ffffff 0%, var(--home-bg) 100%);
}

.testimonial-carousel {
  margin-top: 1.5rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e7f2f8;
  border-radius: 22px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-card-bottom {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar-wrap {
  flex: 0 0 84px;
}

.testimonial-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #d7ecf9;
}

.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.testimonial-info {
  width: 100%;
}

.testimonial-content h4 {
  color: var(--home-text);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  letter-spacing: 1px;
}

.testimonial-designation {
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0 0.55rem;
  letter-spacing: 1px;
}

.testimonial-stars {
  color: #f4b400;
}

.testimonial-message-wrap {
  width: 100%;
}

.testimonial-message {
  color: var(--home-muted);
  line-height: 1.75;
  margin: 0;
  font-size: 0.96rem;
  width: 100%;
  letter-spacing: 1px;
}

.testimonial-carousel .owl-nav {
  display: flex !important;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  position: static !important;
  width: auto !important;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next,
.testimonial-carousel .owl-nav button.owl-prev,
.testimonial-carousel .owl-nav button.owl-next {
  width: 42px;
  height: 42px;
  border-radius: 50% !important;
  background: var(--primary) !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: none !important;
  padding: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 1rem;
  line-height: 1;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover,
.testimonial-carousel .owl-nav button.owl-prev:hover,
.testimonial-carousel .owl-nav button.owl-next:hover {
  background: #2d8bc4 !important;
}

.testimonial-carousel .owl-dots {
  display: none !important;
}

.home-blog-section {
  padding: 80px 0 70px;
}

.blog-carousel {
  margin-top: 1.5rem;
}

.blog-card {
  border: 1px solid #e7f2f8;
  border-radius: 22px;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  display: block;
}

.blog-card-body {
  padding: 1.2rem 1.2rem 1.4rem;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-meta i {
  color: var(--primary);
}

.blog-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
  line-height: 1.45;
  letter-spacing: 1px;
}

.blog-card-heading a {
  color: var(--home-text);
  text-decoration: none;
}

.blog-card p {
  color: var(--home-muted);
  line-height: 1.75;
  margin: 0 0 0.95rem;
  font-size: 0.96rem;
  letter-spacing: 1px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #45b8e2);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
}

.blog-read-more:hover {
  background: linear-gradient(135deg, #2d8bc4, #2fa4d8);
  color: #fff;
}

.blog-carousel .owl-nav {
  display: flex !important;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  position: static !important;
  width: auto !important;
}

.blog-carousel .owl-nav .owl-prev,
.blog-carousel .owl-nav .owl-next,
.blog-carousel .owl-nav button.owl-prev,
.blog-carousel .owl-nav button.owl-next {
  width: 42px;
  height: 42px;
  border-radius: 50% !important;
  background: var(--primary) !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: none !important;
  padding: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 1rem;
  line-height: 1;
}

.blog-carousel .owl-nav .owl-prev:hover,
.blog-carousel .owl-nav .owl-next:hover,
.blog-carousel .owl-nav button.owl-prev:hover,
.blog-carousel .owl-nav button.owl-next:hover {
  background: #2d8bc4 !important;
}

.blog-carousel .owl-dots {
  display: none !important;
}

@media (max-width: 767px) {
  .home-blog-section {
    padding: 60px 0 60px;
  }

  .blog-image {
    height: 190px;
  }

  .blog-card-body {
    padding: 1rem;
  }

  .blog-meta {
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.85rem;
  }

  .blog-card h4 {
    font-size: 1rem;
  }

  .blog-card p {
    font-size: 0.92rem;
  }

  .blog-read-more {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .blog-image {
    height: 170px;
  }

  .blog-carousel .owl-nav {
    margin-top: 1rem;
  }

  .blog-carousel .owl-nav .owl-prev,
  .blog-carousel .owl-nav .owl-next {
    width: 38px;
    height: 38px;
  }
}

.home-partners {
  padding: 60px 0 60px;
  background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.partner-carousel {
  margin-top: 1.5rem;
}

.partner-logo-box {
  min-height: 120px;
  padding: 1rem;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e7f2f8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-logo-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(7, 90, 88, 0.12);
}

.partner-logo-box img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.partner-logo-box:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.04);
}

.partner-carousel .owl-nav {
  display: flex !important;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  position: static !important;
  width: auto !important;
}

.partner-carousel .owl-nav .owl-prev,
.partner-carousel .owl-nav .owl-next,
.partner-carousel .owl-nav button.owl-prev,
.partner-carousel .owl-nav button.owl-next {
  width: 42px;
  height: 42px;
  border-radius: 50% !important;
  background: var(--primary) !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: none !important;
  padding: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 1rem;
  line-height: 1;
}

.partner-carousel .owl-nav .owl-prev:hover,
.partner-carousel .owl-nav .owl-next:hover,
.partner-carousel .owl-nav button.owl-prev:hover,
.partner-carousel .owl-nav button.owl-next:hover {
  background: #2d8bc4 !important;
}

.partner-carousel .owl-dots {
  display: none !important;
}

.doctor-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e6eef4;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.doctor-card img {
  width: 100%;
  display: block;
}

.doctor-info {
  padding: 1.15rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
}

.doctor-name-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.doctor-name-row h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.doctor-name-row a {
  color: var(--home-text);
  text-decoration: none;
}

.verified-icon {
  color: #1d9bf0;
  font-size: 0.95rem;
}

.doctor-designation {
  margin: 0;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
}

.doctor-designation a{
  color: var(--home-text);
  text-decoration: none;
}

.doctor-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  color: var(--home-muted);
  font-size: 0.92rem;
}

.doctor-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  letter-spacing: 1px;
  font-size: 14px;
}

.doctor-btn {
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #45b8e2);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.doctor-actions {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  margin-top: 0.25rem;
}

.doctor-actions .doctor-btn,
.doctor-details-btn {
  flex: 1 1 0;
  margin-top: 0;
  padding: 10px 12px;
  font-size: 0.82rem;
}

.doctor-details-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid var(--primary);
  border-radius: 999px;
  background: transparent;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.doctor-details-btn:hover {
  transform: translateY(-2px);
  background: var(--primary);
  color: #fff;
}

.doctor-actions i {
  flex: 0 0 auto;
  margin-right: 5px;
}

.doctor-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(7, 90, 88, 0.14);
}

/* Carousel controls */
.dept-carousel .owl-nav,
.doctor-carousel .owl-nav,
.testimonial-carousel .owl-nav,
.blog-carousel .owl-nav {
  display: flex !important;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 30px !important;
  position: static !important;
  width: auto !important;
}

.dept-carousel .owl-nav .owl-prev,
.dept-carousel .owl-nav .owl-next,
.doctor-carousel .owl-nav .owl-prev,
.doctor-carousel .owl-nav .owl-next,
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next,
.blog-carousel .owl-nav .owl-prev,
.blog-carousel .owl-nav .owl-next,
.dept-carousel .owl-nav button.owl-prev,
.dept-carousel .owl-nav button.owl-next,
.doctor-carousel .owl-nav button.owl-prev,
.doctor-carousel .owl-nav button.owl-next,
.testimonial-carousel .owl-nav button.owl-prev,
.testimonial-carousel .owl-nav button.owl-next,
.blog-carousel .owl-nav button.owl-prev,
.blog-carousel .owl-nav button.owl-next {
  width: 42px;
  height: 42px;
  border-radius: 50% !important;
  background: var(--primary) !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: none !important;
  padding: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.dept-carousel .owl-nav .owl-prev.disabled,
.dept-carousel .owl-nav .owl-next.disabled,
.doctor-carousel .owl-nav .owl-prev.disabled,
.doctor-carousel .owl-nav .owl-next.disabled {
  opacity: 1 !important;
  cursor: pointer !important;
}

.dept-carousel .owl-dots,
.doctor-carousel .owl-dots,
.testimonial-carousel .owl-dots,
.blog-carousel .owl-dots {
  display: none !important;
}

.home-appointment-section {
  padding: 0 0 70px;
}

.appointment-shell {
  background: linear-gradient(135deg, #f8fcff 0%, #ffffff 100%);
  border: 1px solid #e7f2f8;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 18px 38px rgba(7, 90, 88, 0.08);
}

.appointment-row {
  align-items: stretch;
}

.appointment-left,
.appointment-right {
  margin-bottom: 1.5rem;
}

.appointment-content {
  border-radius: 20px;
  height: 100%;
  padding: 20px;
}

.appointment-content h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  color: var(--home-text);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.appointment-content h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin: 1.2rem 0 0.6rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.appointment-content p {
  color: var(--home-muted);
  line-height: 1.8;
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
  font-size: 16px;
}

.appointment-benefits {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
}

.appointment-benefits li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.7rem;
  color: var(--home-muted);
  line-height: 1.7;
  letter-spacing: 1px;
  font-size: 16px;
}

.appointment-benefits li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: var(--primary);
}

.appointment-form-card {
  background: #fff;
  border: 1px solid #e7f2f8;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 16px 34px rgba(7, 90, 88, 0.08);
}

.appointment-form-card h3 {
  color: var(--home-text);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}

.appointment-form-card .form-label {
  color: var(--home-text);
  font-weight: 500;
  margin-bottom: 0.45rem;
  letter-spacing: 1px;
  font-size: 18px;
}

.appointment-form-card .form-control {
  border-radius: 12px;
  border: 1px solid #dbe8f0;
  padding: 0.8rem 0.95rem;
  letter-spacing: 1px;
}

.appointment-form-card .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(66,171,225,0.18);
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.captcha-box span {
  color: var(--home-text);
  font-weight: 600;
}

.captcha-input {
  max-width: 120px;
}

.captcha-refresh-btn {
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.field-error {
  display: none;
  min-height: 1.05rem;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: #d93025;
  letter-spacing: 1px;
}

.field-error:not(:empty) {
  display: block;
}

.appointment-submit-btn {
  margin-top: 20px;
  border: 0;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #45b8e2);
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
}

.appointment-submit-btn:hover {
  background: linear-gradient(135deg, #2d8bc4, #2fa4d8);
}

@media (max-width: 991px) {
  .appointment-content,
  .appointment-form-card {
    padding: 1.5rem;
  }
}

@media (max-width: 992px) {
  .home-departments {
    padding: 50px 0 30px;
  }

  .dept-carousel .dept-box {
    padding: 1rem 0.9rem;
    min-height: 210px;
  }

  .dept-icon {
    width: 62px;
    height: 62px;
    font-size: 1.3rem;
  }

  .home-cta-section {
    padding: 0 0 0px;
  }

  .home-cta-card {
    min-height: 300px;
    border-radius: 20px;
  }

  .home-cta-overlay {
    padding: 2rem 1.5rem;
  }

  .home-cta-content {
    width: min(100%, 680px);
  }
}

@media (max-width: 960px) {
  .home-counters {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media (max-width: 980px) {
  .home-quote p {
    font-size: clamp(1.3rem, 4.2vw, 2rem);
  }
  .counter {
    font-size: clamp(1.6rem, 3.4vw, 2rem);
  }
  .counter-icon {
    flex: 0 0 48px;
    height: 48px;
  }
}


@media (max-width: 640px) {
  .home-summary {
    padding: 3rem 0 2rem;
  }

  .home-quote {
    max-width: 100%;
  }

  .home-quote::before {
    top: -18px;
    left: -4px;
    font-size: 30px;
  }

  .home-quote::after {
    bottom: -18px;
    right: -4px;
    font-size: 30px;
  }

  .home-counters {
    grid-template-columns: 1fr;
  }

  .counter-card {
    padding: 1rem 0.9rem;
    gap: 0.8rem;
  }

  .counter-icon {
    flex: 0 0 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .counter {
    font-size: 1.6rem;
  }
  
  .home-departments {
    padding: 40px 0 24px;
  }

  .dept-carousel .dept-box {
    padding: 0.9rem 0.75rem;
    min-height: 190px;
    border-radius: 12px;
  }

  .dept-title {
    font-size: 0.95rem;
    margin-top: 12px;
  }

  .home-cta-section {
    padding: 0 0 40px;
  }

  .home-cta-card {
    min-height: 280px;
    border-radius: 18px;
  }

  .home-cta-overlay {
    padding: 1.2rem;
  }

  .home-cta-content h3 {
    font-size: 1.35rem;
  }

  .home-cta-content p {
    font-size: 0.95rem;
  }

  .home-cta-btn {
    padding: 10px 18px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .home-quote p {
    font-size: 20px;
    line-height: 1.4;
  }

  .counter-card {
    padding: 0.9rem 0.75rem;
    border-radius: 12px;
  }

  .counter-icon {
    flex: 0 0 44px;
    height: 44px;
  }

  .counter {
    font-size: 1.4rem;
  }
}
