:root {
  --red: #8b1a1a;
  --red-dark: #5a0f0f;
  --red-light: #c0392b;
  --green: #1a5c1a;
  --green-light: #2e7d2e;
  --cream: #fdf6ec;
  --cream-dark: #f5e8d0;
  --gold: #c8a84b;
  --text-dark: #1a1a1a;
  --text-mid: #3d3d3d;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(139, 26, 26, 0.1);
  --shadow-lg: 0 8px 40px rgba(139, 26, 26, 0.15);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
/* ✅ পরিবর্তন ১: Hind Siliguri → Noto Sans Bengali */
body {
  font-family: "Noto Sans Bengali", sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--red);
  box-shadow: 0 2px 20px rgba(139, 26, 26, 0.12);
  transition: all 0.3s ease;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 68px;
}
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo {
  height: 48px; /* উচ্চতা নির্ধারণ */
  width: auto; /* প্রস্থ স্বয়ংক্রিয় */
  max-width: 220px; /* অতিরিক্ত বড় ইমেজ হলে সীমিত */
  object-fit: contain;
}

.nav-brand-main {
  font-family: "Noto Serif Bengali", serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.01em;
}
.nav-brand-sub {
  font-size: 11px;
  color: var(--green);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
  background: rgba(139, 26, 26, 0.06);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: 9px 18px !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 12px rgba(139, 26, 26, 0.25);
  transition: all 0.2s !important;
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(139, 26, 26, 0.35) !important;
}
/* শুধু কম্পিউটার স্ক্রিনের জন্য 'ভর্তি হন' বাটনটি ডানে সরিয়ে দেওয়া */
@media (min-width: 993px) {
  .nav-cta {
    margin-left: 15px !important; /* এটি বাটনটিকে বাম দিকের আইটেমগুলো থেকে দূরে সরিয়ে দেবে */
  }
}
.nav-item {
  position: relative;
}
@media (min-width: 993px) {
  .nav-item {
    padding: 10px 0;
  }
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(139, 26, 26, 0.1);
    min-width: 180px;
    padding: 8px;
    list-style: none;
    margin-top: 0;
  }
  .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
  }
  .nav-item:hover .dropdown-menu {
    display: block;
    animation: fadeDown 0.2s ease forwards;
  }
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
.dropdown-menu li a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--text-mid);
  border-radius: 6px;
  white-space: nowrap;
}
.dropdown-menu li a:hover {
  background: rgba(139, 26, 26, 0.06);
  color: var(--red);
}
.dropdown-arrow {
  font-size: 16px;
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s ease;
  color: inherit;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-nav-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.close-menu {
  font-size: 32px;
  color: var(--red);
  cursor: pointer;
  line-height: 1;
}
@media (max-width: 992px) {
  .hamburger {
    display: flex;
    z-index: 1001;
  }
  .mobile-nav-header {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start !important;
    padding: 30px 24px;
    gap: 5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    z-index: 2000;
  }
  .nav-links.open {
    left: 0;
  }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    z-index: 1999;
  }
  .nav-overlay.active {
    display: block;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    padding: 14px 15px;
    width: 100%;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
  }
  .dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: none;
    padding-left: 20px;
    background: rgba(139, 26, 26, 0.03);
    display: none;
    margin-top: 0;
  }
  .nav-item.active .dropdown-menu {
    display: block;
  }
  .nav-item.active .dropdown-arrow {
    transform: rotate(180deg);
  }
  .nav-cta {
    margin-top: 25px;
    text-align: center;
  }
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* HERO */
.hero {
  margin-top: 68px;
  position: relative;
  height: 560px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide.active {
  opacity: 1;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.slide-1 .slide-bg {
  background: linear-gradient(
    135deg,
    var(--red-dark) 0%,
    #2d0000 40%,
    var(--green) 100%
  );
}
.slide-2 .slide-bg {
  background: linear-gradient(135deg, #1a0a0a 0%, var(--red) 50%, #6b0000 100%);
}
.slide-3 .slide-bg {
  background: linear-gradient(
    135deg,
    var(--green) 0%,
    #0a2a0a 40%,
    var(--red-dark) 100%
  );
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.slide-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: repeating-linear-gradient(
    45deg,
    var(--gold) 0,
    var(--gold) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 20px 20px;
}
.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}
.slide-tag {
  display: inline-block;
  background: rgba(200, 168, 75, 0.25);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  animation: slideUp 0.6s ease 0.2s both;
}
.slide-title {
  font-family: "Noto Serif Bengali", serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.6s ease 0.3s both;
}
.slide-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  line-height: 1.6;
  animation: slideUp 0.6s ease 0.4s both;
}
.slide-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  animation: slideUp 0.6s ease 0.5s both;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
}
.slider-prev {
  left: 20px;
}
.slider-next {
  right: 20px;
}
.scroll-indicator {
  position: absolute;
  bottom: 22px;
  right: 30px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.scroll-indicator span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}
.scroll-line {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollDown 1.5s ease infinite;
}
@keyframes scrollDown {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

/* STATS */
.stats-bar {
  background: var(--red);
  padding: 0;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 20px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s;
}
.stat-item:last-child {
  border-right: none;
}
.stat-item:hover {
  background: rgba(255, 255, 255, 0.06);
}
.stat-num {
  font-family: "Noto Serif Bengali", serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

/* ✅ পরিবর্তন ২: একীভূত SECTION HEADER SYSTEM */
.section-header {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-eyebrow {
  font-family: "Noto Serif Bengali", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--red);
  --eb-line-color: var(--red);
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--eb-line-color, var(--red));
  border-radius: 1px;
  flex-shrink: 0;
}
.section-title {
  font-family: "Noto Serif Bengali", serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  text-align: center;
}
.section-desc {
  font-family: "Noto Sans Bengali", sans-serif;
  font-size: 16px;
  color: var(--text-light);
  margin-top: 10px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.7;
}

/* BASE BUTTONS (Slider) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 10px;
  font-family: "Noto Sans Bengali", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: all 0.28s;
  box-shadow: 0 4px 20px rgba(139, 26, 26, 0.35);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139, 26, 26, 0.45);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border-radius: 10px;
  font-family: "Noto Sans Bengali", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.28s;
  white-space: nowrap;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--red-dark);
  padding: 14px 34px;
  border-radius: 10px;
  font-family: "Noto Sans Bengali", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.28s;
  box-shadow: 0 4px 20px rgba(200, 168, 75, 0.4);
  white-space: nowrap;
}
.btn-gold:hover {
  background: #b8952e;
  border-color: #b8952e;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 168, 75, 0.5);
}

/* ✅ পরিবর্তন ৩: একীভূত SECTION FOOTER BUTTON */
.section-footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 15px 38px;
  border-radius: 12px;
  font-family: "Noto Sans Bengali", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--red);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 22px rgba(139, 26, 26, 0.25);
  white-space: nowrap;
}
.section-footer-btn:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(139, 26, 26, 0.38);
  color: var(--white);
}
.section-footer-btn.on-dark {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}
.section-footer-btn.on-dark:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  box-shadow: 0 12px 32px rgba(139, 26, 26, 0.5);
}
.section-footer-wrap {
  text-align: center;
  margin-top: 36px;
}

