/* ═══════════════════════════════════════
   AHNS NGO — Main Stylesheet
═══════════════════════════════════════ */
:root {
  --green: #00923f;
  --green2: #2D6A4F;
  --green3: #40916C;
  --green4: #013718;
  --gold: #C9A84C;
  --gold2: #E8C96A;
  --cream: #FAFAF7;
  --white: #FFFFFF;
  --dark: #070f0f;
  --gray: #6B7280;
  --light: #F3F4F6;
  --border: #E5E7EB;
  --shadow: 0 4px 20px rgba(0, 0, 0, .10);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, .15);
  --r: 12px;
  --r-lg: 18px;
  --tr: all .3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--cream);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

.card img {
  width: 200px;
  height: 200px;
}

.member-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.member-search {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
}

.member-search input {
  border: none;
  outline: none;
  padding: 12px 15px;
  width: 250px;
}

.member-search button {
  border: none;
  background: #198754;
  color: #fff;
  padding: 12px 18px;
}

.pagination-wrap {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.pagination-wrap a {
  padding: 10px 15px;
  border-radius: 10px;
  text-decoration: none;
  background: #f5f5f5;
  color: #333;
}

.active-page {
  background: #198754 !important;
  color: #fff !important;
}

@media(max-width:768px) {
  .member-search {
    width: 100%;
  }

  .member-search input {
    width: 100%;
  }

}


#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #198754, #0d5d38);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: all .3s ease;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  transform: translateY(-4px);
}

.whatsapp-float {
  position: fixed;
  bottom: 90px;
  /* Back to top button ke upar */
  right: 25px;

  width: 58px;
  height: 58px;

  background: #25D366;
  color: #fff;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;
  text-decoration: none;

  z-index: 9999;

  box-shadow: 0 8px 20px rgba(0, 0, 0, .2);

  transition: .3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
}

/* Pulse animation */

.whatsapp-float::before {
  content: '';
  position: absolute;

  width: 100%;
  height: 100%;

  border-radius: 50%;
  background: #25D366;

  z-index: -1;

  animation: pulse 1.8s infinite;
}

