#home_page_logo {
  width: 80px;
}

* {
  font-family: "Bree Serif", serif !important;
  font-weight: 400 !important;
}

#bengali_font {
  /* font-family: "Galada", cursive !important; */
  /* font-weight: 100 !important; */
  font-family: "Tiro Bangla", serif !important;
  line-height: 30px;
  font-weight: 500 !important;
  font-size: 20px !important;
}

#about_bengali_font {
  font-family: "Tiro Bangla", serif !important;
  line-height: 40px;
  font-weight: 500 !important;
  font-size: 30px !important;
  color: blue;
}

#about_bengali_font-1 {
  font-family: "Tiro Bangla", serif !important;
  line-height: 40px;
  font-weight: 600 !important;
  font-size: 20px !important;
}

#bengali_font_Hero_Carousel {
  /* font-family: "Galada", cursive !important; */
  /* font-weight: 100 !important; */
  font-family: "Tiro Bangla", serif !important;
  line-height: 50px;
  font-weight: 700 !important;
  font-size: 36px !important;
}

#bengali_font_About {
  /* font-family: "Galada", cursive !important; */
  /* font-weight: 100 !important; */
  font-family: "Tiro Bangla", serif !important;
  line-height: 30px;
  font-weight: 500 !important;
  font-size: 20px !important;
}

/* #english_font_About{
    font-family: 32px !important;
} */

body {
  margin: 0;
  /* background: #f2f2f2; */
  font-family: "Tiro Bangla", serif !important;
}

/* Section */
.a-section {
  width: 100%;
  background: linear-gradient(90deg, #7b0000, #b30000, #7b0000);
  overflow: hidden;
  padding: 14px 0;
  margin: 22px 0px;
}

/* Marquee Box */
.a-section-marquee-box {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

/* Text */
.marquee-text {
  display: inline-block;
  padding-left: 100%;
  font-size: 26px;
  font-weight: 700;
  color: white;
  /* text-shadow: 
                0 0 5px #ffcc66,
                0 0 10px #ff9900; */
  animation: marqueeRTL 25s linear infinite;
  cursor: pointer;
}

/* Pause on Hover */
.a-section-marquee-box:hover .marquee-text {
  animation-play-state: paused;
}

/* Animation */
@keyframes marqueeRTL {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .marquee-text {
    font-size: 20px;
    animation-duration: 25s;
  }
}

@media (max-width: 480px) {
  .marquee-text {
    font-size: 18px;
    animation-duration: 25s;
  }
}

/* FORCE HERO HEIGHT */
#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item,
.hero-header {
  height: 600px;
}

/* Center content vertically */
.hero-header {
  display: flex;
  align-items: center;
}

/* Container & row full height */
.hero-header .container,
.hero-header .row {
  height: 100%;
}

/* Buttons alignment */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}

.video-btn-wrap {
  display: flex;
  align-items: center;
}

/* Mobile responsive */
@media (max-width: 768px) {
  #heroCarousel,
  #heroCarousel .carousel-inner,
  #heroCarousel .carousel-item,
  .hero-header {
    height: 450px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}

/* Newsletter form */
.newsletter-box {
  max-width: 400px;
  margin: 50px auto;
  font-family: Arial, sans-serif;
}

.input-group {
  display: flex;
}

.input-group input {
  flex: 1;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.input-group button {
  padding: 12px 18px;
  border: none;
  background: #ff7f00 !important;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
}

.input-group button:hover {
  background: #900000;
}

/* Popup message */
#popupMessage {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 12px;
  color: #fff;
  z-index: 9999;
  font-size: 16px;
}

#popupMessage.success {
  background: #28a745;
}

#popupMessage.error {
  background: #dc3545;
}

#popupMessage .icon {
  font-size: 70px;
  margin-bottom: 15px;
}

/* ===== DONATE BOX BUTTON (NAVBAR) ===== */
.donate-box {
  margin-left: 18px;
  padding: 10px 28px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 4px;
  /* BOX look */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;

  background-color: #ff7f00;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;

  /* auto color animation */
  animation: donateMultiColor 6s infinite;
}

/* Icon */
.donate-box i {
  font-size: 16px;
}

/* Hover effect */
.donate-box:hover {
  transform: scale(0.9);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* ===== AUTO MULTI COLOR ANIMATION ===== */
@keyframes donateMultiColor {
  0% {
    background-color: #ff7f00;
    /* Orange */
  }

  20% {
    background-color: #e53935;
    /* Red */
  }

  40% {
    background-color: #f9a825;
    /* Yellow */
  }

  60% {
    background-color: #2e7d32;
    /* Green */
  }

  80% {
    background-color: #1565c0;
    /* Blue */
  }

  100% {
    background-color: #ff7f00;
    /* Back to Orange */
  }
}

/* ===== MOBILE FIX ===== */
@media (max-width: 991px) {
  .donate-box {
    margin: 12px 15px;
    justify-content: center;
  }
}

/* ===== ARROW AUTO MOVE ANIMATION ===== */
.donate-box i {
  animation: arrowMove 1.2s infinite ease-in-out;
}

/* Arrow move keyframes */
@keyframes arrowMove {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(6px);
  }

  100% {
    transform: translateX(0);
  }
}

/* এখানে English + Bengali পুরো content থাকবে */

.about-scroll-box {
  max-height: 830px;
  /* বক্সের উচ্চতা (আপনি চাইলে 480/550 করতে পারেন) */
  overflow-y: auto;
  /* উপর-নিচে scroll */
  padding-right: 15px;
  /* scrollbar text ঢেকে না ফেলে */
}

/* সুন্দর scrollbar (optional) */
.about-scroll-box::-webkit-scrollbar {
  width: 6px;
}

.about-scroll-box::-webkit-scrollbar-thumb {
  background-color: #ff7f00;
  border-radius: 10px;
}

.about-scroll-box::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.modal-content {
  border-radius: 18px;
}

.modal-body p {
  font-size: 16px;
}

/* facebook color */

.facebook-btn {
  background-color: white; /* Facebook blue */
  color: #145dbf;
  border-color: #145dbf;
  /* border: none; */
  transition: 0.3s;
}
.facebook-btn:hover {
  background-color: #145dbf; /* Darker blue on hover */
  color: white;
}

/* call icon no */
