/*--------------------------------------------------------------
# 🇮🇳 TIRANGA THEME — Jai Hind | Independence Day & Republic Day
# Palette: Saffron (#FF9933) · White (#FFFFFF) · India Green (#138808)
#           Ashoka Navy (#000080) · Gold (#FFD700)
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Centralized Color Variables
--------------------------------------------------------------*/
:root {
  /* Indian Flag Colors */
  --primary-color: #FF9933;
  --primary-dark: #E8870A;
  --primary-light: #FFAD5C;

  --india-green: #138808;
  --india-green-dark: #0D6B05;
  --india-green-light: #1CAE0A;

  --ashoka-navy: #000080;
  --ashoka-blue: #0033CC;
  --ashoka-blue-light: #1A4FC4;

  --secondary-color: var(--india-green);
  --secondary-dark: var(--india-green-dark);
  --secondary-light: var(--india-green-light);

  --gold-color: #FFD700;
  --success-color: #25d366;
  --success-dark: #128c7e;

  --text-color: #1a1a1a;
  --text-light: #444;
  --text-muted: #6c757d;
  --text-white: #ffffff;
  --text-light-gray: #c8c8c8;

  --light-bg: #FFF8F0;
  --body-bg: #F5F0E8;
  --white-bg: #ffffff;
  --dark-bg: #0A0A1A;
  --darker-bg: #0F0F2A;
  --black-bg: #000010;

  --border-light: #E8D5B0;
  --border-lighter: #F2E8D0;
  --border-dark: #1A1A3A;

  --gradient-primary: linear-gradient(135deg, #FF9933, #E8870A);
  --gradient-primary-reverse: linear-gradient(175deg, #FF9933 50%, #E8870A 50%);
  --gradient-header: linear-gradient(180deg, #FFFFFF 0%, #FFF8F0 60%, #FFF0DC 100%);
  --gradient-navbar: linear-gradient(90deg, #FF9933 0%, #E8870A 20%, #2A1A00 35%, #000080 50%, #0D3300 65%, #138808 80%, #0D6B05 100%);
  --gradient-footer: linear-gradient(180deg, #0A0A1A 0%, #0F0F2A 100%);
  --gradient-footer-cta: linear-gradient(135deg, #FF9933, #E8870A);
  --gradient-copyright: linear-gradient(135deg, #000010, #0A0A1A);
  --gradient-tiranga: linear-gradient(180deg, #FF9933 33.3%, #FFFFFF 33.3%, #FFFFFF 66.6%, #138808 66.6%);

  --facebook-color: #3b5998;
  --facebook-hover: #4267b2;
  --twitter-color: #55acee;
  --twitter-hover: #1da1f2;
  --instagram-color: #d6249f;
  --instagram-hover: #e4405f;
  --youtube-color: #ff0000;
  --youtube-hover: #ff6b6b;
  --android-color: #a4c639;
  --android-hover: #8bc34a;

  --supporter-primary: #FF9933;
  --supporter-light: #FFD9A8;

  --shadow-light: rgba(255, 153, 51, 0.08);
  --shadow-medium: rgba(0, 0, 128, 0.12);
  --shadow-dark: rgba(0, 0, 0, 0.18);
  --shadow-darker: rgba(0, 0, 0, 0.25);
  --shadow-darkest: rgba(0, 0, 0, 0.35);

  --overlay-light: rgba(255, 255, 255, 0.1);
  --overlay-medium: rgba(255, 255, 255, 0.2);
  --overlay-dark: rgba(0, 0, 80, 0.55);
  --overlay-darker: rgba(0, 0, 60, 0.65);
  --overlay-darkest: rgba(0, 0, 40, 0.75);
  --primary-color-overlay: rgba(255, 153, 51, 0.7);

  --form-bg: #FFFDF5;
  --form-border: #FFD700;

  --ticker-bg: #FF9933;
  --ticker-border: #138808;
  --ticker-label-bg: #138808;
  --ticker-text: #fff;
  --ticker-hover: #FFD700;
  --ticker-dot: #FF9933;
}

/*--------------------------------------------------------------
# Base Typography
--------------------------------------------------------------*/
body {
  font-family: "Teko", sans-serif;
  font-weight: 400;
  color: var(--text-color);
  background-color: var(--body-bg);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 153, 51, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(19, 136, 8, 0.04) 0%, transparent 50%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Bakbak One", sans-serif;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

a:hover {
  color: var(--india-green);
}

/*--------------------------------------------------------------
# Section Heading — Tiranga stripe accent
--------------------------------------------------------------*/
.section-heading {
  color: var(--text-white);
  background: linear-gradient(135deg, #FF9933 0%, #E8870A 40%, #138808 100%);
  padding: 8px 15px;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(255, 153, 51, 0.3);
}

.section-heading::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-color);
}

.section-heading span {
  background-color: var(--white-bg);
  padding: 0 15px;
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Card
--------------------------------------------------------------*/
.card-custom {
  background: var(--white-bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 10px var(--shadow-light);
  border-top: 3px solid var(--primary-color);
}

.navbar-margin-pusher {
  margin-top: 0px;
}

/*--------------------------------------------------------------
# News Ticker — Green label, saffron bar (Tiranga feel)
--------------------------------------------------------------*/
.news-ticker-bar {
  background: var(--primary-color);
  height: 45px;
  display: flex;
  align-items: center;
  padding: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(255, 153, 51, 0.3);
  z-index: 1000;
  border-bottom: 3px solid var(--india-green);
}

.news-ticker-bar::before {
  display: none;
}

.ticker-label {
  background: var(--india-green);
  color: #fff;
  padding: 0 15px 0 20px;
  font-weight: 500;
  font-family: "Bakbak One", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  text-transform: capitalize;
  clip-path: none;
  margin-right: -1px;
}

.ticker-label i {
  margin-right: 8px;
  font-size: 1.1rem;
  animation: none;
}

.ticker-scroll-area {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  border-left: 3px solid var(--ashoka-navy);
}

.ticker-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-move 40s linear infinite;
  height: 100%;
}

.ticker-item {
  padding: 0 15px;
  font-size: 1rem;
  color: #1a1a1a;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.ticker-item a {
  color: var(--ashoka-navy);
  text-decoration: none;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
}

.ticker-item a:hover {
  color: var(--india-green);
  text-decoration: none;
}

.ticker-item i {
  color: var(--primary-color);
  font-size: 6px !important;
  margin-right: 8px !important;
  opacity: 0.9;
  vertical-align: middle;
  margin-top: -1px;
}

.news-ticker-bar:hover .ticker-content {
  animation-play-state: paused !important;
}

@keyframes ticker-move {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 767px) {
  .news-ticker-bar { height: 35px; }
  .ticker-label { font-size: 1rem; padding: 0 10px; padding-right: 20px; }
  .ticker-label i { font-size: 1rem; margin-right: 6px; }
  .ticker-item { font-size: 0.85rem; padding: 0 15px; }
}

/*--------------------------------------------------------------
# Logo — Header & Footer
--------------------------------------------------------------*/
.header-logo {
  display: block;
  width: 100%;
  height: auto;
  padding: 5px 0;
}

.header-logo img {
  width: 100%;
  height: auto;
  min-height: 90px;
  max-height: 130px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

@media (max-width: 1199px) {
  .header-logo img { min-height: 85px; max-height: 120px; }
}
@media (max-width: 991px) {
  .header-logo img { min-height: 80px; max-height: 110px; }
}
@media (max-width: 767px) {
  .header-logo { text-align: center; }
  .header-logo img {
    min-height: 90px;
    max-height: 120px;
    object-position: center center;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .header-logo img { min-height: 85px; max-height: 110px; }
}

/*--------------------------------------------------------------
# Mobile Nav Links
--------------------------------------------------------------*/
.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.25s ease;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-color);
  border-radius: 0 3px 3px 0;
  transform: scaleY(0);
  transition: transform 0.25s ease;
}

.mobile-nav-link:hover {
  color: var(--gold-color) !important;
  padding-left: 26px;
  background: rgba(255, 153, 51, 0.12);
}

.mobile-nav-link:hover::before {
  transform: scaleY(1);
}

.mobile-nav-link i {
  margin-right: 12px;
  width: 20px;
  text-align: center;
  color: var(--primary-color);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.accordion-button {
  color: var(--text-white);
  background-color: transparent;
  border: none;
  padding: 15px 0;
  border-bottom: 1px solid var(--overlay-light);
  font-size: 0.95rem;
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  color: var(--gold-color);
  background-color: transparent;
  box-shadow: none;
}

.accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-body {
  padding-left: 20px;
}

.accordion-item {
  background-color: transparent;
  border: none;
}

/*--------------------------------------------------------------
# Google Translate
--------------------------------------------------------------*/
.google-translate-container {
  margin-top: 8px;
  padding: 5px 0;
  border-top: 1px solid var(--overlay-light);
}

.google-translate-container .skiptranslate {
  display: block !important;
}

#google_translate_element {
  position: relative;
}

#google_translate_element .goog-te-gadget {
  font-family: inherit;
  font-size: 11px;
  color: var(--text-white);
}

#google_translate_element .goog-te-gadget-simple {
  background-color: var(--overlay-light);
  border: 1px solid var(--overlay-medium);
  border-radius: 4px;
  padding: 4px 6px;
  font-size: 11px;
  line-height: 1.2;
  display: inline-block;
  cursor: pointer;
  zoom: 1;
  min-width: 100px;
}

#google_translate_element .goog-te-gadget-simple:hover {
  background-color: var(--overlay-medium);
}

#google_translate_element .goog-te-gadget-simple .goog-te-menu-value {
  color: var(--text-white);
  font-size: 11px;
}

#google_translate_element .goog-te-gadget-simple .goog-te-menu-value span {
  color: var(--text-white) !important;
}

#google_translate_element .goog-te-gadget-simple .goog-te-menu-value:before {
  content: '\f0ac';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 5px;
  color: var(--text-white);
  font-size: 10px;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0px !important;
}

@media (max-width: 768px) {
  .google-translate-container { text-align: center; margin-top: 10px; }
  #google_translate_element .goog-te-gadget-simple { min-width: 80px; font-size: 10px; padding: 3px 5px; }
}

/*--------------------------------------------------------------
# Floating Action Buttons
--------------------------------------------------------------*/
.floating-buttons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-btn-problem {
  background: linear-gradient(135deg, #FF9933, #E8870A);
  color: var(--text-white);
  border-radius: 25px;
  padding: 12px 20px;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
  transition: all 0.3s ease;
}

.floating-btn-problem:hover {
  background: linear-gradient(135deg, #E8870A, #FF9933);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 153, 51, 0.5);
}

.floating-btn-whatsapp {
  background-color: var(--success-color);
  color: var(--text-white);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px var(--shadow-dark);
  transition: all 0.3s ease;
}

.floating-btn-whatsapp:hover {
  background-color: var(--success-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-darker);
}

.floating-btn-donate {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1050;
  background: linear-gradient(135deg, #138808, #0D6B05);
  color: var(--text-white);
  border-radius: 25px;
  padding: 12px 20px;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(19, 136, 8, 0.4);
  transition: all 0.3s ease;
}

.floating-btn-donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(19, 136, 8, 0.5);
  color: var(--text-white);
  background: linear-gradient(135deg, #0D6B05, #138808);
}

/*--------------------------------------------------------------
# Enhanced Header — White with Tiranga border
--------------------------------------------------------------*/
.header-section {
  background: var(--gradient-header);
  padding: 15px 0;
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(90deg, #FF9933 33.3%, #FFFFFF 33.3%, #FFFFFF 66.6%, #138808 66.6%) 1;
  box-shadow: 0 4px 20px rgba(255, 153, 51, 0.15);
  position: relative;
  z-index: 1030;
}

.header-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF9933 33.3%, #FFFFFF 33.3%, #FFFFFF 66.6%, #138808 66.6%);
  z-index: 2;
}

.dropdown-menu {
  z-index: 1050 !important;
  position: absolute;
}

.header-title {
  text-align: center;
}

.main-title {
  font-size: 2.8rem;
  margin: 0;
  padding: 0;
  line-height: 1.1;
  text-shadow: 2px 2px 6px rgba(255, 153, 51, 0.2);
  color: var(--primary-color);
  background: linear-gradient(135deg, #FF9933, #E8870A, #138808);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  background-clip: text;
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: "liga" on, "calt" on;
  -moz-font-feature-settings: "liga" on, "calt" on;
  font-feature-settings: "liga" on, "calt" on;
}

@supports not (-webkit-background-clip: text) {
  .main-title { background: none; color: var(--primary-color); }
}

.subtitle {
  font-size: 1.1rem;
  color: var(--india-green);
  margin: 5px 0 0 0;
  font-weight: 500;
  letter-spacing: 1px;
}

.header-right-section {
  text-align: center;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-color);
}

.contact-item i {
  color: var(--primary-dark);
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

.header-social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.header-social-icons a {
  color: var(--text-white);
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF9933, #E8870A);
  box-shadow: 0 3px 10px rgba(255, 153, 51, 0.35);
  flex-shrink: 0;
}

.header-social-icons a:nth-child(even) {
  background: linear-gradient(135deg, #138808, #0D6B05);
  box-shadow: 0 3px 10px rgba(19, 136, 8, 0.35);
}

.header-social-icons a:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 128, 0.3) !important;
  background: linear-gradient(135deg, #000080, #0033CC) !important;
}

.header-bottom-bar {
  background: linear-gradient(135deg, #FF9933 0%, #E8870A 50%, #D4760A 100%);
  padding: 10px 0;
  color: var(--text-white);
  border-bottom: 3px solid var(--india-green);
  position: relative;
}

.header-bottom-bar::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ashoka-navy);
}

.header-quick-links {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.quick-link-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
}

.quick-link-item i {
  margin-right: 8px;
  color: var(--gold-color);
}

@media (max-width: 1199.98px) {
  .header-social-icons { gap: 6px; }
  .header-social-icons a { width: 32px; height: 32px; font-size: 0.9rem; }
}
@media (max-width: 991.98px) {
  .main-title { font-size: 2.2rem; }
  .header-social-icons { gap: 8px; flex-wrap: wrap; max-width: 200px; margin: 0 auto; }
}
@media (max-width: 767.98px) {
  .main-title { font-size: 1.8rem; }
  .subtitle { font-size: 1rem; }
  .header-social-icons { gap: 10px; flex-wrap: wrap; }
  .header-social-icons a { width: 38px; height: 38px; font-size: 1.1rem; }
}
@media (max-width: 575.98px) {
  .main-title { font-size: 1.5rem; }
  .contact-item { font-size: 0.8rem; }
  .header-social-icons { justify-content: center; }
}

/*--------------------------------------------------------------
# Enhanced Navigation — Tiranga gradient navbar
--------------------------------------------------------------*/
.main-navbar-container {
  background: linear-gradient(90deg,
    #FF9933 0%, #E8870A 18%, #2A1A00 33%, #000080 50%, #0D3300 66%, #138808 82%, #0D6B05 100%
  );
  border-bottom: 3px solid var(--gold-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.main-navbar-container .nav-link {
  color: #fff !important;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 15px 10px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 5px;
  margin: 0 1px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.3px;
}

.main-navbar-container .nav-link:hover,
.main-navbar-container .dropdown:hover .nav-link {
  background: rgba(255, 215, 0, 0.25);
  color: var(--gold-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dropdown-menu {
  background-color: var(--white-bg);
  border: none;
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--india-green);
  box-shadow: 0 8px 25px rgba(0, 0, 128, 0.15);
  border-radius: 8px;
  padding: 10px 0;
  z-index: 1050 !important;
  position: absolute;
  display: none;
}

.dropdown-menu.show {
  display: block;
}

.dropdown {
  position: relative;
}

.admin-topbar {
  position: relative;
  z-index: 1040;
}

.dropdown-item {
  color: var(--ashoka-navy);
  font-weight: 500;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, #FFF8F0, #FFF0DC);
  color: var(--india-green);
  padding-left: 25px;
  border-left: 3px solid var(--primary-color);
}

/*--------------------------------------------------------------
# Offcanvas Mobile Nav — Deep Patriotic
--------------------------------------------------------------*/
.offcanvas {
  background: linear-gradient(180deg, #000033 0%, #000080 40%, #001A00 70%, #003300 100%);
  width: 300px !important;
  border-right: none;
  box-shadow: 5px 0 30px rgba(0, 0, 0, 0.6);
}

.offcanvas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #FF9933 33.3%, #FFFFFF 33.3%, #FFFFFF 66.6%, #138808 66.6%);
  z-index: 10;
}

@keyframes shimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.offcanvas-header {
  padding: 1.5rem 1.5rem 1.2rem;
  background: rgba(255, 153, 51, 0.15);
  border-bottom: 1px solid rgba(255, 153, 51, 0.3);
  position: relative;
}

.offcanvas-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FF9933, transparent);
}

.offcanvas-title {
  color: var(--text-white);
  font-weight: 700;
  display: flex;
  align-items: center;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}

.offcanvas-title img {
  filter: drop-shadow(0 2px 4px rgba(255, 153, 51, 0.5));
}

.offcanvas-close-btn {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.25s ease;
  filter: none !important;
  opacity: 1 !important;
}

.offcanvas-close-btn i {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
  display: block;
  filter: none !important;
  opacity: 1 !important;
}

.offcanvas-close-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: rotate(90deg);
}

.offcanvas-close-btn:focus {
  outline: 2px solid rgba(255, 153, 51, 0.5);
  outline-offset: 2px;
}

.mobile-nav-toggle {
  position: absolute;
  top: 220px;
  right: 20px;
  z-index: 1060;
  background: linear-gradient(135deg, #FF9933, #E8870A);
  border: none;
  color: var(--text-white);
  padding: 15px 18px;
  border-radius: 10px;
  font-size: 1.4rem;
  box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
  transition: all 0.3s ease;
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  color: var(--text-white);
}

.offcanvas-body {
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 153, 51, 0.4) transparent;
}

.offcanvas-body::-webkit-scrollbar { width: 3px; }
.offcanvas-body::-webkit-scrollbar-track { background: transparent; }
.offcanvas-body::-webkit-scrollbar-thumb { background: rgba(255, 153, 51, 0.5); border-radius: 3px; }

.offcanvas-body .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  padding: 14px 20px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  text-decoration: none;
  letter-spacing: 0.3px;
  position: relative;
}

.offcanvas-body .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-color);
  border-radius: 0 3px 3px 0;
  transform: scaleY(0);
  transition: transform 0.25s ease;
}

.offcanvas-body .nav-link:hover {
  background: rgba(255, 153, 51, 0.14);
  color: var(--gold-color);
  padding-left: 26px;
}

.offcanvas-body .nav-link:hover::before {
  transform: scaleY(1);
}

.offcanvas-body .nav-link i {
  margin-right: 12px;
  width: 20px;
  text-align: center;
  color: var(--primary-color);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.offcanvas-body .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.offcanvas-body .accordion-button {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  padding: 14px 20px !important;
  border: none !important;
  box-shadow: none !important;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
  width: 100%;
  text-align: left;
}

.offcanvas-body .accordion-button:not(.collapsed) {
  background: rgba(255, 153, 51, 0.15);
  color: var(--gold-color);
  box-shadow: none;
}

.offcanvas-body .accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.offcanvas-body .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF9933'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.offcanvas-body .accordion-body {
  padding: 4px 0;
  background: rgba(0, 0, 0, 0.3);
  border-left: 3px solid rgba(255, 153, 51, 0.4);
  margin-left: 20px;
}

.offcanvas-body .accordion-body .nav-link {
  padding: 12px 16px !important;
  font-size: 0.875rem !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: transparent;
  letter-spacing: 0.2px;
}

.offcanvas-body .accordion-body .nav-link::before {
  content: '›';
  margin-right: 8px;
  color: var(--primary-color);
  font-size: 1.1rem;
  line-height: 1;
  position: static;
  transform: none;
  width: auto;
  background: none;
}

.offcanvas-body .accordion-body .nav-link:hover {
  color: var(--gold-color);
  background: rgba(255, 153, 51, 0.1);
  padding-left: 26px;
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
.main_slider {
  margin-top: 0;
}

.main_slider .carousel-item {
  height: 600px;
  background-color: var(--black-bg);
}

.main_slider .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
}

.main_slider .carousel-caption {
  bottom: 20px;
  text-shadow: 0 1px 3px var(--overlay-dark);
}

.main-navbar-container + .main_slider {
  margin-top: 0;
}

@media (max-width: 991.98px) {
  .main_slider .carousel-item { height: 300px; }
}
@media (max-width: 767.98px) {
  .main_slider .carousel-item { height: 200px; }
}

/*--------------------------------------------------------------
# Main Grid & Content
--------------------------------------------------------------*/
.marquee-box {
  border: 1px solid var(--border-lighter);
  padding: 10px;
  border-radius: 5px;
  background: var(--light-bg);
}

.marquee-box p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.quick-action-buttons .btn-action {
  background: var(--primary-color);
  color: var(--text-white);
  font-weight: 500;
  padding: 10px 20px;
  border: none;
  flex-grow: 1;
}

.member-card {
  background: linear-gradient(135deg, #FF9933, #E8870A);
  color: var(--text-white);
  text-align: center;
  padding: 1rem;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.member-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--india-green);
}

.member-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
}

.member-card h5 {
  font-family: "Teko", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0;
}

.member-card p {
  font-size: 1rem;
  opacity: 0.85;
}

.view-all-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #FF9933, #138808);
  color: var(--text-white);
  padding: 8px;
  margin-top: 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: linear-gradient(135deg, #138808, #FF9933);
  color: var(--text-white);
}

/*--------------------------------------------------------------
# Owl Carousel (Gallery)
--------------------------------------------------------------*/
.post-slide {
  margin: 0 15px;
}

.post-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.post-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease 0s;
}

.post-slide:hover .post-img img {
  transform: scale(1.1);
}

#news-slider .owl-buttons .owl-prev,
#news-slider .owl-buttons .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  color: var(--text-white);
  padding: 5px 12px !important;
  border-radius: 50%;
  opacity: 0.7;
  transition: opacity 0.3s;
}