@keyframes pulse {

  0% {
    transform: scale(1);
    opacity: .7;
  }

  70% {
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* ==========================
   feedback form
========================== */

.contact-section {
  padding: 80px 0;
}

.contact-info-box {
  background: linear-gradient(135deg, #01542b, #003918);
  color: #fff;
  padding: 45px;
  border-radius: 25px;
  height: 100%;
}

.contact-info-box h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info-box p {
  color: #ddd;
  line-height: 1.9;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-top: 28px;
}

.contact-item i {
  width: 58px;
  height: 58px;
  background: #d4af37;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.contact-item h5 {
  margin-bottom: 4px;
}

.feedback-card {
  background: #fff;
  border-radius: 25px;
  padding: 45px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.feedback-card h2 {
  color: #01542b;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 20px;
}

.feedback-card label {
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}

.feedback-card .form-control {
  border-radius: 12px;
  padding: 10px;
}

.btn-submit {
  background: #01542b;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
}

.btn-submit:hover {
  background: #02753c;
}

@media(max-width:768px) {

  .contact-info-box,
  .feedback-card {
    padding: 30px 22px;
  }

  .contact-info-box h2 {
    font-size: 30px;
  }
}

.gallery-card {
  background: linear-gradient(135deg, #198754, #0d5d38);
}

.gallery-card .num {
  font-size: 40px;
}

.dash-link {
  text-decoration: none;
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-card:hover {
  transform: translateY(-4px);
  transition: .3s;
}

.upload-options {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.upload-box {
  flex: 1;
  min-width: 180px;
}

.upload-label {
  background: #198754;
  color: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: .3s;
}

.upload-label:hover {
  transform: translateY(-2px);
}

.upload-label i {
  font-size: 20px;
}

.selected-file-box {
  height: 42px;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  background: #f8f9fa;
  color: #666;
  font-size: 14px;
}

/* ==========================
   Appreciation Section
========================== */

.appreciation-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;

  background:
    linear-gradient(rgba(0, 0, 0, .50),
      rgba(0, 0, 0, .50)),
    url('../images/banner.jpg') fixed;

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


/* LEFT SIDE */

.sub-heading {
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
}

.sub-heading i {
  color: #c9a227;
  margin-right: 10px;
}

.left-content h2 {
  font-size: 45px;
  line-height: 1.4;
  font-weight: 800;
  color: var(--gold2);
  margin-top: 20px;
}

.gold-line {
  width: 260px;
  height: 3px;
  background: #c9a227;
  margin: 28px 0;
}

.left-content p {
  font-size: 14px;
  color: var(--cream);
  line-height: 2;
}


/* QUOTE BOX */

.quote-box {
  margin-top: 35px;
  background:
    linear-gradient(135deg,
      #005d2e,
      #003918);

  color: #fff;
  border-radius: 22px;
  padding: 28px;
  font-size: 15px;

  box-shadow:
    0 12px 35px rgba(0, 0, 0, .18);
}

.quote-box i {
  color: #d4af37;
  font-size: 26px;
  margin-right: 10px;
}


/* RIGHT CARD */

.thanks-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;

  background:
    linear-gradient(135deg,
      #01542b,
      #003918);

  padding: 60px 45px;
  min-height: 470px;

  box-shadow:
    0 15px 50px rgba(0, 0, 0, .22);
}

.prog_img img {
  width: 100%;
  border: 6px solid var(--gold);
  border-radius: 20px;
}




.live-section {
  padding: 70px 0;
  background:
    linear-gradient(135deg,
      #0F1F18,
      #173A2D);
}

.live-header {
  text-align: center;
  margin-bottom: 45px;
}

.live-badge {
  background: #ff0000;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
  animation: pulse 1.5s infinite;
}

.live-header h2 {
  color: #fff;
  font-size: 38px;
  margin-bottom: 12px;
}

.live-header p {
  color: #cfcfcf;
  font-size: 16px;
}

.live-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 25px 50px rgba(0, 0, 0, .25);
}

.channel-side {
  width: 320px;
  background:
    linear-gradient(180deg,
      #123524,
      #1B4332);

  text-align: center;
  padding: 40px 25px;
  color: #fff;
}

.channel-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid #C9A84C;
  object-fit: cover;
  margin-bottom: 18px;
  background: #fff;
}

.channel-side h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.channel-side p {
  color: #ddd;
  margin-bottom: 25px;
}

.subscribe-btn {
  display: inline-block;
  background: #C9A84C;
  color: #123524;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 700;
  transition: .3s;
}

.subscribe-btn:hover {
  transform: translateY(-3px);
}

.video-side {
  flex: 1;
  min-height: 500px;
}

.video-side iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

@keyframes pulse {

  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

/* Mobile */

@media(max-width:991px) {

  .live-card {
    flex-direction: column;
  }

  .channel-side {
    width: 100%;
  }

  .video-side iframe {
    min-height: 350px;
  }

  .live-header h2 {
    font-size: 30px;
  }
}








/* Golden Shape */

.gold-shape {
  position: absolute;
  left: -110px;
  top: -10px;
  width: 300px;
  height: 540px;
  background: linear-gradient(180deg, #f0d77d, #ba922d);
  border-radius: 29px 260px 260px 35px;
  transform: rotate(12deg);
}


/* Decorative Glow */

.thanks-card::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -80px;

  width: 300px;
  height: 300px;
  border-radius: 50%;

  background:
    rgba(255, 255, 255, .04);
}


/* Logo */

.logo-circle {
  width: 210px;
  height: 210px;
  background: #fff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  z-index: 2;

  margin: auto;

  box-shadow:
    0 12px 35px rgba(0, 0, 0, .2);
}

.logo-circle img {
  width: 160px;
}


/* Text */

.card-content {
  position: relative;
  z-index: 2;
}

.special-text {
  color: #d4af37;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 14px;
}

.card-content h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin: 15px 0;
}

.small-gold-line {
  width: 180px;
  height: 2px;
  background: #d4af37;
  margin-bottom: 22px;
}

.card-content p {
  color: #f3f3f3;
  font-size: 14px;
  line-height: 2;
}


/* Buttons */

.btn-group-custom {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.gold-btn {
  background: #d4af37;
  color: #000;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 14px;
  font-weight: 600;
  transition: .3s;
  font-size: 13px;
}

.gold-btn:hover {
  transform: translateY(-3px);
}

.outline-btn {
  border: 1px solid #d4af37;
  color: #fff;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 14px;
  font-weight: 600;
}


/* MOBILE */

@media(max-width:992px) {

  .left-content {
    text-align: center;
  }

  .gold-line {
    margin: auto;
    margin-top: 20px;
    margin-bottom: 25px;
  }

  .thanks-card {
    margin-top: 50px;
  }
}


@media(max-width:768px) {

  .appreciation-section {
    padding: 70px 0;
  }

  .left-content h2 {
    font-size: 42px;
  }

  .thanks-card {
    padding: 35px 25px;
    text-align: center;
    min-height: auto;
  }

  .gold-shape {
    display: none;
  }

  .logo-circle {
    width: 180px;
    height: 180px;
    margin-bottom: 25px;
  }

  .logo-circle img {
    width: 120px;
  }

  .card-content h3 {
    font-size: 30px;
  }

  .btn-group-custom {
    justify-content: center;
  }
}









.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nohakhwan-section .card {
  border-radius: 15px;
  transition: 0.3s;
}

.nohakhwan-section .card:hover {
  transform: translateY(-5px);
}

.nohakhwan-section img {
  object-fit: cover;
  border: 4px solid var(--gold);
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.fw-bold {
  color: var(--cream) !important;
}

.gold {
  color: var(--gold2) !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--gold, var(--gold2)) !important;
}

/* ── Topbar ─────────────────────────────── */
.topbar {
  background: var(--green);
  color: rgba(255, 255, 255, .8);
  font-size: 12.5px;
  padding: 7px 0;
}

.topbar .container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.topbar i {
  color: var(--gold);
  margin-right: 5px;
}

.topbar .tb-right {
  margin-left: auto;
}

.topbar a {
  color: var(--gold2);
}

/* ── Navbar ─────────────────────────────── */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-orb {
  width: 100px;
  height: 80px;
  background: linear-gradient(135deg, var(--green), var(--green2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 22px;
  box-shadow: 0 4px 14px rgba(27, 67, 50, .35);
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.brand-tag {
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .5px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2px;
  align-items: center;
}

.nav-links a {
  padding: 8px 13px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--dark);
  transition: var(--tr);
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--light);
  color: var(--green);
}

.nav-links .nav-login {
  background: var(--green);
  color: var(--white) !important;
  padding: 8px 18px;
}

.nav-links .nav-login:hover {
  background: var(--green2);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: var(--tr);
}

/* ── Hero ───────────────────────────────── */
.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.40),
      rgba(20, 10, 0, 0.35)),
    url('../images/about.jpg');
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  justify-content: center;



}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-bg-text {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 300px;
  font-weight: 900;
  color: rgba(201, 168, 76, .06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, .18);
  border: 1px solid rgba(201, 168, 76, .35);
  color: var(--gold2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .2);
}

.hero h1 span {
  color: var(--gold2);
}

.hero-sub {
  font-size: 16px;
  opacity: .88;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--tr);
  font-family: 'Poppins', sans-serif;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}

.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, .45);
}

.btn-white {
  background: var(--white);
  color: var(--green);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .5);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .1);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

.btn-xs {
  padding: 5px 13px;
  font-size: 12px;
}

.btn-danger {
  background: #DC2626;
  color: var(--white);
}

.btn-danger:hover {
  background: #B91C1C;
}

.btn-warning {
  background: #D97706;
  color: var(--white);
}

.btn-warning:hover {
  background: #B45309;
}

.btn-success {
  background: #059669;
  color: var(--white);
}

.btn-success:hover {
  background: #047857;
}

.btn-excel {
  background: #217346;
  color: var(--white);
}

.btn-excel:hover {
  background: #1a5c38;
}

/* ── Stats bar ──────────────────────────── */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.stat-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--gold2);
  line-height: 1;
}

.stat-lbl {
  font-size: 13px;
  opacity: .75;
  margin-top: 4px;
  letter-spacing: .3px;
}

/* ── Sections ───────────────────────────── */
.section {
  padding: 80px 0;
  background-color: #1d1d1d;
}

.section-gallery {
  background-color: #1d1d1d;
  padding: 80px 0;
}

.section-prog {
  background-color: var(--dark);
  padding: 80px 0;
}

.section-nohakhwan {
  padding: 80px 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.75),
      rgba(20, 10, 0, 0.75)),
    url('../images/nohakhawn-background.jpg') fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-msg {
  padding: 80px 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.75),
      rgba(20, 10, 0, 0.75)),
    url('../images/msg-background.jpg') fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-alt {
  background: var(--white);
}

