/* ==========================================================================
   ABOUT US PAGE SPECIFIC STYLESHEET (INDIAN TRICOLOR THEME ENHANCED)
   Sutapa Infotech Skills Foundation / IDST
   Colors: Saffron (#ff9933), White (#ffffff), Green (#128807), Deep Blue (#001f4d)
   ========================================================================== */

:root {
  --tricolor-saffron: #ff9933;
  --tricolor-green: #128807;
  --tricolor-white: #ffffff;
  --primary-blue: #001f4d;
  --secondary-blue: #005bc5;
  --accent-gold: #ffb300;
  --light-bg: #f8fafc;
  --card-shadow: 0 10px 30px rgba(0, 31, 77, 0.08);
  --card-hover-shadow: 0 20px 40px rgba(0, 31, 77, 0.16);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   INDIAN TRICOLOR STRIPE UTILITY COMPONENTS
   ========================================================================== */
.tricolor-stripe-bar {
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, #ff9933 0%, #ff9933 33.33%, #ffffff 33.33%, #ffffff 66.66%, #128807 66.66%, #128807 100%);
  display: block;
}

.tricolor-heading-underline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 12px auto 25px;
}

.tricolor-heading-underline .line-saffron {
  width: 35px;
  height: 4px;
  background-color: #ff9933;
  border-radius: 4px;
}

.tricolor-heading-underline .line-white {
  width: 20px;
  height: 4px;
  background-color: #005bc5;
  border-radius: 4px;
}

.tricolor-heading-underline .line-green {
  width: 35px;
  height: 4px;
  background-color: #128807;
  border-radius: 4px;
}

/* ==========================================================================
   1. HERO BREADCRUMB BANNER (HIGH TECH & TRICOLOR IMPROVED)
   ========================================================================== */
.page-hero-banner {
  position: relative;
  background: linear-gradient(135deg, #071329 0%, #030b1a 60%, #091c3d 100%);
  color: #ffffff;
  padding: 65px 0 75px;
  overflow: hidden;
  box-shadow: inset 0 -10px 25px rgba(0, 0, 0, 0.3);
}

.hero-dot-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.65;
  pointer-events: none;
}

.about-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 153, 51, 0.35);
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-breadcrumb a {
  color: #ff9933;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.about-breadcrumb a:hover {
  color: #ffffff;
}

.about-breadcrumb span.separator {
  color: rgba(255, 255, 255, 0.4);
}

.about-breadcrumb span.active-crumb {
  color: #ffffff;
  font-weight: 700;
}

.page-hero-title {
  font-family: 'Space Grotesk', 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.8vw, 2.2rem);
  letter-spacing: -0.01em;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.18;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  margin-bottom: 0;
}

.page-hero-title span.text-saffron {
  color: #ff9933;
  text-shadow: 0 2px 10px rgba(255, 153, 51, 0.3);
}

.page-hero-title span.text-green {
  color: #4ade80;
}

.page-hero-desc {
  font-family: 'Inter', sans-serif;
  color: #cbd5e1;
  max-width: 740px;
  font-size: 1.02rem;
  line-height: 1.65;
}

.hero-quick-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quick-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 15, 40, 0.5);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.quick-badge-item.badge-saffron {
  border: 1px solid rgba(255, 153, 51, 0.4);
  color: #ffe8d1;
}

.quick-badge-item.badge-saffron i {
  color: #ff9933;
}

.quick-badge-item.badge-white {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.quick-badge-item.badge-white i {
  color: #38bdf8;
}

.quick-badge-item.badge-green {
  border: 1px solid rgba(18, 136, 7, 0.5);
  color: #dcfce7;
}

.quick-badge-item.badge-green i {
  color: #4ade80;
}

.quick-badge-item:hover {
  transform: translateY(-3px);
  background: rgba(0, 25, 60, 0.75);
}

/* Right Side Circular Icon Badge */
.hero-badge-circle-wrapper {
  position: relative;
  width: 145px;
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge-circle-outer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px dashed rgba(56, 189, 248, 0.45);
  border-radius: 50%;
  animation: spinDashed 25s linear infinite;
}

.hero-badge-circle-inner {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.15), inset 0 0 15px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-badge-circle-inner i {
  font-size: 3.2rem;
  filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.5));
}

