* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Bebas Neue", sans-serif;
}

.text-dm {
  font-family: "DM Sans", sans-serif;
}

/* Navbar + Header ekoi background image share korbe */

.hero-wrapper {
  background-image: url("/assets/image/scholarship/header1.png");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* about */

.bg-wrapper {
  background-image: url("/assets/image/about/bg-about.webp");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* nalanda */

.bg-wrap {
  background-image: url("/assets/image/nalanda/nalanda.webp");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Button er clip path */

.btn-clip {
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

/* Desktop Layout (Default) */
.service-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .side-img {
    display: none;
  }

  .service-container {
    justify-content: center;
    flex-direction: column;
  }
}

/* The custom green shape for the labels */
.card-label {
  background-color: #9acd32;
  /* Yellow-Green color matching image */
  clip-path: polygon(10% 0%,
      90% 0%,
      100% 100%,
      0% 100%);
  /* Slight taper if desired, or just rounded */
}

/* Swiper Pagination/Navigation overrides */
.custom-nav-btn {
  background-color: #a3d900;
  /* Lime green */
  color: white;
  transition: all 0.3s ease;
}

.custom-nav-btn:hover {
  background-color: #8cb800;
  transform: scale(1.1);
}

/* Custom Scrollbar for Chrome, Safari and Opera */
.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #f53200;
  /* Your specific Orange/Red color */
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #d62c00;
}

/* Custom Scrollbar for Firefox */
.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #f53200 #f1f1f1;
}

/* Pagination Bullet Style for this specific slider */
.study-abroad-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #ddebaa;
  /* Inactive Color */
  opacity: 1;
  transition: all 0.3s ease;
}

/* Active Bullet Style */
.study-abroad-slider .swiper-pagination-bullet-active {
  background-color: #3d4e01;
  /* Active Color */
  width: 14px;
  height: 14px;
}

/* Custom Swiper Navigation Buttons */
.blog-prev,
.blog-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  cursor: pointer;
  background-color: #84A70A;
  color: white;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.blog-prev {
  left: 0;
}

.blog-next {
  right: 0;
}

.blog-prev:hover,
.blog-next:hover {
  background-color: #000;
  scale: 1.1;
}

/* Swiper wrapper padding to prevent shadow clipping */
.blogSwiper {
  padding: 0 10px;
}