#news-slider .owl-buttons .owl-prev:hover,
#news-slider .owl-buttons .owl-next:hover { opacity: 1; }

#news-slider .owl-buttons .owl-prev { left: -25px; }
#news-slider .owl-buttons .owl-next { right: -25px; }

/*--------------------------------------------------------------
# Enhanced Footer — Deep patriotic navy night
--------------------------------------------------------------*/
.footer-section {
  background: linear-gradient(180deg, #050518 0%, #0A0A28 50%, #050A05 100%);
  position: relative;
  color: var(--text-light-gray);
  overflow: hidden;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #FF9933 33.3%, #FFFFFF 33.3%, #FFFFFF 66.6%, #138808 66.6%);
  z-index: 5;
}

.footer-section::after {
  display: none;
}

.footer-cta {
  border-bottom: 1px solid rgba(255, 153, 51, 0.25);
  position: relative;
}

.footer-cta::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 153, 51, 0.4);
  opacity: 0.5;
}

.single-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  border-radius: 16px;
  transition: all 0.35s ease;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 153, 51, 0.12);
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}

.single-cta::before {
  display: none;
}

.single-cta:hover {
  transform: translateY(-6px);
  background: rgba(255, 153, 51, 0.06);
  border-color: rgba(255, 153, 51, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.single-cta:hover::before { opacity: 1; }

.cta-icon {
  margin-bottom: 16px;
  width: 64px;
  height: 64px;
  background: rgba(255, 153, 51, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 153, 51, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.single-cta i {
  font-size: 1.6rem;
  color: var(--gold-color);
  background: none;
  -webkit-text-fill-color: unset;
}

.cta-text h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-text span {
  color: var(--text-light-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-widget-heading h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-widget-heading h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #FF9933, #FFD700, #138808);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links li a {
  color: #8892a4;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  padding: 4px 0;
  font-size: 0.9rem;
  text-decoration: none;
  position: relative;
}

.footer-links li a:hover {
  color: var(--primary-light);
  padding-left: 8px;
}

.footer-links li a i {
  margin-right: 8px;
  color: var(--primary-color);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.footer-text p {
  line-height: 1.85;
  color: #8892a4;
  font-size: 0.92rem;
}

.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-icon a {
  color: #fff;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.footer-social-icon a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.footer-social-icon a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.footer-social-icon a:hover::before { opacity: 1; }

.facebook-bg  { background: linear-gradient(135deg, #3b5998, #4267b2); }
.twitter-bg   { background: linear-gradient(135deg, #1da1f2, #55acee); }
.instagram-bg { background: linear-gradient(135deg, #833ab4, #d6249f, #f77737); }
.youtube-bg   { background: linear-gradient(135deg, #c4302b, #ff0000); }
.android-bg   { background: linear-gradient(135deg, #669900, #a4c639); }

.facebook-widget {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* Footer Logo */
.footer-logo img {
  filter: drop-shadow(0 4px 12px rgba(255, 153, 51, 0.25));
  transition: filter 0.3s ease;
  width: auto;
  height: auto;
  min-height: 100px;
  max-height: 160px;
  max-width: 100%;
  display: block;
}

.footer-logo img:hover {
  filter: drop-shadow(0 6px 18px rgba(255, 153, 51, 0.45));
}

@media (max-width: 991px) {
  .footer-logo img { min-height: 90px; max-height: 140px; margin: 0 auto; }
}
@media (max-width: 575px) {
  .footer-logo img { min-height: 80px; max-height: 120px; margin: 0 auto; }
}

.copyright-area {
  background: rgba(0, 0, 10, 0.7);
  padding: 18px 0;
  border-top: 1px solid rgba(255, 153, 51, 0.2);
  position: relative;
}

.copyright-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FF9933 33%, #FFFFFF 50%, #138808 66%, transparent);
  opacity: 0.6;
}

.copyright-text p {
  margin: 0;
  font-size: 0.87rem;
  color: #6b7280;
}

.copyright-text a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.copyright-text a:hover { color: var(--gold-color); }

.footer-menu ul { margin: 0; padding: 0; }
.footer-menu .list-inline-item { margin-right: 0; }
.footer-menu .list-inline-item + .list-inline-item { margin-left: 14px; }

.footer-menu .list-inline-item a {
  font-size: 0.82rem;
  color: #6b7280;
  transition: color 0.25s ease;
  text-decoration: none;
}

.footer-menu .list-inline-item a:hover { color: var(--primary-light); }

.footer-bottom {
  background: rgba(0, 0, 10, 0.8);
  color: #6b7280;
  text-align: center;
  padding: 12px 0;
  font-size: 0.83rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom a {
  color: var(--gold-color);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover { color: var(--primary-color); }

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/
@media (max-width: 991.98px) {
  .navbar-margin-pusher { margin-top: 75px; }
  .main-title { font-size: 2.2rem; }
  .header-logo img { height: 80px; min-height: 80px; }
  .header-contact { margin-bottom: 10px; }
  .contact-item { font-size: 0.8rem; margin-bottom: 5px; }
  .header-social-icons { gap: 8px; }
  .header-social-icons a { width: 35px; height: 35px; font-size: 1rem; }
  .header-quick-links { justify-content: center; gap: 15px; }
  .quick-link-item { font-size: 0.8rem; }
}

@media (max-width: 767.98px) {
  .main-title { font-size: 1.8rem; }
  .subtitle { font-size: 1rem; }
  .header-logo img { height: 80px; min-height: 80px; }
  .header-social-icons a { width: 32px; height: 32px; font-size: 0.9rem; }
  .header-quick-links { flex-direction: column; gap: 10px; }

  .footer-cta .row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 4px;
  }
  .footer-cta .col-xl-3 { padding: 0 !important; width: 100% !important; max-width: 100% !important; }
  .single-cta { flex-direction: column; align-items: center; text-align: center; padding: 16px 10px; margin-bottom: 0; border-radius: 12px; gap: 10px; height: 100%; }
  .single-cta:hover { transform: translateY(-3px); }
  .cta-icon { margin-bottom: 0; width: 44px; height: 44px; min-width: 44px; flex-shrink: 0; }
  .single-cta i { font-size: 1.15rem; }
  .cta-text { flex: 1; min-width: 0; width: 100%; }
  .cta-text h4 { font-size: 0.72rem; margin-bottom: 4px; letter-spacing: 0.5px; white-space: normal; line-height: 1.3; }
  .cta-text span { font-size: 0.75rem; line-height: 1.4; display: block; white-space: normal; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; }
  .footer-social-icon a { width: 38px; height: 38px; font-size: 0.95rem; }
}

@media (max-width: 400px) {
  .footer-cta .row { grid-template-columns: 1fr 1fr; gap: 6px; }
  .single-cta { padding: 12px 8px; }
  .cta-text h4 { font-size: 0.68rem; }
  .cta-text span { font-size: 0.7rem; }
}

/*--------------------------------------------------------------
# User Apply Form Page
--------------------------------------------------------------*/
.form-container {
  background-color: #ffffff;
  box-shadow: 0 5px 25px rgba(0, 0, 128, 0.1);
  border-top: 4px solid var(--primary-color);
  border-bottom: 4px solid var(--india-green);
}

.form-field-title {
  font-weight: 500;
}

.image-uploader {
  border: 2px dashed var(--primary-color);
  border-radius: 8px;
  position: relative;
  width: 150px;
  height: 150px;
  margin: auto;
  background-color: var(--light-bg);
  transition: border-color 0.3s;
}

.image-uploader:hover {
  border-color: var(--india-green);
}

.uploader-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  color: #888;
}

.uploader-empty p {
  margin: 0;
  font-size: 0.9rem;
}

.uploader-preview {
  width: 100%;
  height: 100%;
  position: relative;
}

.uploader-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.uploader-controls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 6px;
}

.uploader-preview:hover .uploader-controls {
  opacity: 1;
}

.payment-info-section {
  background-color: #FFFDF0;
  border-left: 5px solid var(--gold-color);
}

.btn-submit-grad {
  background: linear-gradient(135deg, #FF9933 0%, #E8870A 50%, #138808 100%);
  color: white;
  font-weight: bold;
  border: none;
  padding: 12px 40px;
  font-size: 1.2rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(255, 153, 51, 0.35);
}

.btn-submit-grad:hover {
  transform: scale(1.05);
  color: white;
  box-shadow: 0 6px 20px rgba(19, 136, 8, 0.4);
}

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-darkest);
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .form-field-title { text-align: left; margin-bottom: 5px; }
}

/*--------------------------------------------------------------
# Gallery Page
--------------------------------------------------------------*/
.gallery-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 128, 0.1);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  height: 250px;
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--india-green);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 153, 51, 0.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

#galleryModal .modal-dialog { max-width: 90vw; }
#galleryModal .modal-content { box-shadow: none; }
#galleryModal .modal-body img { border-radius: 5px; max-height: 90vh; }

/*--------------------------------------------------------------
# ID Card Download
--------------------------------------------------------------*/
.download-card {
  background-color: #fff;
  border: 1px solid var(--border-light);
  border-top: 5px solid var(--primary-color);
  margin-top: 2rem;
}

.btn-download-primary {
  background: linear-gradient(135deg, #FF9933, #E8870A);
  color: white;
  font-weight: 500;
}

.btn-download-primary:hover {
  background: linear-gradient(135deg, #138808, #0D6B05);
  color: white;
}

.btn-download-secondary {
  background: linear-gradient(135deg, #138808, #0D6B05);
  color: white;
  font-weight: 500;
}

.btn-download-secondary:hover {
  background: linear-gradient(135deg, #FF9933, #E8870A);
  color: white;
}

/*--------------------------------------------------------------
# Events Page
--------------------------------------------------------------*/
.event-card {
  border: none;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  border-top: 4px solid var(--primary-color);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 128, 0.12);
}

.event-image-container {
  height: 300px;
  overflow: hidden;
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-card:hover .event-image { transform: scale(1.05); }

.event-details { padding: 1.5rem; }

.event-title {
  font-family: "Bakbak One", sans-serif;
  color: var(--primary-color);
  font-size: 1.75rem;
}

.event-meta { color: #6c757d; font-size: 0.9rem; }
.event-meta span i { color: var(--india-green); }

.event-description {
  max-height: 200px;
  overflow-y: auto;
  padding-right: 10px;
  font-size: 1rem;
  line-height: 1.6;
}

.event-description::-webkit-scrollbar { width: 6px; }
.event-description::-webkit-scrollbar-track { background: #f1f1f1; }
.event-description::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 3px; }
.event-description::-webkit-scrollbar-thumb:hover { background: var(--india-green); }

.event-btn {
  background: linear-gradient(135deg, #FF9933, #E8870A);
  border: none;
  color: #fff;
  font-weight: bold;
}

.event-btn:hover {
  background: linear-gradient(135deg, #138808, #0D6B05);
  color: #fff;
}

@media (max-width: 767.98px) {
  .event-image-container { height: 200px; }
}

/*--------------------------------------------------------------
# Supporter / Donor Cards
--------------------------------------------------------------*/
.supporter-card {
  background: linear-gradient(135deg, #FF9933, #E8870A);
  border-radius: 12px;
  padding: 1rem;
  color: white;
  box-shadow: 0 5px 20px rgba(255, 153, 51, 0.35);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.supporter-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--india-green);
}

.supporter-card:hover { transform: translateY(-5px); }

.supporter-img-container {
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 10px;
  border-radius: 8px;
  min-height: 250px;
  overflow: hidden;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.supporter-img-container img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 5px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .supporter-img-container { min-height: 200px; padding: 8px; }
}

.supporter-body { text-align: center; }

.supporter-name {
  background-color: rgba(0, 0, 0, 0.12);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.supporter-name h5 {
  margin: 0;
  font-weight: 600;
  font-size: 1.25rem;
  font-family: "Poppins", sans-serif;
}

.supporter-details .detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
  padding: 0 0.5rem;
  font-weight: 600;
  font-size: 1rem;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact-info-wrapper {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
  border-left: 4px solid var(--primary-color);
  border-right: 4px solid var(--india-green);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-right: 1.5rem;
  width: 30px;
  text-align: center;
}

.contact-info-item strong {
  display: block;
  color: var(--india-green);
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 128, 0.12);
  border: 3px solid var(--primary-color);
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about-us-container {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #444;
}

.about-us-container .about-section {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 128, 0.08);
  transition: transform 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.about-us-container .about-section:nth-child(even) {
  border-left-color: var(--india-green);
}

.about-us-container .about-section:hover { transform: translateY(-5px); }

.about-us-container .about-section .section-image {
  flex: 0 0 300px;
  margin-right: 1.5rem;
}

.about-us-container .about-section .section-image img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.about-us-container .about-section .section-content { flex: 1; }

.about-us-container .about-section h4 {
  font-family: "Bakbak One", sans-serif;
  color: var(--primary-color);
  margin-bottom: 1rem;
  border-left: 4px solid var(--india-green);
  padding-left: 10px;
}

.about-us-container .about-section p,
.about-us-container .about-section li {
  margin-bottom: 1rem;
  color: #333;
}

.about-us-container .about-section strong { color: #333; }

.about-us-container ul, .about-us-container ol {
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.about-us-container ul li { list-style-type: disc; }
.about-us-container ol li { list-style-type: decimal; }

@media (max-width: 767.98px) {
  .about-us-container .about-section { flex-direction: column; }
  .about-us-container .about-section .section-image { flex: 0 0 auto; margin-right: 0; margin-bottom: 1rem; width: 100%; }
  .about-us-container .about-section .section-image img { max-height: 150px; }
}

/*--------------------------------------------------------------
# Solutions Page
--------------------------------------------------------------*/
.solution-card {
  border: 1px solid var(--border-light);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 128, 0.1);
}

.solution-card .card-img-top {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.solution-card .card-title { color: var(--primary-color); }

/*--------------------------------------------------------------
# Login Pages
--------------------------------------------------------------*/
.login-card-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

.login-card {
  border: 1px solid var(--border-light);
  border-top: 5px solid var(--primary-color);
  border-bottom: 5px solid var(--india-green);
}

.login-card .card-title {
  font-family: "Bakbak One", sans-serif;
  color: var(--primary-dark);
}

/*--------------------------------------------------------------
# Footer Bottom Credit
--------------------------------------------------------------*/
.footer-bottom {
  background-color: #000010;
  color: #aaa;
  text-align: center;
  padding: 10px 0;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--gold-color);
  font-weight: 600;
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
.dashboard-sidebar {
  min-height: 100vh;
  background: linear-gradient(180deg, #FF9933 0%, #E8870A 50%, #138808 100%);
  color: white;
}

.dashboard-content {
  min-height: 100vh;
  background: #f8f9fa;
}

.nav-link {
  color: white !important;
  border-radius: 5px;
  margin: 2px 0;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.15);
}

.table-actions { white-space: nowrap; }
.modal-lg { max-width: 90%; }

.gallery-image-container {
  position: relative;
  overflow: hidden;
}

.gallery-image-container img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.gallery-image-container:hover img { transform: scale(1.1); }

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 153, 51, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-image-container:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h6 { margin-bottom: 0.5rem; }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 60, 0.75) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-image-container:hover .gallery-overlay { opacity: 1; }

.overlay-content h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.floating-btn-problem {
  background: linear-gradient(135deg, #FF9933, #E8870A);
  color: var(--text-white);
  border-radius: 25px;
  padding: 12px 20px;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(255, 153, 51, 0.35);
  transition: all 0.3s ease;
  border: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  margin-bottom: 55px;
}

/*--------------------------------------------------------------
# Member / Team Cards
--------------------------------------------------------------*/
.card-custom .member-card a {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.card-custom .member-card a:hover {
  color: var(--gold-color);
}

.card-custom .view-all-btn {
  background: linear-gradient(135deg, #FF9933, #138808);
  color: var(--text-white);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  display: block;
  margin-top: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.card-custom .view-all-btn:hover {
  background: linear-gradient(135deg, #138808, #FF9933);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 128, 0.2);
}

/*--------------------------------------------------------------
# Objectives Slider — Premium Card Design
--------------------------------------------------------------*/
.objectives-slider-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 10px;
}

.objectives-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.objective-slide {
  min-width: 33.333%;
  padding: 8px 10px 16px;
  box-sizing: border-box;
}

@media (max-width: 992px) { .objective-slide { min-width: 50%; } }
@media (max-width: 600px) { .objective-slide { min-width: 100%; padding: 6px 6px 14px; } }

.objectives-slider-container .card-custom {
  background: #fff !important;
  border: none !important;
  border-radius: 16px !important;
  padding: 20px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 128, 0.09) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  overflow: visible !important;
  display: flex !important;
  flex-direction: column;
  outline: none !important;
  gap: 16px;
  border-top: 3px solid var(--primary-color) !important;
  border-bottom: 3px solid var(--india-green) !important;
}

.objectives-slider-container .card-custom:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 128, 0.15) !important;
}

.objective-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  background: #e8e8e8;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  display: block;
  line-height: 0;
}

.objective-image-wrapper::after { display: none; }

.objective-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
  border: none !important;
  outline: none !important;
  margin: 0;
  padding: 0;
  border-radius: 0;
}

.objectives-slider-container .card-custom:hover .objective-image { transform: scale(1.05); }

.objective-card-body {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.objective-card-body h5 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--ashoka-navy);
  margin: 0;
  line-height: 1.4;
}

.objective-card-body h5::after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, #FF9933, #FFD700, #138808);
  border-radius: 2px;
  margin-top: 8px;
}

.objective-card-body p {
  font-size: 0.84rem;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.objectives-slider-container .slider-controls {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
  padding: 0 4px;
  box-sizing: border-box;
}

.objectives-slider-container .slider-btn {
  background: linear-gradient(135deg, #FF9933, #138808);
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(255, 153, 51, 0.4);
}

.objectives-slider-container .slider-btn i { font-size: 14px; }

.objectives-slider-container .slider-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(19, 136, 8, 0.5);
}

.objectives-slider-container .slider-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.objectives-slider-container .indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.objectives-slider-container .indicator.active {
  background: var(--primary-color);
  width: 24px;
  border-radius: 4px;
}

.objectives-slider-container .indicator:hover { background: var(--india-green); }

@media (max-width: 600px) {
  .objectives-slider-container { padding: 0 2px 10px; }
  .objective-slide { min-width: 100%; padding: 4px 6px 14px; }
  .objectives-slider-container .card-custom { padding: 14px !important; gap: 12px; border-radius: 14px !important; }
  .objective-image-wrapper { border-radius: 10px; aspect-ratio: 4 / 3; }
  .objective-card-body h5 { font-size: 1rem; font-weight: 700; }
  .objective-card-body p { font-size: 0.85rem; line-height: 1.6; }
  .objectives-slider-container .slider-controls { top: 30%; padding: 0 2px; }
  .objectives-slider-container .slider-btn { width: 34px; height: 34px; min-width: 34px; }
  .objectives-slider-container .slider-indicators { margin-top: 14px; }
}

@media (max-width: 600px) {
  .section-heading { font-size: 1.4rem; margin-bottom: 20px; }
}