  .carousel-heading-top {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.7rem;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
  }

  .carousel-center-content {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
  }

  .carousel-center-content h1 {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
  }

  .carousel-center-content hr {
    width: 60%;
    margin: 20px auto 10px auto;
    border: 1px solid white;
    opacity: 0.6;
  }

  .carousel-center-content p {
    font-size: 1.2rem;
    font-weight: 400;
  }

  .contact-section {
  background: url('./images/contactimg.webp') no-repeat center center/cover;
  min-height: 60vh;
  padding: 60px 15px;
}

.contact-card {
  max-width: 600px;
}

.thumb-img {
  width: 70px;
  height: 50px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s ease;
}
.thumb-img:hover,
.thumb-img.active {
  border-color: #000;
}
@media (max-width: 1000px) {
  .carousel-heading-top {
    font-size: 22px;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .carousel-center-content h1 {
    font-size: 20px;
  }

  .carousel-center-content p {
    font-size: 16px;
  }

  .carousel-center-content hr {
    width: 80%;
  }
}

@media (max-width: 600px) {
  .carousel-heading-top {
    font-size: 22px;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
  }
.carousel-center-content {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
  }
  .carousel-center-content h1 {
    font-size: 14px;
  }

  .carousel-center-content p {
    font-size: 12px;
  }

  .carousel-center-content hr {
    width: 80%;
  }
}

/* Smooth scrolling (optional) */
html { scroll-behavior: smooth; }

/* Gradient hero */
.policy-hero {
  background: linear-gradient(135deg, #0d6efd, #6f42c1);
  position: relative;
  overflow: hidden;
}
.policy-hero::after {
  content: "";
  position: absolute;
  right: -15%;
  top: -25%;
  width: 55vmin;
  height: 55vmin;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,255,0.18), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

/* Card look */
.policy-card { border-radius: 1rem; }

/* Highlight box for SMS statement */
.callout {
  border-left: 6px solid transparent;
  background: rgba(13,110,253,0.06);
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
}
.callout-primary { border-left-color: #0d6efd; }