/* ============================================================
   LOUDSPEAKER & BAND SAMITI — GOVERNMENT STYLE CSS
   ============================================================ */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@300;400;500;600;700;800&display=swap');

/* ===== ROOT VARIABLES ===== */
:root {
  --navy: #1a3a5c;
  --navy-dark: #0f2540;
  --navy-light: #25527a;
  --saffron: #FF6600;
  --saffron-dk: #cc5200;
  --green: #138808;
  --green-lt: #1a9e0d;
  --gold: #c8960c;
  --gold-lt: #f0b429;
  --white: #ffffff;
  --off-white: #f4f6f9;
  --light-gray: #e8ecf0;
  --border: #d0d8e4;
  --text: #2c3e50;
  --text-md: #bfbfbf;
  --text-lt: #718096;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 35px rgba(0, 0, 0, 0.18);
  --radius: 8px;
  --radius-sm: 4px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
  --font: 'Noto Sans Devanagari', 'Mangal', Arial, sans-serif;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy-dark);
}

h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
}

h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

p {
    margin-bottom: 0.9rem;
    color: #353535;
}

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

.section-padding {
  padding: 30px 0 0 0;
}

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

.section-pad-sm {
  padding: 45px 0;
}

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

.text-navy {
  color: var(--navy);
}

.text-saffron {
  color: var(--saffron);
}

.text-green {
  color: var(--green);
}

.text-white {
  color: var(--white) !important;
}

.bg-navy {
  background: var(--navy);
}

.bg-off {
  background: var(--off-white);
}

.bg-tricolor {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--white) 50%, var(--green) 100%);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  font-family: var(--font);
  text-decoration: none;
  white-space: nowrap;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(26, 58, 92, 0.35);
}

.btn-saffron {
  background: var(--saffron);
  color: #fff;
  border-color: var(--saffron);
}

.btn-saffron:hover {
  background: var(--saffron-dk);
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(255, 102, 0, 0.35);
}

.btn-green {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

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

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--navy);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
}

/* ===== SECTION TITLE ===== */
.sec-title {
  text-align: center;
  margin-bottom: 5px;
}

.sec-title h2 {
  color: var(--navy-dark);
  margin-bottom: 10px;
}

.sec-title p {
  color: var(--text-lt);
  /* max-width: 620px;
  margin: 0 0 14px; */
  font-size: 1rem;
}

.title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.title-line::before,
.title-line::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: var(--border);
}

.title-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--saffron);
}

.sec-title.left-align {
  text-align: left;
}

.sec-title.left-align .title-line {
  justify-content: flex-start;
}

.sec-title.left-align .title-line::before {
  display: none;
}

/* ===== GOOGLE TRANSLATE ===== */

/* Target both id variations */
#gte, #google_translate_element { display: inline-block; vertical-align: middle; }

/* Hide the "Select Language" label text & logo */
#gte .goog-te-gadget-simple,
#google_translate_element .goog-te-gadget-simple {
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  border-radius: 4px !important;
  padding: 3px 8px !important;
  font-size: 0.8rem !important;
  cursor: pointer !important;
}
#gte .goog-te-gadget-simple span,
#google_translate_element .goog-te-gadget-simple span {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.8rem !important;
}
#gte .goog-te-gadget-simple .goog-te-menu-value span:first-child,
#google_translate_element .goog-te-gadget-simple .goog-te-menu-value span:first-child {
  color: #fff !important;
}
/* Hide Google logo/branding inside widget */
#gte .goog-te-gadget-icon,
#google_translate_element .goog-te-gadget-icon { display: none !important; }

/* Select dropdown style (SIMPLE layout fallback) */
#gte select, #google_translate_element select {
  background: rgba(255,255,255,0.1) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  border-radius: 4px !important;
  padding: 4px 8px !important;
  font-size: 0.8rem !important;
  cursor: pointer !important;
  outline: none !important;
  max-width: 130px;
}
#gte select option, #google_translate_element select option {
  background: #1a3a5c;
  color: #fff;
}

/* Hide Google Translate top banner completely */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate { display: none !important; height: 0 !important; }
.skiptranslate { font-size: 0 !important; }