/* ABOUT */
.about-section {
  padding: 80px 0;
  background: #f8f9fa;
  font-family: "Noto Sans Bengali", sans-serif;
}
.about-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.about-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}
.banner-wrapper {
  /* কেন্দ্রের অংশ একদম সাদা (#ffffff) এবং বাইরের দিকে হালকা ক্রিম/অফ-হোয়াইট (#fdfaf1) */
  background: radial-gradient(circle, #ffffff 30%, #fdfaf1 100%);
  
  /* লোগোর বর্ডারের সাথে মিল রেখে সামান্য ব্রাউন বা গাঢ় ক্রিম বর্ডার */
  border: 1px solid rgba(139, 69, 19, 0.1); 
  
  border-radius: 20px;
  padding: 50px 45px;
  text-align: center;
  position: relative;
  
  /* সফট শ্যাডো যাতে ক্রিম কালারটি ফুটে ওঠে */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

/* লোগো ইমেজটিকে আরও প্রমিনেন্ট করার জন্য */
.banner-wrapper img {
  max-width: 260px;
  height: auto;
  /* লোগোর চারপাশে হালকা গ্লো ইফেক্ট */
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.08));
}
.estd-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #8b1a1a;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.content-heading {
  font-family: "Noto Serif Bengali", serif;
  font-size: 26px;
  color: #2c3e50;
  margin-bottom: 18px;
  font-weight: 700;
}
.desc-text {
  font-family: "Noto Sans Bengali", sans-serif;
  color: #555;
  line-height: 1.85;
  margin-bottom: 30px;
  font-size: 15px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feat-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b1a1a;
  font-size: 18px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}
