/* ==========================================================================
   AIMS & OBJECTIVES PAGE SPECIFIC STYLESHEET (INDIAN TRICOLOR THEME)
   Sutapa Infotech Skills Foundation / IDST
   ========================================================================== */

: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.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   INDIAN TRICOLOR UTILITIES
   ========================================================================== */
.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
   ========================================================================== */
.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 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); }
}

.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. STRATEGIC FOUNDATION OVERVIEW SECTION (WITH GRID BACKGROUND)
   ========================================================================== */
.objectives-overview-section {
  padding: 90px 0;
  background-color: #ffffff;
  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;
}

.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;
}

/* ==========================================================================
   3. OBJECTIVES PILLAR CARDS (LIGHT GLASS STYLING MATCHING SPEC)
   ========================================================================== */
.pillars-section {
  padding: 90px 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 Glass Theme */
.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;
}

/* ==========================================================================
   4. STRATEGIC ROADMAP FRAMEWORK
   ========================================================================== */
.roadmap-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
}

/* ==========================================================================
   STRATEGIC ROADMAP DUAL-CORNER ACCENT FRAMED CARDS (MATCHING REFERENCE IMAGE)
   ========================================================================== */
.roadmap-framed-card {
  position: relative;
  border-radius: 22px;
  padding: 32px 22px;
  text-align: center;
  transition: all 0.35s ease;
  height: 100%;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  z-index: 1;
}

/* Top-Left Saffron Corner Stroke */
.roadmap-framed-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 45%;
  border-top: 4px solid #FF9800;
  border-left: 4px solid #FF9800;
  border-top-left-radius: 22px;
  pointer-events: none;
  z-index: 3;
}

/* Bottom-Right Green Corner Stroke */
.roadmap-framed-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  height: 45%;
  border-bottom: 4px solid #128807;
  border-right: 4px solid #128807;
  border-bottom-right-radius: 22px;
  pointer-events: none;
  z-index: 3;
}

/* Top Center Yellow Accent Bar */
.roadmap-top-yellow-bar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 4px;
  background-color: #ffc107;
  border-radius: 0 0 4px 4px;
  z-index: 4;
}

.roadmap-framed-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 31, 77, 0.14);
}

/* Card Background Color Variants */
.roadmap-framed-card.bg-tint-yellow {
  background: linear-gradient(180deg, #fffdf0 0%, #fef3c7 100%);
}

.roadmap-framed-card.bg-tint-green {
  background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
}

.roadmap-framed-card.bg-tint-purple {
  background: linear-gradient(180deg, #faf5ff 0%, #f3e8ff 100%);
}

.roadmap-framed-card.bg-tint-cyan {
  background: linear-gradient(180deg, #ecfeff 0%, #cffafe 100%);
}

/* Icon Badges */
.roadmap-icon-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.65rem;
  border: 3px solid #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.roadmap-framed-card:hover .roadmap-icon-avatar {
  transform: scale(1.08);
}

.bg-tint-yellow .roadmap-icon-avatar { background: #ff9933; color: #ffffff; }
.bg-tint-green .roadmap-icon-avatar { background: #128807; color: #ffffff; }
.bg-tint-purple .roadmap-icon-avatar { background: #8b5cf6; color: #ffffff; }
.bg-tint-cyan .roadmap-icon-avatar { background: #005bc5; color: #ffffff; }

.roadmap-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #0f172a;
  margin-bottom: 6px;
}

.roadmap-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.55;
  color: #475569;
  margin-bottom: 0;
}

/* ==========================================================================
   5. CALL TO ACTION BANNER (HIGH CONTRAST NAVY & TRICOLOR STYLING)
   ========================================================================== */
.cta-section {
  padding: 85px 0;
  background: linear-gradient(135deg, #001f4d 0%, #003b8e 50%, #071329 100%) !important;
  color: #ffffff !important;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-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%);
  z-index: 5;
}

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

.cta-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1 !important;
  max-width: 760px;
  margin: 0 auto 35px auto;
  line-height: 1.6;
}

.cta-btn-saffron {
  background: linear-gradient(135deg, #ff9933 0%, #ea580c 100%);
  color: #ffffff !important;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(234, 88, 12, 0.4);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-btn-saffron:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(234, 88, 12, 0.5);
}

.cta-btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff !important;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.7);
  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-outline-white:hover {
  background: #ffffff;
  color: #001f4d !important;
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
}
