/* Banner with background or carousel */
.hero-section {
  margin-top: 1px; /* matches Bootstrap navbar height */
  position: relative;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.hero-section img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.hindi-font {
  font-family: 'Noto Sans Devanagari', sans-serif;
}

.service-box {
  transition: 0.3s ease;
  border: 1px solid #dee2e6;
  height: 100%;
}

.service-box:hover {
  background-color: #610a7f;
  color: white;
  transform: translateY(-3px);
}

.service-box div {
  font-weight: 500;
}


@media (min-width: 768px) {
  .hero-section img {
    height: 568px;
  }
}

/* Custom Primary Color */
.bg-primary {
  --bs-bg-opacity: 1;
  background-color: #610a7f !important;
}

.marquee-wrap {
  overflow: hidden;
  position: relative;
  height: 40px;
}

.marquee-text {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: marquee 15s linear infinite;
}

.marquee-wrap:hover .marquee-text {
  animation-play-state: paused;
}

@keyframes marquee {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}


.marquee-box {
  height: 220px;
  overflow: hidden;
  border-radius: 8px;
}

.marquee-box ul li {
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}

.marquee-box ul li a {
  color: #610a7f;
  text-decoration: none;
}

.marquee-box ul li a:hover {
  text-decoration: underline;
}



/* Navbar */
.navbar-brand {
  display: flex;
  align-items: center;

  gap: 10px;
}
.section-title {
  font-weight: bold;
  border-bottom: 2px solid #0d6efd;
  display: inline-block;
  margin-bottom: 20px;
}

.navbar-logo {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.brand-text {
  line-height: 1.2;
}

/* Section Headings */
.section-title {
  font-weight: bold;
  border-bottom: 2px solid #0d6efd;
  display: inline-block;
  margin-bottom: 20px;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari&display=swap');

.hindi-font {
  font-family: 'Noto Sans Devanagari', sans-serif;
}


/* Quick Access Boxes */
.link-box {
  display: block;
  background-color: #610a7f;
  color: white;
  text-align: center;
  padding: 25px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: 0.3s;
  min-height: 100px;
}

.link-box:hover {
  background-color: #4e0868;
  color: white;
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .link-box {
    padding: 15px;
    font-size: 0.9rem;
  }

  .navbar-logo {
    width: 40px;
    height: 40px;
  }

  .hero-section img {
    height: 200px;
  }
}