.feat-txt strong {
  font-family: "Noto Serif Bengali", serif;
  display: block;
  font-size: 15px;
  color: #2c3e50;
  margin-bottom: 5px;
}
.feat-txt p {
  font-family: "Noto Sans Bengali", sans-serif;
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  margin: 0;
}
.journey-section {
  margin-top: 60px;
}
.journey-title {
  font-family: "Noto Serif Bengali", serif;
  text-align: center;
  font-size: 26px;
  color: #2c3e50;
  margin-bottom: 35px;
  font-weight: 700;
}
.journey-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #eee;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.journey-item {
  position: relative;
  padding-left: 25px;
  border-left: 2px solid #8b1a1a;
}
.journey-item .dot {
  position: absolute;
  left: -7px;
  top: 0;
  width: 12px;
  height: 12px;
  background: #8b1a1a;
  border: 2px solid #fff;
  border-radius: 50%;
}
.journey-item strong {
  font-family: "Noto Serif Bengali", serif;
  display: block;
  margin-bottom: 8px;
  color: #2c3e50;
  font-size: 16px;
}
.journey-item p {
  font-family: "Noto Sans Bengali", sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}
.about-footer {
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 992px) {
  .about-main-grid,
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .banner-wrapper {
    padding: 30px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
}

/* ── CSS STYLES ── */
.team-fan-section {
  --accent: #a51c24;
  --primary: #1e3a8a;
  position: relative;
  padding: 80px 0;
  background:
    radial-gradient(
      ellipse at 50% 0%,
      rgba(30, 58, 138, 0.08) 0%,
      transparent 70%
    ),
    #f8f9fc;
  overflow: hidden;
  text-align: center;
}

.team-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(30, 58, 138, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 138, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Carousel Mechanics */
.carousel-container {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 500px;
  perspective: 1500px;
  perspective-origin: 50% 45%;
  overflow: visible;
}

.c-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  transition:
    transform 0.7s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.7s ease;
  will-change: transform, opacity;
}

.card-inner-box {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.8);
  height: 100%;
}