.hero-badge-circle-wrapper:hover .hero-badge-circle-inner {
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.1);
}

@keyframes spinDashed {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Indian Tricolor Ribbon at bottom of Hero Banner */
.hero-tricolor-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #ff9933 0%, #ff9933 33.33%, #ffffff 33.33%, #ffffff 66.66%, #128807 66.66%, #128807 100%);
  z-index: 5;
}

/* ==========================================================================
   2. OVERVIEW & ABOUT SECTION
   ========================================================================== */
.about-overview-section {
  padding: 90px 0;
  background-color: #ffffff;
  margin-bottom: 0;
  background-image: 
    linear-gradient(to right, rgba(15, 23, 42, 0.04) 1px, transparent 1px), 
    linear-gradient(to bottom, rgba(15, 23, 42, 0.04) 1px, transparent 1px), 
    linear-gradient(to right, #ffffff 0%, #ffffff 40%, rgba(255, 255, 255, 0) 95%), 
    linear-gradient(to bottom, rgba(255, 153, 51, 0.48) 0%, rgba(255, 153, 51, 0.12) 18%, #ffffff 28%, #ffffff 72%, rgba(19, 136, 8, 0.12) 82%, rgba(19, 136, 8, 0.44) 100%);
  background-size: 32px 32px, 32px 32px, 100% 100%, 100% 100%;
  background-position: left top, left top, left top, left top;
  background-repeat: repeat, repeat, no-repeat, no-repeat;
}

.overview-image-grid {
  position: relative;
  padding: 15px;
}

.main-overview-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 31, 77, 0.14);
  border: 4px solid #ffffff;
}

.main-overview-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.overview-experience-badge {
  position: absolute;
  bottom: -15px;
  right: -10px;
  background: linear-gradient(135deg, #001f4d 0%, #003b8e 100%);
  color: #ffffff;
  padding: 22px 28px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 31, 77, 0.25);
  border: 3px solid #ffffff;
  text-align: center;
  z-index: 2;
}

.overview-experience-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #ff9933 0%, #ff9933 33.33%, #ffffff 33.33%, #ffffff 66.66%, #128807 66.66%, #128807 100%);
}

.overview-experience-badge .years {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: #ff9933;
}

.overview-experience-badge .label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-top: 5px;
}

.section-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 153, 51, 0.12);
  color: #d97706;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 153, 51, 0.3);
}

.section-main-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: #001f4d;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.25;
  margin-bottom: 10px;
}

.overview-description {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.overview-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
}

.overview-highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 600;
  color: #1e293b;
}

.overview-highlights-list li i.icon-saffron {
  background: rgba(255, 153, 51, 0.15);
  color: #ea580c;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.overview-highlights-list li i.icon-green {
  background: rgba(18, 136, 7, 0.15);
  color: #128807;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.overview-highlights-list li i.icon-blue {
  background: rgba(0, 91, 197, 0.15);
  color: #005bc5;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   3. MISSION, VISION & CORE VALUES GRID (TRICOLOR THEMED)
   ========================================================================== */
.mission-vision-section {
  padding: 39px 0;
  background-color: #ffffff;
  position: relative;
}

.mvv-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: var(--card-shadow);
  border: 1px solid #f1f5f9;
  transition: var(--transition-smooth);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
}