.sec-head {
  text-align: center;
  margin-bottom: 54px;
}

.sec-eye {
  display: inline-block;
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sec-head h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--green);
  margin-bottom: 14px;
}

.sec-div {
  width: 54px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 2px;
  margin: 0 auto 14px;
}

.sec-head p {
  color: var(--cream);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── President / Secretary messages ─────── */
.msg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.msg-card {
  background: rgba(0, 0, 0, 0.5);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.msg-card::before {
  content: '❝';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 90px;
  color: var(--gold);
  opacity: .12;
  font-family: serif;
  line-height: 1;
}

.msg-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green2));
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 32px;
  margin-bottom: 18px;
}

.msg-avatar img {
  border-radius: 50%;
}

.msg-text {
  font-size: 14px;
  color: #d7d7d7;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}

.msg-name {
  font-weight: 700;
  color: var(--green);
  font-size: 16px;
}

.msg-role {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .5px;
}

/* ── YouTube section ────────────────────── */
.yt-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.yt-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}


/* ── Team ────────────────────────────── */

.team-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #666;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.team-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-card h3 {
  margin: 10px 0 5px;
  font-size: 18px;
}

.team-card p {
  color: #777;
  font-size: 14px;
}

/* ── Gallery ────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 14px;
}

.gal-item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gal-item:hover img {
  transform: scale(1.08);
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 67, 50, .85), transparent);
  opacity: 0;
  transition: var(--tr);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

.gal-item:hover .gal-overlay {
  opacity: 1;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
}

.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
}

/* ── About section ──────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-box {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 90px;
}

.about-img-box img {
  width: 100%;
  max-width: 460px;
}

.about-content h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 14px;
}

.about-content p {
  color: var(--cream);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}

.val-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.val-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(27, 67, 50, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
}

/* ── Registration Form ──────────────────── */
.reg-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.qr-box {
  background: linear-gradient(135deg, var(--green), var(--green2));
  border-radius: var(--r-lg);
  padding: 36px;
  text-align: center;
  color: var(--white);
  margin-bottom: 32px;
}