.card-img-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #e2e8f0;
}
.card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.8s ease;
  filter: grayscale(100%);
}
.c-card.is-center img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* নাম এবং পদবীর বক্স ফিক্স */
.card-info-box {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 12px 8px;
  border-radius: 15px;
  background: linear-gradient(
    160deg,
    rgba(10, 18, 45, 0.6),
    rgba(5, 10, 30, 0.95)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  z-index: 5;
}

.info-name {
  font-family: "Noto Serif Bengali", serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}
.info-role {
  font-size: 0.75rem;
  color: #ffc8cc;
  margin-top: 3px;
  font-weight: 600;
}

/* Navigation Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--primary);
  font-size: 28px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 100;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-btn:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}
/* বাটনগুলোকে স্ক্রিনের সাইড থেকে সরিয়ে কার্ডের কাছাকাছি আনা হয়েছে */
.prev-btn {
  left: 18%; /* আপনার স্ক্রিন অনুযায়ী এটি ১৫% থেকে ২০% এর মধ্যে রাখতে পারেন */
}
.next-btn {
  right: 18%;
}
.dots-container {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 30px;
}
.team-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: 0.4s;
}
.team-dot.active {
  background: var(--accent);
  width: 25px;
  border-radius: 5px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .carousel-container {
    height: 420px;
  }
  .nav-btn {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
  .info-name {
    font-size: 0.95rem;
  }
  .card-info-box {
    padding: 8px 5px;
    bottom: 8px;
  }
}

/* মোবাইল ডিভাইসের জন্য বাটনগুলো আবার সাইডে চলে যাবে */
@media (max-width: 768px) {
  .prev-btn {
    left: 5%;
  }
  .next-btn {
    right: 5%;
  }
}

/* DIVISIONS */
.divisions-section {
  background: var(--white);
  padding: 80px 0;
  width: 100%;
}
.div-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.div-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.div-card {
  background: var(--white);
  border-radius: 20px;
  padding: 45px 25px;
  text-align: center;
  border: 1px solid rgba(139, 26, 26, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.div-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}
.div-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(139, 26, 26, 0.15);
}
.div-card:hover::before {
  opacity: 1;
}
.div-card:hover .div-name,
.div-card:hover .div-desc {
  color: #ffffff !important;
}
.div-icon-box {
  width: 75px;
  height: 75px;
  background: rgba(139, 26, 26, 0.06);
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
  border: 1.5px dashed var(--red);
}
.div-icon-box i {
  font-size: 30px;
  color: var(--red);
  transition: all 0.5s ease;
}
.div-card:hover .div-icon-box {
  background: rgba(255, 255, 255, 0.2);
  transform: rotateY(180deg);
  border: 1.5px solid white;
}
.div-card:hover .div-icon-box i {
  color: white;
  transform: rotateY(-180deg);
}
.div-name {
  font-family: "Noto Serif Bengali", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.div-desc {
  font-family: "Noto Sans Bengali", sans-serif;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}
@media (max-width: 992px) {
  .div-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 650px) {
  .divisions-section {
    padding: 50px 0;
  }
  .div-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .div-card {
    padding: 35px 20px;
  }
  .div-icon-box {
    width: 65px;
    height: 65px;
  }
  .div-icon-box i {
    font-size: 26px;
  }
}

/* NOTICE */
.notice-section {
  background: var(--white);
  padding: 70px 0;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.notice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.notice-card {
  border: 1px solid rgba(139, 26, 26, 0.1);
  border-radius: 12px;
  padding: 22px 24px;
  background: var(--cream);
  border-left: 4px solid var(--red);
  transition: all 0.25s;
}
.notice-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}
.notice-date {
  font-size: 12px;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 8px;
}
.notice-title {
  font-family: "Noto Serif Bengali", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 8px;
}
.notice-text {
  font-family: "Noto Sans Bengali", sans-serif;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}
.notice-link {
  font-family: "Noto Sans Bengali", sans-serif;
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.notice-link:hover {
  text-decoration: underline;
}

/* VIDEOS */
.videos-section {
  background: linear-gradient(135deg, #1a5c1a 0%, #2a1f1f 40%, #8b1a1a 100%);
  padding: 80px 0;
  color: #fff;
  font-family: "Noto Sans Bengali", sans-serif;
  position: relative;
  overflow: hidden;
}
.videos-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    transparent,
    rgba(0, 0, 0, 0.4)
  );
  pointer-events: none;
}
.video-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.video-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 25px;
  align-items: stretch;
  margin-bottom: 25px;
}
.video-card {
  background: rgba(42, 31, 31, 0.8);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.4s ease;
  padding: 12px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0 !important;
}
.video-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  background: rgba(61, 43, 43, 0.9);
}
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.video-info {
  padding: 15px 5px 5px 5px;
}
.info-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.video-label {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}
.video-date {
  color: #ccc;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.video-title {
  font-family: "Noto Sans Bengali", sans-serif;
  font-size: 14px;
  color: var(--white);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
@media (max-width: 650px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 30px 0;
  }
}