/* Prevent body from shifting down */
body { top: 0 !important; }
html body { margin-top: 0 !important; }

/* ===== NATIONAL BAR (tricolor strip) ===== */
.national-bar {
  height: 5px;
  background: linear-gradient(90deg, var(--saffron) 0%, var(--saffron) 33.3%, #fff 33.3%, #fff 66.6%, var(--green) 66.6%, var(--green) 100%);
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 7px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.tb-left,
.tb-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.tb-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tb-item i {
  color: var(--gold-lt);
  font-size: 0.8rem;
}

.tb-item a {
  color: rgba(255, 255, 255, 0.82);
}

.tb-item a:hover {
  color: var(--gold-lt);
}

.tb-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
}

/* ===== HEADER ===== */
.header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.35);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}



.logo-img-wrap img {
    width: 269px;
    /* height: 100%; */
}

.logo-text h1 {
  font-size: 1rem;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.2px;
}

.logo-text span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  display: block;
}

/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav-link.active {
  border-bottom: 2px solid var(--gold-lt);
  border-radius: 0;
}

.nav-cta {
  margin-left: 8px;
}

.nav-cta .btn {
  padding: 8px 18px;
  font-size: 0.85rem;
}

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

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

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== DROPDOWN SUBMENU ===== */
.nav-menu .has-dropdown {
  position: relative;
}

.nav-arrow {
  font-size: 0.65rem !important;
  margin-left: 3px;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.has-dropdown:hover .nav-arrow,
.has-dropdown.open .nav-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 210px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  border-top: 3px solid var(--saffron);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 9999;
  list-style: none;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  white-space: nowrap;
}

.dropdown-menu li a i {
  color: var(--saffron);
  font-size: 0.82rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.dropdown-menu li a:hover {
  background: var(--off-white);
  color: var(--navy);
  padding-left: 24px;
}

.dropdown-menu li a:hover i {
  color: var(--navy);
}

/* Arrow pointer on dropdown */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 18px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid var(--saffron);
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  background: var(--saffron);
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marqueeRun 30s linear infinite;
}

.marquee-track span {
  font-size: 0.88rem;
  color: #fff;
  font-weight: 500;
  padding: 0 28px;
}

.marquee-track span i {
  margin-right: 7px;
}

@keyframes marqueeRun {
  0% {
    transform: translateX(100vw);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('../img/banner/banner-bg.png') center/cover no-repeat;
  opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(0 0 0 / 73%) 0%, rgb(21 44 69 / 28%) 100%);
}

.hero-ashok {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  opacity: 0.04;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-badge-1 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(26 58 92);
  border: 1px solid var(--gold-lt);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 150, 12, 0.2);
  border: 1px solid var(--gold-lt);
  color: var(--gold-lt);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 {
  color: #fff;
  margin-bottom: 8px;
}

.hero h1 span {
  color: var(--gold-lt);
  display: block;
  font-size: 1.1em;
}

.hero-quote {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  font-style: italic;
  border-left: 3px solid var(--saffron);
  padding-left: 14px;
  margin: 16px 0 22px;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

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

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 28px;
}

.hstat {
  text-align: center;
  flex: 1;
  padding: 0 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.hstat:last-child {
  border-right: none;
}

.hstat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold-lt);
  display: block;
  line-height: 1;
}

.hstat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* Hero Right: Image Stack */
.hero-img-stack {
  position: relative;
}

.hero-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(to top, rgba(15, 37, 64, 0.6) 0%, transparent 60%);
}

.hero-img-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(15, 37, 64, 0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 14px 18px;
  border-left: 3px solid var(--gold-lt);
}

.hero-img-caption h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.hero-img-caption p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin: 0;
}

.hero-badge-float {
  position: absolute;
  top: -15px;
  right: -15px;
  background: var(--saffron);
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
  border: 3px solid #fff;
}

.hero-badge-float i {
  font-size: 1.2rem;
  margin-bottom: 3px;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 60px 0 45px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1569982175971-d92b01cf8694?w=1400&q=70') center/cover;
  opacity: 0.06;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb a:hover {
  color: var(--gold-lt);
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumb .cur {
  color: var(--gold-lt);
}

/* ===== ABOUT SECTION ===== */
.about-img-col {
  position: relative;
}

.about-main-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-stamp {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  color: #fff;
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gold-lt);
}

.about-stamp .big {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-lt);
  display: block;
  line-height: 1;
}