.qr-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.qr-box p {
  opacity: .88;
  font-size: 13.5px;
  margin-bottom: 18px;
}

.qr-img-wrap {
  background: var(--white);
  border-radius: var(--r);
  padding: 20px;
  display: inline-block;
  margin-bottom: 14px;
}

.qr-img-wrap img {
  width: 160px;
  height: 160px;
  display: block;
}

.qr-placeholder {
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--light);
  border-radius: 10px;
  font-size: 13px;
  text-align: center;
  color: var(--gray);
  padding: 10px;
  gap: 8px;
}

.amount-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--green);
  font-weight: 800;
  font-size: 22px;
  padding: 8px 28px;
  border-radius: 50px;
  margin: 8px 0;
}

.upi-tag {
  background: rgba(255, 255, 255, .15);
  border-radius: 50px;
  padding: 7px 20px;
  font-size: 13px;
  display: inline-block;
  margin-top: 10px;
}

.form-box {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}

.form-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
}

.form-box .sub {
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fg.full {
  grid-column: 1/-1;
}

.fg label {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}

.fg .hi {
  display: block;
  font-size: 11px;
  color: var(--gray);
  font-weight: 400;
  margin-top: 1px;
}

.fg input,
.fg select,
.fg textarea {
  padding: 12px 15px;
  border: 2px solid var(--border);
  border-radius: 9px;
  font-size: 14.5px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: var(--tr);
  width: 100%;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(27, 67, 50, .1);
}

.fg .note {
  font-size: 11.5px;
  color: var(--gray);
  margin-top: 3px;
}

.upload-zone {
  border: 2px dashed var(--border);
  border-radius: 9px;
  padding: 22px;
  text-align: center;
  cursor: pointer;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}

.upload-zone:hover {
  border-color: var(--green);
  background: rgba(27, 67, 50, .02);
}

.upload-zone input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.upload-zone i {
  font-size: 30px;
  color: var(--green);
  display: block;
  margin-bottom: 8px;
}

.upload-zone p {
  font-size: 13px;
  color: var(--gray);
}

.upload-zone .fn {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  margin-top: 6px;
}

.upload-preview {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--gold);
  display: none;
  margin: 8px auto 0;
}