/* GALLERY */
.gallery-section {
  background: var(--white);
  padding: 70px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 15px;
}
.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item:nth-child(4) {
  grid-column: span 2;
}
.gallery-thumb {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item:hover .gallery-thumb {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(139, 26, 26, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(139, 26, 26, 0.7);
}
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 12px;
  }
  .gallery-item:first-child,
  .gallery-item:nth-child(4) {
    grid-column: span 2;
    height: 280px;
  }
  .gallery-item {
    height: 200px;
  }
}
@media (max-width: 576px) {
  .gallery-section {
    padding: 40px 0;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 5px;
  }
  .gallery-item:first-child,
  .gallery-item:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
    height: 180px;
  }
  .gallery-item {
    height: 180px;
    border-radius: 12px;
  }
}

/* CTA */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--red) 0%,
    var(--red-dark) 60%,
    var(--green) 100%
  );
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: repeating-linear-gradient(
    45deg,
    var(--gold) 0,
    var(--gold) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 20px 20px;
}
.cta-section .section-inner {
  position: relative;
  z-index: 1;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* CONTACT STRIP */
.contact-strip {
  background: var(--white);
  padding: 40px 24px;
  border-top: 1px solid rgba(139, 26, 26, 0.08);
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(139, 26, 26, 0.08);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--red);
}
.contact-item-label {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-item-val {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.5;
}

/*  Back to Top Button  */
#backToTop {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  outline: none;
  background-color: #bd0000; /* স্বরূপ লোগোর লাল */
  color: white;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);

  /* অ্যানিমেশন লজিক */
  opacity: 0; /* শুরুতে অদৃশ্য থাকবে */
  visibility: hidden; /* ক্লিক করা যাবে না */
  transition: all 0.5s ease-in-out; /* আসার ও যাওয়ার সময় স্মুথ হবে */

  display: flex;
  align-items: center;
  justify-content: center;
}

/* বাটন যখন স্ক্রিনে আসবে */
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1); /* জুম হয়ে আসবে */
}

/* যখন অদৃশ্য থাকবে তখন একটু ছোট থাকবে */
#backToTop:not(.show) {
  transform: scale(0.7);
}

#backToTop::before {
  content: "▲";
  font-size: 18px;
  font-weight: bold;
}

#backToTop:hover {
  background-color: #0b4517; /* স্বরূপ লোগোর গাঢ় সবুজ */
  transform: translateY(-8px) scale(1.1); /* উপরে উঠবে এবং সামান্য বড় হবে */
  box-shadow: 0 6px 20px rgba(11, 69, 23, 0.4);
}

/* মোবাইল রেসপন্সিভ */
@media screen and (max-width: 600px) {
  #backToTop {
    width: 45px;
    height: 45px;
    bottom: 20px;
    left: 20px;
  }
}

/*Floating Contact Widget */
:root {
  --swarup-green: #0b4517;
  --swarup-red: #bd0000;
  --wa-bright-green: #25d366;
}