.about-stamp .small {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

.about-text-col {
  padding-left: 30px;
}

.about-feat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.af-icon {
  min-width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(26, 58, 92, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
}

.af-text h4 {
  font-size: 0.95rem;
  color: var(--navy-dark);
  margin-bottom: 2px;
}

.af-text p {
  font-size: 0.85rem;
  color: var(--text-lt);
  margin: 0;
}

/* ===== VISION MISSION with IMAGE ===== */
.vm-section {
  background: var(--navy-dark);
}

.vm-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
}

.vm-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.vm-card:hover .vm-card-img {
  transform: scale(1.04);
}

.vm-card-body {
  background: linear-gradient(to top, rgba(15, 37, 64, 0.97) 0%, rgba(26, 58, 92, 0.85) 100%);
  padding: 25px;
  color: #fff;
}

.vm-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--saffron);
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vm-card.mission .vm-card-tag {
  background: var(--green);
}

.vm-card-body h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.vm-card-body p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.vm-list {
  padding: 0;
}

.vm-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.vm-list li i {
  color: var(--gold-lt);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ===== SERVICES with IMAGE ===== */
.svc-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border);
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy);
}

.svc-img {
  height: 160px;
  overflow: hidden;
  position: relative;
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.svc-card:hover .svc-img img {
  transform: scale(1.06);
}

.svc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(15, 37, 64, 0.65));
}

.svc-icon-badge {
  position: absolute;
  bottom: 12px;
  left: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--saffron);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.svc-body {
  padding: 18px 18px 20px;
}

.svc-body h3 {
  font-size: 0.98rem;
  color: var(--navy-dark);
  margin-bottom: 7px;
}

.svc-body p {
    font-size: 0.84rem;
    color: #2c2d2f;
    margin: 0;
}

.svc-num {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
}

/* ===== WHY CHOOSE US with IMAGE ===== */
.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  padding: 16px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
  border-left: 4px solid var(--navy);
  transition: var(--transition);
}

.why-item:hover {
  border-left-color: var(--saffron);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.why-icon {
  min-width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.why-text h4 {
  font-size: 0.95rem;
  color: var(--navy-dark);
  margin-bottom: 3px;
}

.why-text p {
  font-size: 0.84rem;
  color: var(--text-lt);
  margin: 0;
}

.why-img-col {
  position: relative;
}

.why-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.why-overlay-card {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--saffron);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.why-overlay-card .big {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.why-overlay-card .small {
  font-size: 0.78rem;
  opacity: 0.9;
}

/* ===== ACHIEVEMENTS ===== */
.ach-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.ach-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.ach-img {
  height: 140px;
  overflow: hidden;
}

.ach-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ach-card:hover .ach-img img {
  transform: scale(1.06);
}

.ach-body {
  padding: 16px;
  flex: 1;
}

.ach-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.ach-body h3 {
  font-size: 0.95rem;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.ach-body p {
  font-size: 0.83rem;
  color: var(--text-lt);
  margin: 0;
}

/* ===== OBJECTIVES ===== */
.obj-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.obj-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--navy);
}

.obj-num {
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.obj-text h3 {
  font-size: 0.98rem;
  color: var(--navy-dark);
  margin-bottom: 5px;
}

.obj-text p {
  font-size: 0.85rem;
  color: var(--text-lt);
  margin: 0;
}

/* ===== WORKING AREAS ===== */
.area-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 200px;
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.area-card:hover img {
  transform: scale(1.07);
}

.area-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 37, 64, 0.88) 0%, rgba(26, 58, 92, 0.3) 100%);
}

.area-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
}

.area-body h3 {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 2px;
}

.area-body p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.area-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-lt);
  font-size: 0.9rem;
}

/* ===== MEMBERSHIP BENEFITS ===== */
.mem-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.mem-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.mem-card-head {
  background: var(--navy);
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mem-card-head::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.mem-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 10px;
}

.mem-card-head h3 {
  color: #fff;
  font-size: 0.95rem;
}