.req {
  color: #DC2626;
}

.warn-box {
  background: #FEF3C7;
  border: 1px solid #FDE68A;
  border-radius: 9px;
  padding: 14px 18px;
  font-size: 13px;
  color: #92400E;
  margin: 24px 0;
}

.success-banner {
  background: #D1FAE5;
  border: 1px solid #A7F3D0;
  border-radius: var(--r);
  padding: 28px;
  text-align: center;
  display: none;
}

.success-banner i {
  font-size: 50px;
  color: #059669;
  display: block;
  margin-bottom: 14px;
}

.success-banner h3 {
  color: #065F46;
  font-size: 20px;
  margin-bottom: 8px;
}

.success-banner p {
  color: #047857;
  font-size: 14px;
}

/* ── Contact ────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

.cinfo {
  background: linear-gradient(135deg, var(--green), var(--green2));
  border-radius: var(--r-lg);
  padding: 38px;
  color: var(--white);
}

.cinfo h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold2);
  margin-bottom: 24px;
}

.citem {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.citem i {
  font-size: 20px;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.citem h4 {
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 3px;
}

.citem p {
  font-size: 13px;
  opacity: .8;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold2);
  transition: var(--tr);
}

.socials a:hover {
  background: var(--gold);
  color: var(--green);
}

.cform-box {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 38px;
  box-shadow: var(--shadow);
}

/* ── Page Header ────────────────────────── */
.ph {
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: var(--white);
  padding: 54px 0 40px;
  position: relative;
  overflow: hidden;
}

.ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.05'%3E%3Cpath d='M20 20.5V18H0v5h5v5H0v5h20v-9.5zm-2 4.5h-4v-4h4v4zm4-6H8V12h14v7z'/%3E%3C/g%3E%3C/svg%3E");
}

.ph .container {
  position: relative;
  z-index: 1;
}

.ph h1 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 6px;
}

.ph p {
  opacity: .85;
  font-size: 15px;
}

.bc {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12.5px;
  opacity: .75;
  margin-top: 10px;
}

.bc a {
  color: var(--gold2);
}

/* ── Footer ─────────────────────────────── */
.footer {
  background: var(--green4);
  color: rgba(255, 255, 255, .82);
}

.ft-top {
  padding: 56px 0 36px;
}

.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.googleTranslate {
  display: inline-block;
  padding-top: 0px;
  margin: 0px;
  line-height: 0px;
  margin-right: 10px;
}

.goog-te-gadget-simple {
  background-color: transparent !important;
  border-color: var(--gold) !important;
}

.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed {
  color: var(--gold2) !important;
}

.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed span {
  color: var(--gold2) !important;
}

.ft-brand i {
  font-size: 28px;
  color: var(--gold);
}

.ft-brand img {
  max-width: 100px;
  width: 100%;
}

.ft-brand h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin: 10px 0 8px;
}

.ft-brand p {
  font-size: 13px;
  line-height: 1.7;
  padding: 20px 0px;
}