.mvv-card.card-mission::before { background: linear-gradient(90deg, #ff9933, #ea580c); }
.mvv-card.card-vision::before { background: linear-gradient(90deg, #001f4d, #005bc5); }
.mvv-card.card-values::before { background: linear-gradient(90deg, #128807, #16a34a); }

.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-hover-shadow);
}

.mvv-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}

.card-mission .mvv-icon-box { background: rgba(255, 153, 51, 0.15); color: #ea580c; }
.card-vision .mvv-icon-box { background: rgba(0, 31, 77, 0.12); color: #001f4d; }
.card-values .mvv-icon-box { background: rgba(18, 136, 7, 0.15); color: #128807; }

.mvv-card:hover .mvv-icon-box {
  transform: scale(1.1) rotate(5deg);
}

.mvv-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: #001f4d;
  margin-bottom: 15px;
}

.mvv-text {
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   ANIMATED IMPACT COUNTERS & GLASS FEATURE CARDS (MATCHING REFERENCE IMAGE)
   ========================================================================== */
.counter-number {
  font-family: 'Space Grotesk', 'Poppins', sans-serif;
  font-weight: 800;
  line-height: 1;
}

.text-saffron {
  color: #FF9800 !important;
}

/* Glass Feature & Counter Cards (Matching Reference Image) */
.about-glass-feature-card,
.about-glass-counter-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05), 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.35s ease;
  height: 100%;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(0, 0, 0, 0.06);
}

.about-glass-feature-card:hover,
.about-glass-counter-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
}

.counter-card-number {
  font-family: 'Space Grotesk', 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  line-height: 1.15;
  margin-bottom: 2px;
}

.counter-card-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 0;
  text-transform: uppercase;
}

/* Card 1: Orange/Saffron Left Border */
.card-left-saffron {
  border-left: 5px solid #ea580c !important;
  background: linear-gradient(180deg, #ffffff 0%, #fffbf5 100%) !important;
}

/* Card 2: Green Left Border */
.card-left-green {
  border-left: 5px solid #128807 !important;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%) !important;
}

/* Card 3: Blue Left Border */
.card-left-blue {
  border-left: 5px solid #005bc5 !important;
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%) !important;
}

/* Avatar Icons */
.feature-icon-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.avatar-saffron { background: #ea580c; }
.avatar-green { background: #128807; }
.avatar-blue { background: #005bc5; }

/* Titles & Subtitles */
.feature-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.25;
  margin-bottom: 2px;
}

.title-saffron { color: #ea580c; }
.title-green { color: #128807; }
.title-blue { color: #005bc5; }

.feature-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0;
}

/* ==========================================================================
   4. MILESTONES & JOURNEY TIMELINE
   ========================================================================== */
.timeline-section {
  padding: 34px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
  position: relative;
}

.timeline-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 40px auto 0;
}

.timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 5px;
  background: linear-gradient(180deg, #ff9933 0%, #005bc5 50%, #128807 100%);
  transform: translateX(-50%);
  border-radius: 5px;
}

@media (max-width: 767.98px) {
  .timeline-wrapper::before {
    left: 25px;
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 45px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 6px rgba(0, 31, 77, 0.12);
  transform: translateX(-50%);
  z-index: 2;
  transition: var(--transition-smooth);
}

.timeline-item:nth-child(1) .timeline-dot { border: 4px solid #ff9933; }
.timeline-item:nth-child(2) .timeline-dot { border: 4px solid #005bc5; }
.timeline-item:nth-child(3) .timeline-dot { border: 4px solid #128807; }
.timeline-item:nth-child(4) .timeline-dot { border: 4px solid #ff9933; }
.timeline-item:nth-child(5) .timeline-dot { border: 4px solid #128807; }

.timeline-item:hover .timeline-dot {
  transform: translateX(-50%) scale(1.3);
}

@media (max-width: 767.98px) {
  .timeline-dot {
    left: 25px;
  }
}

.timeline-content {
  position: relative;
  width: 45%;
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(226, 232, 240, 0.9);
  transition: var(--transition-smooth);
}

.timeline-item:nth-child(odd) .timeline-content { margin-left: auto; }
.timeline-item:nth-child(even) .timeline-content { margin-right: auto; }

@media (max-width: 767.98px) {
  .timeline-content {
    width: calc(100% - 60px) !important;
    margin-left: 60px !important;
  }
}

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

.timeline-year-badge {
  display: inline-block;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.badge-bg-saffron { background: linear-gradient(135deg, #ff9933, #ea580c); }
.badge-bg-blue { background: linear-gradient(135deg, #001f4d, #005bc5); }
.badge-bg-green { background: linear-gradient(135deg, #128807, #15803d); }

.timeline-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #001f4d;
  margin-bottom: 10px;
}

.timeline-desc {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   5. AIMS & OBJECTIVES GRID
   ========================================================================== */
.pillars-section {
  padding: 42px 0;
  background-color: #ffffff;
}

.pillar-card {
  border-radius: 20px !important;
  padding: 35px 25px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.pillar-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover .pillar-icon-wrapper {
  transform: scale(1.1) rotate(4deg);
}

/* Card 1 & 4: Saffron / Orange Glass Theme (Exact match to requested CSS) */
.pillar-card.card-glass-saffron,
.pillar-card:nth-child(3n+1) {
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1.5px solid rgba(234, 88, 12, 0.22) !important;
  border-bottom: 3.5px solid #ea580c !important;
  background: linear-gradient(180deg, #ffffff 0%, #fffbf5 100%) !important;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(234, 88, 12, 0.05) !important;
}

.pillar-card.card-glass-saffron .pillar-icon-wrapper,
.pillar-card:nth-child(3n+1) .pillar-icon-wrapper {
  background: #ffedd5;
  color: #ea580c;
  border: 1px solid rgba(234, 88, 12, 0.2);
}

.pillar-card.card-glass-saffron:hover,
.pillar-card:nth-child(3n+1):hover {
  border-color: rgba(234, 88, 12, 0.45) !important;
  border-bottom-color: #f97316 !important;
  background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%) !important;
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(234, 88, 12, 0.15), 0 4px 12px rgba(15, 23, 42, 0.08) !important;
}

/* Card 2 & 5: Blue Glass Theme */
.pillar-card.card-glass-blue,
.pillar-card:nth-child(3n+2) {
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1.5px solid rgba(37, 99, 235, 0.22) !important;
  border-bottom: 3.5px solid #005bc5 !important;
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%) !important;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(37, 99, 235, 0.05) !important;
}

.pillar-card.card-glass-blue .pillar-icon-wrapper,
.pillar-card:nth-child(3n+2) .pillar-icon-wrapper {
  background: #dbeafe;
  color: #005bc5;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.pillar-card.card-glass-blue:hover,
.pillar-card:nth-child(3n+2):hover {
  border-color: rgba(37, 99, 235, 0.45) !important;
  border-bottom-color: #0284c7 !important;
  background: linear-gradient(180deg, #ffffff 0%, #e0f2fe 100%) !important;
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.15), 0 4px 12px rgba(15, 23, 42, 0.08) !important;
}

/* Card 3 & 6: Green Glass Theme */
.pillar-card.card-glass-green,
.pillar-card:nth-child(3n+0) {
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1.5px solid rgba(16, 185, 129, 0.22) !important;
  border-bottom: 3.5px solid #128807 !important;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%) !important;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(16, 185, 129, 0.05) !important;
}

.pillar-card.card-glass-green .pillar-icon-wrapper,
.pillar-card:nth-child(3n+0) .pillar-icon-wrapper {
  background: #dcfce7;
  color: #128807;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.pillar-card.card-glass-green:hover,
.pillar-card:nth-child(3n+0):hover {
  border-color: rgba(16, 185, 129, 0.45) !important;
  border-bottom-color: #16a34a !important;
  background: linear-gradient(180deg, #ffffff 0%, #dcfce7 100%) !important;
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(16, 185, 129, 0.15), 0 4px 12px rgba(15, 23, 42, 0.08) !important;
}

.pillar-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #001f4d;
  margin-bottom: 12px;
}

.pillar-desc {
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   6. GOVERNMENT APPROVALS & RECOGNITIONS
   ========================================================================== */
.approvals-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #001533 0%, #001f4d 60%, #003380 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.approvals-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #ff9933 0%, #ff9933 33.33%, #ffffff 33.33%, #ffffff 66.66%, #128807 66.66%, #128807 100%);
}

.approval-badge-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 32px 25px;
  text-align: center;
  transition: var(--transition-smooth);
  height: 100%;
  position: relative;
}

.approval-badge-card.card-saffron-border { border-top: 3px solid #ff9933; }
.approval-badge-card.card-white-border { border-top: 3px solid #ffffff; }
.approval-badge-card.card-green-border { border-top: 3px solid #128807; }
.approval-badge-card.card-blue-border { border-top: 3px solid #38bdf8; }

.approval-badge-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.35);
}

.approval-icon-glow {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.card-saffron-border .approval-icon-glow { color: #ff9933; box-shadow: 0 0 20px rgba(255, 153, 51, 0.3); }
.card-white-border .approval-icon-glow { color: #ffffff; box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
.card-green-border .approval-icon-glow { color: #4ade80; box-shadow: 0 0 20px rgba(74, 222, 128, 0.3); }
.card-blue-border .approval-icon-glow { color: #38bdf8; box-shadow: 0 0 20px rgba(56, 189, 248, 0.3); }

.approval-badge-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.approval-badge-meta {
  color: #94a3b8;
  font-size: 0.88rem;
  margin-bottom: 15px;
}

.approval-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ff9933;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.approval-badge-btn:hover {
  color: #ffffff;
  transform: translateX(3px);
}

/* ==========================================================================
   7. IMPACT NUMBERS & COUNTERS
   ========================================================================== */
.impact-counter-section {
  padding: 70px 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.counter-item-block {
  text-align: center;
  padding: 20px;
}

.counter-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 1.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.counter-number.num-saffron { color: #ea580c; }
.counter-number.num-blue { color: #005bc5; }
.counter-number.num-green { color: #128807; }

.counter-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

/* ==========================================================================
   8. LEADERSHIP SPOTLIGHT
   ========================================================================== */
.leadership-section {
  padding: 90px 0;
  background-color: #f8fafc;
  background-image: linear-gradient(to right, rgba(15, 23, 42, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(15, 23, 42, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(14, 165, 233, 0.18) 0%, rgba(14, 165, 233, 0.05) 22%, #F1F5F9 35%, #F1F5F9 70%, rgba(99, 102, 241, 0.05) 82%, rgba(99, 102, 241, 0.18) 100%) !important;
  background-size: 32px 32px, 32px 32px, 100% 100% !important;
  background-position: left top, left top, left top !important;
  background-repeat: repeat, repeat, no-repeat !important;
}

.director-spotlight-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid #e2e8f0;
  padding: 40px;
  position: relative;
}

.director-spotlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #ff9933 0%, #ff9933 33.33%, #ffffff 33.33%, #ffffff 66.66%, #128807 66.66%, #128807 100%);
}

.director-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 31, 77, 0.15);
}

.director-img-wrapper img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.director-title-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  background: rgba(0, 31, 77, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 12px;
  text-align: center;
  border-top: 2px solid #ff9933;
}

.director-title-badge h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.director-title-badge span {
  font-size: 0.8rem;
  color: #ff9933;
  font-weight: 600;
}

.quote-icon-bg {
  font-size: 3rem;
  color: rgba(255, 153, 51, 0.25);
  line-height: 1;
  margin-bottom: 15px;
}

.director-message-excerpt {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 25px;
}

.btn-read-director {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #001f4d 0%, #005bc5 100%);
  color: #ffffff;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 31, 77, 0.25);
  transition: var(--transition-smooth);
}

.btn-read-director:hover {
  color: #ffffff;
  transform: translateY(-3px);
  background: linear-gradient(135deg, #ff9933 0%, #ea580c 100%);
}

/* ==========================================================================
   9. CALL TO ACTION BANNER
   ========================================================================== */
.about-cta-section {
  padding: 85px 0;
  background: linear-gradient(135deg, #e65100 0%, #ff9933 50%, #d97706 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M0 38h12v2H0v-2zm0-4h12v2H0v-2zm0-4h12v2H0v-2zm0-4h12v2H0v-2zm0-4h12v2H0v-2zm0-4h12v2H0v-2zm0-4h12v2H0v-2zm0-4h12v2H0v-2zm0-4h12v2H0v-2z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 720px;
  margin: 0 auto 32px;
}

.cta-btn-white {
  background: #ffffff;
  color: #001f4d;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-btn-white:hover {
  background: #001f4d;
  color: #ffffff;
  transform: translateY(-3px);
}

.cta-btn-green {
  background: #128807;
  color: #ffffff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #ffffff;
}

.cta-btn-green:hover {
  background: #ffffff;
  color: #128807;
  transform: translateY(-3px);
}

/* Bottom Tricolor Ribbon on CTA Banner */
.cta-tricolor-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #ff9933 0%, #ff9933 33.33%, #ffffff 33.33%, #ffffff 66.66%, #128807 66.66%, #128807 100%);
}

/* ==========================================================================
   10. MODAL & TOAST STYLING
   ========================================================================== */
.about-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 15, 40, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10500;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.about-modal.active-modal {
  display: flex;
  animation: fadeIn 0.3s ease-out forwards;
}

.about-modal-content {
  background: #ffffff;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  padding: 35px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: modalSlideUp 0.35s ease-out forwards;
  border-top: 5px solid #ff9933;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background: #ef4444;
  color: #ffffff;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   11. COMPREHENSIVE MOBILE RESPONSIVE OVERRIDES (about-us.html)
   ========================================================================== */
@media (max-width: 767.98px) {
  /* Hero Banner Spacing & Layout */
  .page-hero-banner {
    padding: 24px 0 28px 0 !important;
  }
  
  .page-hero-title {
    font-size: 1.45rem !important;
    line-height: 1.25 !important;
    letter-spacing: -0.01em !important;
    margin-top: 8px !important;
    margin-bottom: 6px !important;
  }
  
  .page-hero-desc {
    font-size: 0.84rem !important;
    line-height: 1.48 !important;
    margin-top: 6px !important;
  }
  
  .about-breadcrumb {
    font-size: 0.75rem !important;
    padding: 4px 12px !important;
  }
  
  /* 2x2 Grid for Quick Badges on Mobile */
  .hero-quick-badges {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    margin-top: 14px !important;
    width: 100% !important;
  }
  
  .quick-badge-item {
    padding: 8px 10px !important;
    font-size: 0.74rem !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    border-radius: 8px !important;
    gap: 6px !important;
  }
  
  .quick-badge-item i {
    font-size: 0.85rem !important;
  }
  
  /* Section Spacing on Mobile */
  .about-overview-section,
  .director-section,
  .aims-section,
  .compliance-section,
  .about-cta-section {
    padding: 28px 0 !important;
  }
  
  .section-main-title,
  .overview-title {
    font-size: 1.45rem !important;
    line-height: 1.3 !important;
  }
}

/* ==========================================================================
   12. TABLET RESPONSIVE OVERRIDES (768px to 1024px)
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Container Side Padding on Tablet */
  .container,
  .container-fluid {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  
  /* Hero Banner Spacing on Tablet */
  .page-hero-banner {
    padding: 30px 0 35px 0 !important;
  }
  .page-hero-title {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
    margin-top: 10px !important;
    margin-bottom: 8px !important;
  }
  .page-hero-desc {
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
    margin-top: 8px !important;
  }
  .hero-quick-badges {
    gap: 10px !important;
    margin-top: 16px !important;
  }
  .quick-badge-item {
    padding: 6px 12px !important;
    font-size: 0.8rem !important;
  }
  
  /* Section Spacing on Tablet */
  .about-overview-section,
  .director-section,
  .aims-section,
  .compliance-section,
  .about-cta-section {
    padding: 40px 0 !important;
  }
}