.contact-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Call Button Style */
.call-btn {
  width: 55px;
  height: 55px;
  background-color: var(--swarup-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.call-btn:hover {
  background-color: var(--swarup-red);
  transform: scale(1.1);
}
/* WhatsApp Main Button - Updated with Hover Animation */
.wa-btn {
  width: 55px;
  height: 55px;
  background-color: var(--wa-bright-green);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: 0.3s; /* স্মুথ ট্রানজিশন */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* WhatsApp Main Button - Updated with Hover Animation */
.wa-btn {
  width: 55px;
  height: 55px;
  background-color: var(--wa-bright-green);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: 0.3s; /* স্মুথ ট্রানজিশন */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* কল বাটনের মতো সেম অ্যানিমেশন ও কালার পরিবর্তন */
.wa-btn:hover {
  transform: scale(1.1); /* সামান্য বড় হবে */
}

/* WhatsApp Popup */
.wa-popup {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: none; /* শুরুতে বন্ধ থাকবে */
  flex-direction: column;
  animation: slideUp 0.4s ease;
}

.wa-header {
  background-color: var(--swarup-green);
  padding: 20px;
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
}

.wa-icon-large {
  font-size: 35px;
}
.wa-header-text strong {
  display: block;
  font-size: 18px;
}

.wa-body {
  padding: 15px;
  background: #f9f9f9;
}
.wa-note {
  background: #e7f3e9;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 15px;
}

.wa-option {
  display: flex;
  align-items: center;
  padding: 12px;
  background: white;
  border: 1px solid #eee;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  margin-bottom: 10px;
  transition: 0.3s;
}

.wa-option:hover {
  border-color: var(--swarup-green);
  transform: translateX(-5px);
}
.opt-icon {
  color: var(--swarup-green);
  margin-right: 12px;
  font-size: 20px;
}
.opt-text strong {
  display: block;
  font-size: 14px;
}
.opt-text span {
  font-size: 12px;
  color: #777;
}
.arrow {
  margin-left: auto;
  color: #ccc;
  font-size: 12px;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .contact-widget {
    right: 15px;
    bottom: 15px;
  }
  .wa-popup {
    width: 280px;
  }
}

/* FOOTER */
.modern-footer {
  background: #252020;
  color: #d1d1d1;
  padding-top: 60px;
  font-family: "Noto Sans Bengali", sans-serif;
}
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.footer-logo {
  width: 50px;
  height: auto;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
}
.footer-brand-name {
  font-family: "Noto Serif Bengali", serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.footer-brand-sub {
  font-size: 12px;
  color: #888;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 25px;
  color: #aaa;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}
.social-btn:hover {
  transform: translateY(-5px) rotate(360deg);
  color: #fff;
}
.social-btn.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}
.social-btn.instagram:hover {
  background: #e4405f;
  border-color: #e4405f;
}
.social-btn.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
}
.social-btn.telegram:hover {
  background: #0088cc;
  border-color: #0088cc;
}
.footer-col-title {
  font-family: "Noto Serif Bengali", serif;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #8b1a1a;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover {
  color: #8b1a1a;
  padding-left: 8px;
}
.footer-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 14px;
}
.footer-contact-item i {
  color: #8b1a1a;
  margin-top: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-copy {
  font-size: 13px;
  color: #666;
}
.footer-copy span {
  color: #d4af37;
  font-weight: 600;
}
.footer-bottom-links a {
  color: #666;
  text-decoration: none;
  font-size: 13px;
  margin-left: 20px;
  transition: 0.3s;
}
.footer-bottom-links a:hover {
  color: #fff;
}
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links a {
    margin: 0 10px;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    height: 460px;
  }
  .slide-title {
    font-size: 34px;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .notice-grid {
    grid-template-columns: 1fr;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .slide-title {
    font-size: 26px;
  }
  .slide-sub {
    font-size: 14px;
  }
  .notice-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 26px;
  }
}

/* SCROLL ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 0;
  display: flex;
  justify-content: center; /* পুরো কন্টেন্টকে মাঝখানে রাখবে */
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* কম্পিউটার স্ক্রিনে লেখাগুলোকে মাঝখানে সারিবদ্ধ করবে */
  gap: 8px;
  width: 100%; /* নিশ্চিত করবে যে এটি পুরো জায়গা নিয়ে কাজ করছে */
}

.footer-copy {
  font-size: 14px;
  color: #666;
}

.footer-copy span {
  color: #d4af37;
  font-weight: 600;
}

.powered-by {
  font-size: 13px;
  color: #888;
}

.powered-by a {
  color: #25d366;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.powered-by a:hover {
  color: #bd0000;
  text-decoration: underline;
}