.ft-col h4 {
  color: var(--gold2);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.ft-col ul {
  list-style: none;
  padding-left: 0rem !important;
}

.ft-col ul li {
  margin-bottom: 9px;
}

.ft-col ul a {
  font-size: 13px;
  color: rgba(255, 255, 255, .72);
  transition: var(--tr);
  display: flex;
  align-items: center;
  gap: 6px;
}

.ft-col ul a:hover {
  color: var(--gold2);
  padding-left: 4px;
}

.ft-col ul a i {
  font-size: 10px;
  color: var(--gold);
}

.ft-col p {
  font-size: 13px;
  display: flex;
  gap: 10px;
  margin-bottom: 9px;
  align-items: flex-start;
}

.ft-col p i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 18px 0;
}

.ft-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
  opacity: .65;
}

/* ── Alerts ─────────────────────────────── */
.alert {
  padding: 13px 18px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-s {
  background: #D1FAE5;
  color: #065F46;
}

.alert-e {
  background: #FEE2E2;
  color: #991B1B;
}

.alert-i {
  background: #DBEAFE;
  color: #1E40AF;
}

/* ── Admin ──────────────────────────────── */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 250px;
  background: var(--green);
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.sb-brand {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.sb-brand .logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 10px;
}

.sb-brand h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.sb-brand small {
  color: var(--gold);
  font-size: 11px;
}

.sb-nav {
  padding: 16px 0;
}

.sb-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: rgba(255, 255, 255, .78);
  font-size: 13.5px;
  transition: var(--tr);
}

.sb-nav a:hover,
.sb-nav a.active {
  background: rgba(255, 255, 255, .1);
  color: var(--white);
}

.sb-nav a i {
  width: 18px;
  color: var(--gold);
  font-size: 15px;
}

.sb-nav .sb-sep {
  padding: 8px 20px;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, .35);
  text-transform: uppercase;
  margin-top: 8px;
}

.admin-main {
  flex: 1;
  background: #F1F5F9;
  overflow-x: auto;
}

.admin-topbar {
  background: var(--white);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .07);
  position: sticky;
  top: 0;
  z-index: 10;
}

.admin-topbar h1 {
  font-size: 19px;
  font-weight: 700;
  color: var(--green);
}

.admin-content {
  padding: 28px;
}

.dash-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.dc {
  background: var(--white);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
  border-left: 4px solid var(--green);
}

.dc.gold {
  border-color: var(--gold);
}

.dc.warn {
  border-color: #D97706;
}

.dc.danger {
  border-color: #DC2626;
}

.dc .num {
  font-size: 38px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.dc.gold .num {
  color: var(--gold);
}

.dc.warn .num {
  color: #D97706;
}

.dc.danger .num {
  color: #DC2626;
}

.dc .lbl {
  font-size: 12.5px;
  color: var(--gray);
  margin-top: 5px;
}

.tbl-box {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}

.tbl-head {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.tbl-head h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead th {
  background: var(--green);
  color: var(--gold2);
  padding: 12px 16px;
  text-align: left;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .3px;
}

tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid #cdcdcd;
  font-size: 13px;
  vertical-align: middle;
  background: #F3F4F6;
}

tbody tr:hover td {
  background: #FAFAFA;
}

.td-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.td-photo-ph {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
}

.badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 600;
  display: inline-block;
}

.badge-p {
  background: #FEF3C7;
  color: #92400E;
}

.badge-a {
  background: #D1FAE5;
  color: #065F46;
}

.badge-r {
  background: #FEE2E2;
  color: #991B1B;
}

.mc {
  font-family: monospace;
  font-weight: 700;
  color: var(--green);
  font-size: 12px;
  background: var(--light);
  padding: 2px 8px;
  border-radius: 5px;
}

.action-btns {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* Login page */
.login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green), var(--green2));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-box {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 44px;
  width: 380px;
  box-shadow: var(--shadow-lg);
}

.login-box .logo-big {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 28px;
  margin: 0 auto 18px;
}

