* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', 'Segoe UI Variable', Arial, sans-serif;
  background: linear-gradient(180deg, #f4f5f9 0%, #edf2f7 100%);
  color: #1f2937;
  padding-top: 150px;
}

a {
  transition: color 0.25s ease, transform 0.25s ease;
}

a:hover {
  text-decoration: none;
}

/* Header Styling */
.site-header {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  width: 100%;
}

@keyframes headerEntrance {
  from {
    transform: translateY(-105%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.site-header.header-visible {
  transform: translateY(0);
}


.btn-whatsapp {
  color: #ffffff;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-color: transparent;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(16, 185, 129, 0.18);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  transform: translateY(-1px);
}

.contact-link {
  border-radius: 999px;
  padding: 0.55rem 1rem;
  color: #374151 !important;
  border-color: #d1d5db;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.18);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.contact-link:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #111827 !important;
  transform: translateY(-1px);
}

.navbar {
  padding: 0.5rem 0;
  background: transparent;
}

.main-navbar {
  backdrop-filter: blur(24px);
  background: rgba(255, 255, 255, 0.97);
  border-radius: 1.5rem;
  border: 1px solid rgba(229, 231, 235, 0.85);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  padding: 0.75rem 1.2rem;
}

.navbar-brand {
  font-weight: 700;
  gap: 0.5rem;
  align-items: center;
  color: #111827 !important;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  display: flex;
}

.brand-name {
  font-size: 1.05rem;
  color: #92400e;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: #b45309;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.header-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 1.1rem;
  border: 2.5px solid #f97316;
  padding: 0.2rem;
  background: #fff;
  flex-shrink: 0;
}

.nav-menu {
  align-items: center;
}

.navbar-nav .nav-link {
  margin: 0 0.75rem;
  color: #374151 !important;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.25s ease, transform 0.25s ease;
  position: relative;
  padding: 0.5rem 0.15rem;
  display: inline-block;
}

.navbar-nav .nav-link:hover {
  color: #f97316 !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
  color: #f97316 !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -0.35rem;
  width: 0;
  height: 3px;
  background: #f97316;
  transition: width 0.25s ease, left 0.25s ease;
  border-radius: 999px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
  left: 0;
}

.btn-admin {
  border: 1.5px solid #b91c1c;
  background: transparent;
  color: #b91c1c;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.btn-admin:hover {
  background: rgba(185, 28, 28, 0.1);
  border-color: #dc2626;
  transform: translateY(-2px);
}

.header-actions {
  align-items: center;
  gap: 0.8rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 0;
  display: flex;
}

.btn-whatsapp-icon {
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(16, 185, 129, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-whatsapp-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(16, 185, 129, 0.28);
  background: #0f766e;
}

.language-selector {
  width: auto !important;
  min-width: 145px;
  max-width: 180px;
  height: 44px;
  border-radius: 999px;
  padding: 0 1.1rem;
  background: #fff;
  border: 1.5px solid rgba(209, 213, 219, 0.3);
  color: #374151;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
  cursor: pointer;
}

.language-selector:hover,
.language-selector:focus {
  background: #f8fafc;
  border-color: rgba(148, 163, 184, 0.4);
  transform: translateY(-1px);
}

.navbar-nav .dropdown-menu {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  border-radius: 0.75rem;
  padding: 0.5rem 0;
}

.navbar-nav .dropdown-item {
  color: #334155;
  padding: 0.65rem 1.4rem;
  transition: background-color 0.22s ease, color 0.22s ease;
}

.navbar-nav .dropdown-item:hover {
  background-color: #fef3c7;
  color: #f97316;
}

.navbar .btn-success {
  background: #10b981;
  border-color: #10b981;
  transition: all 0.3s ease;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
}

.navbar .btn-success:hover {
  background: #059669;
  border-color: #059669;
  transform: scale(1.05);
}

.navbar .btn-outline-danger {
  border-color: #b91c1c;
  color: #b91c1c;
  font-weight: 600;
  transition: all 0.3s ease;
}

.navbar .btn-outline-danger:hover {
  background: #dc2626;
  color: #fff;
}

.header-divider {
  height: 4px;
  background: linear-gradient(90deg, #f97316 0%, #ea580c 50%, #dc2626 100%);
  width: 100%;
}

body {
  padding-top: 150px;
}

@media (max-width: 991px) {
  .top-bar-row {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .top-bar-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .top-bar-actions .form-select,
  .top-bar-actions .btn {
    margin-bottom: 0.5rem;
  }

  .main-navbar {
    border-radius: 1rem;
    padding: 0.75rem 0.75rem;
  }

  .navbar-nav {
    width: 100%;
    justify-content: center;
  }

  .navbar-nav .nav-link {
    margin: 0.3rem 0;
    text-align: center;
    width: 100%;
  }

  .header-actions {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    margin-top: 0.75rem;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .language-selector {
    max-width: 180px;
    width: 100%;
  }

  .btn-admin {
    width: 100%;
  }
}
/* Hero Section with Gradient */
.hero {
  min-height: 70vh;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #d84315 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  min-height: 80vh;
}

.hero--featured {
  padding: 6rem 0 5rem;
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.82), rgba(220, 38, 38, 0.78));
  position: relative;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.78), rgba(220, 38, 38, 0.7));
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-card {
  background: rgba(255,255,255,0.96);
  color: #1f2937;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
  backdrop-filter: blur(8px);
}

.hero-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-card li {
  padding: 0.6rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.hero-card li:last-child {
  border-bottom: 0;
}

.hero-card i {
  color: #dc3545;
  margin-right: 0.5rem;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 760px;
  text-align: left;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 0.95rem;
  backdrop-filter: blur(6px);
}

.hero-card {
  border: 1px solid rgba(255,255,255,0.24);
}

.offer-card {
  background: rgba(255,255,255,0.95);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 18px 45px rgba(15,23,42,0.1);
  height: 100%;
  border: 1px solid rgba(229, 231, 235, 0.85);
}

.offer-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #dc2626;
}

.offer-card h5 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1f2937;
}

.offer-card p {
  color: #475569;
  margin-bottom: 0;
}

.stat-card {
  padding: 2rem 1rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.stat-card h2 {
  color: #dc3545;
  font-weight: 700;
}

/* Wavy Background */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><defs><style>.wave{fill:white;}</style></defs><path class="wave" d="M0,50 Q300,0 600,50 T1200,50 L1200,120 L0,120 Z"/></svg>') repeat-x;
  background-size: 600px 120px;
  opacity: 1;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.hero-content p {
  font-size: 1.12rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  max-width: 650px;
}

.hero .btn {
  padding: 0.85rem 2rem;
  font-weight: 600;
  border-radius: 50px;
}

/* Contact Page */
.contact-hero {
  background: linear-gradient(135deg, #c2410c 0%, #dc2626 45%, #991b1b 100%);
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 40%);
  pointer-events: none;
}

.contact-hero .hero-badge {
  display: inline-flex;
  background: rgba(255,255,255,0.18);
  color: white;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-hero h1 {
  color: white;
  line-height: 1.03;
}

.contact-hero p {
  color: rgba(255,255,255,0.92);
  max-width: 640px;
}

.contact-hero-card {
  border: 1px solid rgba(255,255,255,0.15);
}

.contact-hero-card h3 {
  font-weight: 700;
}

.contact-hero-item .icon-box {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.1rem;
}

.contact-form-card {
  background: white;
  border-radius: 1.5rem;
}

.contact-form-card .form-label {
  font-weight: 600;
}

.contact-form-card .form-control {
  border-radius: 1rem;
  padding: 1rem 1.1rem;
}

.contact-card {
  background: white;
  border-radius: 1.5rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.contact-card .icon-box {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 1.2rem;
}

.map-card {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
}

@media (max-width: 991px) {
  .contact-hero {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .contact-hero-card,
  .contact-form-card,
  .contact-card {
    border-radius: 1.25rem;
  }
}

.banner-slider {
  position: relative;
  overflow: hidden;
}

.banner-slider .carousel-item {
  min-height: 75vh;
  position: relative;
}

.banner-slider .carousel-item img {
  object-fit: cover;
  min-height: 75vh;
  width: 100%;
  filter: saturate(1.05) brightness(0.95);
}

.slider-caption {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.72);
  border-radius: 1.5rem;
  padding: 2rem 2.25rem;
  max-width: 680px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
}

.slider-caption span {
  display: inline-block;
  color: #f59e0b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.8rem;
}

.slider-caption h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.05;
}

.slider-caption p {
  color: #f8fafc;
  font-size: 1.03rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.carousel-control-prev,
.carousel-control-next {
  width: 4rem;
  height: 4rem;
  background: rgba(15, 23, 42, 0.58);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

.carousel-indicators [aria-current="true"],
.carousel-indicators .active {
  background-color: #f59e0b;
}

.course-card,
.news-card,
.event-card {
  border: none;
}

.news-card {
  background: #fff7ed;
}

.section-subtitle {
  margin-top: 0.5rem;
}

@media (max-width: 767px) {
  .slider-caption {
    padding: 1.5rem;
  }

  .slider-caption h1 {
    font-size: 2rem;
  }
}

.btn-primary {
  background-color: #1f2937;
  border-color: #1f2937;
}

.btn-primary:hover {
  background-color: #111827;
  border-color: #111827;
}

/* Cards */
.feature-card,
.event-card,
.about-card,
.contact-card,
.gallery-card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.event-card:hover,
.about-card:hover,
.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.2);
}

.feature-card .card-body {
  padding: 2rem;
}

.feature-card .card-title {
  color: #dc3545;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Section Styling */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  color: #1f2937;
}

.hero-image {
  min-height: 520px;
  background-image: url("../../uploads/activity/WhatsApp%20Image%202026-06-30%20at%206.56.36%20AM.jpeg");
  background-size: cover;
  background-position: center;
  border-radius: 1.75rem;
}

.about-image {
  min-height: 520px;
  background-image: url('https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  border-radius: 1.75rem;
}

.values-section .spiritual-card,
.feature-card,
.event-card,
.blog-card,
.service-wing,
.about-panel,
.hero-card {
  border: none;
}

.values-section .spiritual-card {
  background: white;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.about-panel {
  background: #fff;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #475569;
}

.about-list li i {
  margin-top: 0.2rem;
}

.section-label {
  text-transform: uppercase;
  color: #dc3545;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-weight: 700;
}

.section-text {
  color: #475569;
  font-size: 1.05rem;
  max-width: 720px;
  line-height: 1.8;
}

.feature-card {
  background: white;
}

.feature-card h5 {
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.events-section .section-header,
.cta-section .section-title {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.event-meta {
  font-weight: 700;
  color: #dc3545;
}

.testimonial-card {
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.service-wing {
  background: white;
  padding: 2.5rem 1.75rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.service-wing h5 {
  margin-top: 1rem;
}

.service-wing p {
  color: #6b7280;
}

.cta-section {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 45%, #d84315 100%);
}

.cta-section .section-title,
.cta-section .section-text {
  color: #fff;
}

@media (max-width: 991px) {
  .hero-image {
    min-height: 420px;
  }
}

.event-date {
  display: inline-block;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.event-card h5 {
  color: #1f2937;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.event-location {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  grid-auto-flow: dense;
}

.photo-card,
.gallery-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-card:hover,
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.photo-card img,
.gallery-card:not(.featured) img,
.gallery-card:not(.featured) video {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.gallery-card.featured img,
.gallery-card.featured video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.photo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.55) 100%);
}

.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
}

.photo-caption h5 {
  margin: 0;
  font-weight: 600;
}

.gallery-card .gallery-info {
  padding: 1rem;
  background: white;
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  border-top: 3px solid #f97316;
}

.site-footer h5 {
  font-weight: 600;
}

.social-links a {
  color: #f97316;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #ea580c;
  transform: scale(1.2);
}

/* Contact Form */
.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  padding: 0.75rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.25);
}

.contact-form .btn-submit {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  border: none;
  color: white;
  font-weight: 600;
  padding: 0.75rem 2rem;
}

.contact-form .btn-submit:hover {
  background: linear-gradient(135deg, #ea580c 0%, #d84315 100%);
}

/* About Section */
.about-card {
  background: white;
  padding: 2rem;
}

.about-card .icon {
  font-size: 3rem;
  color: #f97316;
  margin-bottom: 1rem;
}

.about-card h5 {
  color: #1f2937;
  font-weight: 600;
}

/* Blog Cards */
.blog-card {
  border: none;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.2);
}

.blog-card img {
  height: 200px;
  object-fit: cover;
}

.blog-date {
  color: #f97316;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Admin Panel */
.admin-header {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  padding: 2rem 0;
  color: white;
}

.admin-header h1 {
  font-weight: 700;
}

.dashboard-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.dashboard-card .number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f97316;
}

.dashboard-card .label {
  color: #6b7280;
  margin-top: 0.5rem;
}

/* Login Page */
.login-page {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #d84315 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  padding: 3rem;
  width: 100%;
  max-width: 420px;
}

.login-card h2 {
  color: #f97316;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.login-card .form-control {
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.login-card .form-control:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.25);
}

.login-btn {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  border: none;
  color: white;
  font-weight: 600;
  width: 100%;
  padding: 0.75rem;
}

.login-btn:hover {
  background: linear-gradient(135deg, #ea580c 0%, #d84315 100%);
}

/* Statistics Cards */
/* Programs Carousel */
.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.section-header .text-danger {
  color: #dc3545 !important;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

.programs-carousel {
  margin-bottom: 3rem;
}

.program-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f3f4f6;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.15);
  border-color: #f97316;
}

.program-icon {
  font-size: 3rem;
  color: #dc3545;
  margin-bottom: 1rem;
  display: inline-block;
  width: 70px;
  height: 70px;
  background: #fff7ed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-card h5 {
  font-weight: 700;
  color: #1f2937;
  margin: 1rem 0 0.5rem 0;
  font-size: 1.1rem;
}

.program-card p {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.stat-card {
  padding: 2rem;
  border-radius: 1rem;
  background: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

/* Service Wings */
.service-wing {
  padding: 2rem;
  border-radius: 1rem;
  background: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service-wing:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.2);
}

.service-wing i {
  transition: transform 0.3s ease;
}

.service-wing:hover i {
  transform: scale(1.1) rotate(10deg);
}

/* Testimonial Cards */
.testimonial-card {
  transition: all 0.3s ease;
  border-radius: 1.5rem;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.testimonial-card .fa-star {
  font-size: 1.2rem;
}

/* Initiative Cards */
.initiative-card {
  padding: 2rem;
  transition: all 0.3s ease;
  background: white;
}

.initiative-card:hover {
  border-color: #d84315 !important;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.15);
  transform: translateY(-3px);
}

.initiative-card i {
  transition: all 0.3s ease;
}

.initiative-card:hover i {
  transform: scale(1.2);
}

/* Spacing */
.py-6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-highlights {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 50vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }

  .navbar-nav .nav-link {
    margin: 0.25rem 0;
  }

  .top-bar .container {
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 40vh;
    padding: 4rem 0 3rem;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero .btn {
    width: 100%;
  }

  .hero-card {
    padding: 1.25rem;
  }

  .login-card {
    padding: 2rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .program-card {
    padding: 1.5rem;
  }

  .program-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .program-card {
    padding: 1rem;
  }

  .program-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }
}