.mem-card-body {
  padding: 16px 18px;
}

.mem-card-body p {
  font-size: 0.84rem;
  color: var(--text-lt);
  margin: 0;
}

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item.open {
  border-color: var(--navy);
  box-shadow: 0 3px 12px rgba(26, 58, 92, 0.12);
}

.faq-q {
  padding: 16px 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-dark);
  transition: var(--transition);
}

.faq-item.open .faq-q {
  background: var(--navy);
  color: #fff;
}

.faq-q i {
  transition: transform 0.3s;
}

.faq-item.open .faq-q i {
  transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
    font-size: 0.9rem;
    color: #000000;
    background: var(--off-white);
}

.foot-about p {
    color: #b9b9b9;
}

.faq-a.open {
  max-height: 250px;
  padding: 15px 18px;
}

/* ===== CTA SECTION ===== */
.cta-sec {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.cta-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=70') center/cover;
  opacity: 0.07;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-inner h2 {
  color: #fff;
  margin-bottom: 12px;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin: 0 auto 22px;
}

.cta-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.cta-chip {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.84rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-chip i {
  color: var(--gold-lt);
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact-info {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 30px;
  color: rgba(255, 255, 255, 0.85);
}

.contact-info h3 {
  color: #fff;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.c-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.c-icon {
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.c-text h4 {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 3px;
  font-weight: 500;
}

.c-text p,
.c-text a {
  font-size: 0.93rem;
  color: #fff;
  font-weight: 600;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.soc-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.soc-btn:hover {
  background: var(--saffron);
  color: #fff;
  transform: translateY(-3px);
}

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-form h3 {
  color: var(--navy-dark);
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

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

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--navy);
  padding: 40px 0;
}

.sbar-item {
  text-align: center;
}

.sbar-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-lt);
  display: block;
  line-height: 1;
}

.sbar-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 5px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 60px 0 0;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 45px;
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

ogo h3 {
  color: #fff;
  font-size: 0.95rem;
}

.foot-about p {
  font-size: 0.86rem;
  line-height: 1.75;
}

.foot-social {
  display: flex;
  gap: 9px;
  margin-top: 16px;
}

.foot-soc {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}

.foot-soc:hover {
  background: var(--saffron);
  color: #fff;
  transform: translateY(-2px);
}

.foot-title {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--saffron);
  display: inline-block;
}

.foot-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.foot-links a {
    font-size: 0.96rem;
    color: rgb(255 255 255);
    display: flex;
    align-items: center;
    gap: 7px;
}

.foot-links a i {
  font-size: 0.65rem;
  color: var(--saffron);
}

.foot-links a:hover {
  color: var(--gold-lt);
  padding-left: 4px;
}

.foot-ci {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.foot-ci i {
  color: var(--gold-lt);
  margin-top: 3px;
  min-width: 14px;
  font-size: 0.88rem;
}

.foot-ci span {
  font-size: 0.85rem;
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.83rem;
}

.foot-bottom a {
  color: var(--gold-lt);
}
.foot-bottom p {
  color:#b9b9b9;
}

/* ===== BACK TO TOP ===== */
.btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  z-index: 999;
}

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

.btt:hover {
  background: var(--saffron);
  transform: translateY(-3px);
}

/* ===== GRID ===== */
.grid {
  display: grid;
  gap: 24px;
}

.g2 {
  grid-template-columns: repeat(2, 1fr);
}

.g3 {
  grid-template-columns: repeat(3, 1fr);
}

.g4 {
  grid-template-columns: repeat(4, 1fr);
}

.g2x {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 55px;
}


.g2x-welcome {
  grid-template-columns: 1fr;
  align-items: center;
  gap: 55px;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.vis,
.fade-left.vis,
.fade-right.vis {
  opacity: 1;
  transform: translate(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
  .g4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-text-col {
    padding-left: 15px;
  }

  .g2x {
    gap: 35px;
  }
}

@media (max-width:768px) {
  .section-pad {
    padding: 50px 0;
  }

  .g2,
  .g3,
  .g2x {
    grid-template-columns: 1fr;
  }

  .g4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-main-img {
    height: 280px;
  }

  .hero-badge-float {
    display: none;
  }

  .about-text-col {
    padding-left: 0;
    margin-top: 40px;
  }

  .about-stamp {
    right: 0;
    bottom: 10px;
  }

  .why-overlay-card {
    left: 0;
  }

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

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

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    max-height: 0;
    overflow: hidden;
    display: none;
    transition: max-height 0.4s ease;
    gap: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

.nav-menu.open {
        max-height: 1200px;
        display: block;
    }

  .nav-link {
    padding: 12px 14px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
  }

  .nav-link.active {
    border-left: 3px solid var(--gold-lt);
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  .nav-cta {
    margin: 12px 0 0 14px;
  }

  /* Mobile dropdown */
  .has-dropdown {
    width: 100%;
  }

  .has-dropdown > a.nav-link {
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--saffron);
    border-radius: 0;
    background: rgba(255,255,255,0.05);
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    display: block;
    margin-left: 14px;
  }

  .dropdown-menu::before {
    display: none;
  }

  .has-dropdown.open > .dropdown-menu {
    max-height: 400px;
  }

  .dropdown-menu li a {
    color: rgba(255,255,255,0.78);
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.85rem;
  }

  .dropdown-menu li a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    padding-left: 22px;
  }

  .dropdown-menu li a i {
    color: var(--gold-lt);
  }

  .nav-arrow {
    margin-left: auto;
  }

  .tb-left {
    display: none;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .hstat {
    min-width: 45%;
    margin-bottom: 10px;
  }

  .foot-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width:480px) {
  .g4 {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-btns {
    flex-direction: column;
  }
}
/* Objective Styling */
.objective-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
/* Header Styling */
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: #002147; /* Navy Blue - Official Look */
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        /* Saffron & Green underline decoration */
        .section-header h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 4px;
            background: linear-gradient(to right, #FF9933 33%, #FFFFFF 33%, #FFFFFF 66%, #138808 66%);
            bottom: -10px;
            left: 25%;
            border-radius: 2px;
            border: 1px solid #ddd;
        }

        .section-intro {
            font-size: 1.1rem;
            color: #555;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        /* Grid Layout for Objectives */
        .objectives-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
        }

        /* Individual Card Styling */
        .objective-card {
            background-color: #ffffff;
            border-radius: 8px;
            padding: 25px 20px 25px 50px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            position: relative;
            transition: all 0.3s ease;
            border-top: 4px solid #FF9933; /* Saffron Accent */
        }

        .objective-card:nth-child(even) {
            border-top-color: #138808; /* Green Accent for alternating pattern */
        }

        .objective-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }

        /* Number Badge */
        .objective-number {
            position: absolute;
            top: 25px;
            left: -15px;
            width: 40px;
            height: 40px;
            background-color: #002147; /* Navy Blue */
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
            border: 2px solid #fff;
        }

        .objective-card h3 {
            font-size: 1.3rem;
            color: #222;
            margin-bottom: 10px;
        }

        .objective-card p {
            font-size: 1rem;
            color: #666;
            text-align: justify;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }
            .objective-card {
                padding: 20px 15px 20px 40px;
            }
            .objective-number {
                width: 35px;
                height: 35px;
                font-size: 1rem;
                left: -10px;
            }
        }
.text-center{
  text-align: center;
}
/* --- Top Tri-Color Bar --- */
        .top-national-bar {
            display: flex;
            height: 6px;
            width: 100%;
        }
        .bar-saffron { flex: 1; background-color: var(--saffron); }
        .bar-white { flex: 1; background-color: #ffffff; }
        .bar-green { flex: 1; background-color: var(--green); }

        /* --- Header Section --- */
        .header-why-choose {
            background-color: #f4f6f9;
            color: #ffffff;
            text-align: center;
            padding: 30px 10px;
        }

        .header-why-choose h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .header-why-choose p {
            max-width: 900px;
            margin: 0 auto;
            font-size: 1.15rem;
            opacity: 0.95;
            font-weight: 400;
        }

        /* --- Main Content Section --- */
        .container-why-choose {
            max-width: 100%;
            margin: auto;
            padding: 10px 20px 30px 20px;
            background-color: #f4f6f9;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        /* --- Feature Cards --- */
        .card-why-choose {
            background-color: #ffffff;
            border-radius: 8px;
            padding: 30px 25px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            border-top: 4px solid var(--primary-blue);
            transition: all 0.3s ease;
            position: relative;
        }

        .card-why-choose:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border-top: 4px solid var(--green); /* Color shift on hover */
        }

        .card-number {
            background-color: var(--saffron);
            color: #ffffff;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 20px;
            box-shadow: 0 2px 5px rgba(255, 153, 51, 0.4);
        }

        .card-why-choose h3 {
            color: var(--primary-blue);
            font-size: 1.3rem;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .card-why-choose p {
            color: var(--text-muted);
            font-size: 1rem;
            text-align: justify;
        }

        /* --- Mobile Responsiveness --- */
        @media (max-width: 768px) {
            .header-why-choose {
                padding: 20px 15px;
            }
            .header-why-choose h1 {
                font-size: 2rem;
            }
            .header-why-choose p {
                font-size: 1rem;
                text-align: left;
            }
            .container-why-choose {
                margin: 30px auto;
            }
            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .card-why-choose {
                padding: 25px 20px;
            }
        }
/* Top Header / Trust Theme */
        .top-bar-1 {
            background-color: var(--saffron);
            height: 5px;
            width: 100%;
        }
        /* Main Container */
        .container-achievements {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .intro-text {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 40px auto;
            font-size: 1.2rem;
            color: var(--text-gray);
            background: var(--white);
            padding: 20px;
            border-radius: 8px;
            border-left: 5px solid var(--primary-blue);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        /* Section Title */
        .section-title {
            text-align: center;
            color: var(--primary-blue);
            font-size: 2.5rem;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 10px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--saffron);
            border-radius: 2px;
        }

        /* Grid Layout */
        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        /* Card Design */
        .card-achievements {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
            display: flex;
            flex-direction: column;
        }

        .card-achievements:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-color: var(--primary-blue);
        }

        .card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 3px solid var(--saffron);
        }

        .card-content {
            padding: 25px;
            flex-grow: 1;
        }

        .achievements-card-number {
            background-color: var(--primary-blue);
            color: #000;
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .card-title {
            color: var(--primary-blue);
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .card-desc {
            color: var(--text-gray);
            font-size: 1.05rem;
        }
        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .header-achievements h1 {
                font-size: 1.8rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .intro-text {
                font-size: 1.1rem;
            }
            .achievements-grid {
                grid-template-columns: 1fr;
            }
        }
/* Top Government/Trust Theme Bar */
        /* Section Title */
        .section-title {
            text-align: center;
            font-size: 2rem;
            color: #003366;
            margin-bottom: 30px;
            position: relative;
        }
        .section-title::after {
            content: '';
            width: 80px;
            height: 4px;
            background-color: #FF9933;
            display: block;
            margin: 10px auto 0;
            border-radius: 2px;
        }

        /* CSS Grid for Cards (Mobile Responsive) */
        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        /* Card Design */
        .card-Working {
            background-color: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-bottom: 4px solid #003366;
        }
        .card-Working:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border-bottom-color: #FF9933;
        }

        /* Card Image */
        .card-Working img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        /* Card Content */
        .card-content {
            padding: 20px;
        }
        .card-content h3 {
            font-size: 1.3rem;
            color: #003366;
            margin-bottom: 10px;
            font-weight: 700;
        }
        .card-content p {
            font-size: 1rem;
            color: #555;
            text-align: justify;
        }

        /* Sankalp (Resolution) Section */
        .sankalp {
            background-color: #ffffff;
            margin-top: 50px;
            padding: 40px 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            border-left: 8px solid #138808; /* Green accent */
            border-right: 8px solid #FF9933; /* Saffron accent */
        }
        .sankalp h2 {
            font-size: 2rem;
            color: #003366;
            margin-bottom: 15px;
        }
        .sankalp blockquote {
            font-size: 1.2rem;
            font-weight: 600;
            color: #444;
            font-style: italic;
            max-width: 900px;
            margin: 0 auto;
        }
        /* Responsive Adjustments */
        @media (max-width: 768px) {
           
            .sankalp {
                padding: 30px 20px;
                border-left: 4px solid #138808;
                border-right: 4px solid #FF9933;
            }
        }
/* --- Section Container --- */
.director-section {
    padding: 10px 1.5rem;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.director-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column; /* Stacks on mobile */
    gap: 3rem;
    align-items: center;
}

/* --- Image Styling --- */
.director-image {
    width: 100%;
    max-width: 450px;
    position: relative;
}

.director-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Optional: Decorative square behind the image */
.director-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: #0056b3;
    border-radius: 12px;
    z-index: -1;
    opacity: 0.1;
}

/* --- Content Styling --- */
.director-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0056b3;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.director-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.director-content blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: #444;
    border-left: 4px solid #0056b3;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.director-content p {
    color: #555;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* --- Signature Area --- */
.director-signature {
    margin-top: 5px;
    padding-top: 5px;
    border-top: 1px solid #eaeaea;
}

.director-signature .name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
}

.director-signature .title {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 0;
}

/* --- Responsive Media Queries --- */

/* For Tablets and Desktop */
@media (min-width: 900px) {
    .container {
        flex-direction: row; /* Side-by-side layout */
        align-items: stretch;
    }

    .director-image {
        flex: 0 0 45%; /* Image takes up 45% of the container */
        max-width: none;
    }
    
    .director-image::before {
        top: -30px;
        left: -30px;
    }
}

/* Smaller mobile tweaks */
@media (max-width: 600px) {
    .director-content h2 {
        font-size: 2rem;
    }
    
    .director-content blockquote {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .director-section {
        padding: 3rem 1rem;
    }
}

.container {
   max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* --- Section Styling --- */
.team-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

/* --- Grid Layout (The core of the responsiveness) --- */
.team-grid {
    display: grid;
    /* This creates columns that shrink to 250px minimum, or expand to fill space uniformly */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* --- Card Styling --- */
.team-member {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* --- Image Styling --- */
.member-img {
    margin-bottom: 20px;
}

.member-img img {
    width: 100%;
    /* height: 150px; */
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e0e6ed;
    transition: border-color 0.3s ease;
}

.team-member:hover .member-img img {
    border-color: #007bff;
}

/* --- Text & Info Styling --- */
.member-info h3 {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 5px;
}

.member-info span {
    display: block;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
    font-weight: 500;
}

/* --- Social Links --- */
.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #f1f5f9;
    color: #475569;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    background-color: #007bff;
    color: #ffffff;
}

/* --- Responsive Adjustments for very small screens --- */
@media (max-width: 480px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .team-member {
        padding: 20px 15px;
    }
}
/* Container for max-width alignment */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styling */
.certificates-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* Underline decoration for the heading */
.section-header h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: #3b82f6; /* Blue brand color */
    bottom: -8px;
    left: 20%;
    border-radius: 2px;
}

.section-header p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Grid Layout - This makes it responsive magically */
.certificates-grid {
    display: grid;
    /* auto-fit and minmax handles the responsive columns */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

/* Individual Certificate Card */
.certificate-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

/* Hover effect */
.certificate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1), 0 14px 28px rgba(0, 0, 0, 0.05);
}

/* Image wrapper */
.cert-image {
    
    background-color: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the box nicely */
    transition: transform 0.3s ease;
}

/* Slight zoom on image when hovering the card */
.certificate-card:hover .cert-image img {
    transform: scale(1.05);
}

/* Text Content */
.cert-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Pushes content down evenly */
}

.cert-content h3 {
    font-size: 1.3rem;
    color: #0f172a;
    margin-bottom: 8px;
}

.authority {
    display: inline-block;
    font-size: 0.85rem;
    color: #3b82f6; /* Blue brand color */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.cert-content p {
    color: #475569;
    font-size: 0.95rem;
    margin-top: auto; /* Pushes text to align properly */
}

/* Mobile Adjustments (For extremely small screens) */
@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .certificates-section {
        padding: 50px 0;
    }
    
    /* Forces cards to shrink a bit on very tiny phones */
    .certificates-grid {
        grid-template-columns: 1fr;
    }
}
.pb-5{
  padding-bottom: 10px;
}