/* Certificate print */
@media print {
  body * {
    visibility: hidden !important;
  }

  #cert-print,
  #cert-print * {
    visibility: visible !important;
  }

  #cert-print {
    position: fixed !important;
    inset: 0 !important;
    z-index: 99999 !important;
  }

  @page {
    size: A4 landscape;
    margin: 0;
  }
}

.cert-wrap {
  width: 297mm;
  height: 210mm;
  background: var(--white);
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
}

.cert-border {
  position: absolute;
  inset: 10mm;
  border: 3px solid var(--green);
  border-radius: 8px;
  pointer-events: none;
}

.cert-border::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid var(--gold);
  border-radius: 6px;
}

.cert-header {
  background: linear-gradient(135deg, var(--green), var(--green2));
  padding: 14mm 16mm 10mm;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 16mm;
}

.cert-logo {
  width: 22mm;
  height: 22mm;
  border-radius: 50%;
  background: rgba(201, 168, 76, .25);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 36px;
  flex-shrink: 0;
}

.cert-org {
  flex: 1;
}

.cert-org h2 {
  font-size: 22pt;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 2px;
}

.cert-org p {
  font-size: 10pt;
  color: rgba(255, 255, 255, .8);
}

.cert-code {
  background: var(--gold);
  color: var(--green);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 10pt;
  font-weight: 700;
  align-self: flex-start;
  margin-top: 4px;
  display: inline-block;
}

.cert-body {
  flex: 1;
  padding: 8mm 16mm;
  display: flex;
  gap: 10mm;
  align-items: flex-start;
}

.cert-photo {
  width: 28mm;
  height: 34mm;
  border: 3px solid var(--gold);
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.cert-photo-ph {
  width: 28mm;
  height: 34mm;
  border: 3px solid var(--gold);
  border-radius: 6px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gray);
  flex-shrink: 0;
}

.cert-title {
  font-size: 13pt;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 2mm;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2mm;
}

.cert-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4mm 8mm;
  margin-top: 4mm;
}

.cert-field label {
  font-size: 7pt;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  display: block;
}

.cert-field span {
  font-size: 10pt;
  font-weight: 600;
  color: var(--dark);
}

.cert-footer {
  background: var(--light);
  padding: 5mm 16mm;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cert-stamp {
  text-align: center;
}

.cert-stamp .stamp-circle {
  width: 20mm;
  height: 20mm;
  border: 2px dashed var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 8pt;
  text-align: center;
  font-weight: 600;
  padding: 2mm;
}

.cert-sig {
  text-align: center;
}

.cert-sig .sig-line {
  width: 40mm;
  border-top: 2px solid var(--dark);
  margin-bottom: 2mm;
}

.cert-sig p {
  font-size: 8pt;
  color: var(--gray);
}

.cert-issued {
  font-size: 8pt;
  color: var(--gray);
}

/* Responsive */
@media(max-width:1024px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .msg-grid {
    grid-template-columns: 1fr;
  }

  .dash-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-radius: 0;
    padding: 12px 24px;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 60px 0 48px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stats .stat-num {
    font-size: 30px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-box {
    padding: 28px 20px;
  }

  .admin-layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }

  .sidebar .sb-nav {
    display: flex;
    flex-wrap: wrap;
  }

  .sidebar .sb-nav a {
    padding: 10px 14px;
  }

  .ft-grid {
    grid-template-columns: 1fr;
  }

  .admin-content {
    padding: 16px;
  }

  .dash-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:480px) {
  .hero h1 {
    font-size: 26px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .dash-cards {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}


.coming-box {
  text-align: center;
  padding: 50px 30px;
}

.title {
  font-size: 55px;
  color: #d4af37;
  font-weight: 700;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 24px;
  color: #ddd;
  margin-bottom: 40px;
}

.countdown-box {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 15px;
  padding: 25px 15px;
}

.number {
  font-size: 50px;
  font-weight: bold;
  color: #d4af37;
}

.label {
  font-size: 15px;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media(max-width:768px) {
  .title {
    font-size: 40px;
  }

  .number {
    font-size: 35px;
  }

  .coming-box {
    padding: 40px 20px;
  }
}

.sec_back {
  background-color: var(--dark);
}