/* ========================================
   STARTBENCH - Modern Design System
   ======================================== */

/* ==================== CSS Variables ==================== */
:root {
  /* Primary Colors */
  --primary: #09781e;
  --primary-light: #12b85f;
  --primary-dark: #065214;
  --primary-gradient: linear-gradient(135deg, #09781e 0%, #12b85f 100%);
  
  /* Secondary Colors */
  --secondary: #2D5BFF;
  --secondary-light: #547BFF;
  --secondary-dark: #1A3FD9;
  --secondary-gradient: linear-gradient(135deg, #2D5BFF 0%, #547BFF 100%);
  
  /* Accent Colors */
  --accent: #FF6B35;
  --accent-light: #FF8C5A;
  --accent-dark: #E55A2B;
  
  /* Neutral Colors */
  --dark: #051441;
  --dark-light: #1a2a4a;
  --text: #6A7C92;
  --text-light: #8899B0;
  --light: #EFF2F9;
  --white: #ffffff;
  
  /* Semantic Colors */
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #3B82F6;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  
  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  
  /* Spacing */
  --spacing-unit: 8px;
  --spacing-xs: calc(var(--spacing-unit) * 1);
  --spacing-sm: calc(var(--spacing-unit) * 2);
  --spacing-md: calc(var(--spacing-unit) * 3);
  --spacing-lg: calc(var(--spacing-unit) * 4);
  --spacing-xl: calc(var(--spacing-unit) * 6);
  --spacing-2xl: calc(var(--spacing-unit) * 8);
  --spacing-3xl: calc(var(--spacing-unit) * 12);
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 20px rgba(9, 120, 30, 0.3);
  --shadow-glow-lg: 0 0 40px rgba(9, 120, 30, 0.4);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-index layers */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
}

/* ==================== Base Styles ==================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* ==================== Typography ==================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

@media (max-width: 768px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-2xl); }
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--text);
}

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

a:hover {
  color: var(--primary-light);
}

/* Gradient Text */
.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==================== Buttons ==================== */
.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--white);
  background: var(--primary-gradient);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  text-transform: none;
  letter-spacing: 0.3px;
}

.theme-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  color: var(--white);
}

.theme-btn:active {
  transform: translateY(-1px);
}

.theme-btn.btn-lg {
  padding: 18px 40px;
  font-size: var(--text-lg);
}

.theme-btn.btn-sm {
  padding: 10px 24px;
  font-size: var(--text-sm);
}

/* Secondary Button */
.theme-btn.border-btn {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  box-shadow: none;
}

.theme-btn.border-btn:hover {
  background: var(--primary-gradient);
  border-color: transparent;
  color: var(--white);
}

/* Button with Icon */
.theme-btn i {
  margin-left: var(--spacing-sm);
  font-size: 1.1em;
}

/* ==================== Cards ==================== */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: none;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  overflow: hidden;
}

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

.card-body {
  padding: var(--spacing-xl);
}

/* Service Box Enhancement */
.service-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow);
}

.service-box:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-lg);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
}

.service-icon i {
  font-size: 32px;
  color: var(--white);
}

.service-box:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-glow);
}

.service-content h4 {
  margin-bottom: var(--spacing-sm);
  color: var(--dark);
}

.service-content p {
  color: var(--text);
  margin-bottom: 0;
}

/* ==================== Section Titles ==================== */
.section-title {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-title span {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-sm);
  position: relative;
}

.section-title span::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
}

.section-title h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--spacing-md);
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text);
}

/* ==================== Navigation ==================== */
.navbar-area {
  padding: var(--spacing-lg) 0;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar-area.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-sm) 0;
  z-index: var(--z-fixed);
}

/* Navbar Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.brand-text {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-primary);
}

/* Navbar Actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-left: auto;
}

/* Theme Toggle Animation */
.theme-toggle-anim {
  animation: pulse 0.3s ease;
}

.navbar-brand img {
  transition: transform var(--transition-base);
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-nav .nav-item {
  margin: 0 var(--spacing-xs);
}

.navbar-nav .nav-item a {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--dark);
  padding: var(--spacing-sm) var(--spacing-md) !important;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
}

.navbar-nav .nav-item a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width var(--transition-base);
}

.navbar-nav .nav-item a:hover::after,
.navbar-nav .nav-item a.active::after {
  width: 60%;
}

.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item a.active {
  color: var(--primary);
}

/* Dropdown */
.dropdown-menu {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

.dropdown-item {
  font-size: var(--text-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  color: var(--text);
}

.dropdown-item:hover {
  background: var(--light);
  color: var(--primary);
  padding-left: var(--spacing-lg);
}

/* Navbar Toggler */
.navbar-toggler {
  border: none;
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler .toggler-icon {
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: all var(--transition-fast);
}

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

.navbar-toggler.active .toggler-icon:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ==================== Hero Section ==================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--spacing-3xl) 0;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: linear-gradient(135deg, rgba(9, 120, 30, 0.1) 0%, rgba(18, 184, 95, 0.05) 100%);
  border-radius: 50%;
  z-index: -1;
}

.hero-content-wrapper h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: var(--spacing-lg);
}

.hero-content-wrapper p {
  font-size: var(--text-lg);
  color: var(--text);
  margin-bottom: var(--spacing-xl);
  max-width: 550px;
}

.hero-img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img img {
  max-width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ==================== About Section ==================== */
.about-img {
  position: relative;
}

.about-img img {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.about-experience {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--primary-gradient);
  padding: var(--spacing-lg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glow);
  color: var(--white);
  max-width: 250px;
}

.about-experience h3 {
  color: var(--white);
  font-size: var(--text-xl);
  margin-bottom: var(--spacing-xs);
}

.about-experience p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* Counter Up */
.counter-up {
  display: flex;
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-xl);
}

.counter {
  text-align: center;
}

.counter .countup {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.counter h4 {
  font-size: var(--text-base);
  color: var(--text);
  margin-bottom: 0;
}

/* ==================== Process Timeline ==================== */
.time-line {
  position: relative;
}

.time-line::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-gradient);
  transform: translateX(-50%);
  border-radius: var(--radius-full);
}

.single-timeline {
  position: relative;
  margin-bottom: var(--spacing-3xl);
}

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

.timeline-content {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.timeline-content .box-icon-style {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.timeline-content .box-icon-style i {
  font-size: 28px;
  color: var(--white);
}

.timeline-img img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

@media (max-width: 991px) {
  .time-line::before {
    left: 20px;
  }
  
  .timeline-content {
    margin-left: 60px;
  }
  
  .timeline-img {
    display: none !important;
  }
}

/* ==================== Contact Section ==================== */
.contact-item {
  display: flex;
  align-items: flex-start;
  padding: var(--spacing-lg);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--spacing-md);
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 24px;
  color: var(--white);
}

.contact-content h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--spacing-xs);
}

.contact-content p {
  color: var(--text);
  margin-bottom: 4px;
}

.contact-content p:last-child {
  margin-bottom: 0;
}

.contact-content .text-muted {
  color: var(--text-light) !important;
  font-size: var(--text-sm);
}

/* Contact Social */
.contact-social {
  margin-top: var(--spacing-xl);
  padding: var(--spacing-lg);
  background: var(--light);
  border-radius: var(--radius-xl);
}

.contact-social h4 {
  margin-bottom: var(--spacing-md);
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
}

.social-links a {
  width: 45px;
  height: 45px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  transition: all var(--transition-fast);
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-glow);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-xl);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  font-size: var(--text-base);
  font-family: var(--font-secondary);
  color: var(--dark);
  background: var(--light);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(9, 120, 30, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-light);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form .form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.contact-form .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
}

.contact-form .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.contact-form .form-check-label {
  color: var(--text);
  font-size: var(--text-sm);
}

.contact-form .form-check-label a {
  color: var(--primary);
  text-decoration: underline;
}

.contact-form .button {
  text-align: center;
  margin-top: var(--spacing-lg);
}

/* Accordion */
.accordion {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.accordion-item {
  border: none;
  margin-bottom: var(--spacing-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.accordion-item:hover {
  box-shadow: var(--shadow-lg);
}

.accordion-button {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  padding: var(--spacing-lg);
  border: none;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-gradient);
  color: var(--white);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(0);
}

.accordion-collapse {
  background: var(--white);
}

.accordion-body {
  padding: var(--spacing-lg);
  color: var(--text);
  line-height: 1.8;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

/* ==================== Hub Section Styles ==================== */
.hub-intro-content .lead {
  font-size: var(--text-lg);
  color: var(--text);
  line-height: 1.8;
}

.hub-stats {
  display: flex;
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-xl);
  border-top: 2px solid var(--light);
}

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

.stat-number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text);
  font-weight: 500;
}

.hub-intro-image img {
  width: 100%;
  border-radius: var(--radius-2xl);
}

/* Program Cards */
.program-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.program-card-body {
  padding: var(--spacing-2xl);
}

.program-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.program-icon i {
  font-size: 36px;
  color: var(--white);
}

.program-card h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--spacing-md);
}

.program-card p {
  color: var(--text);
  margin-bottom: var(--spacing-lg);
}

.program-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-lg) 0;
}

.program-features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  color: var(--text);
}

.program-features li i {
  color: var(--success);
  font-size: 18px;
}

/* Success Cards */
.success-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
  border: 1px solid var(--light);
}

.success-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.success-card-body {
  padding: var(--spacing-xl);
}

.success-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(9, 120, 30, 0.1);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-md);
}

.success-card h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--spacing-sm);
}

.success-card p {
  color: var(--text);
  margin-bottom: var(--spacing-lg);
}

.success-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--light);
}

.success-metrics span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  color: var(--text);
  font-weight: 500;
}

.success-metrics span i {
  color: var(--primary);
}

/* Programs Section Background */
.hub-programs-section {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.success-stories-section {
  background: var(--white);
}

/* ==================== Internship Section Styles ==================== */
.internship-image img {
  width: 100%;
  border-radius: var(--radius-2xl);
}

.internship-content .lead {
  font-size: var(--text-lg);
  color: var(--text);
  line-height: 1.8;
}

.internship-types {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.type-badge {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--light);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
}

.type-badge i {
  color: var(--primary);
  font-size: 20px;
}

.type-badge span {
  font-weight: 600;
  color: var(--dark);
}

.apply-cta .text-muted {
  color: var(--text-light) !important;
}

/* Benefit Cards */
.benefits-section {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.benefit-card {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
  text-align: center;
}

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

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.benefit-icon i {
  font-size: 36px;
  color: var(--white);
}

.benefit-card h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--spacing-sm);
}

.benefit-card p {
  color: var(--text);
  margin-bottom: 0;
}

/* Offer Cards */
.offer-card {
  margin-bottom: var(--spacing-lg);
}

.offer-card-body {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  border-left: 4px solid var(--primary);
}

.offer-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.offer-number {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 60px;
  font-weight: 900;
  color: rgba(9, 120, 30, 0.1);
  line-height: 1;
}

.offer-card-body h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--spacing-sm);
}

.offer-card-body p {
  color: var(--text);
  margin-bottom: 0;
}

/* Internship FAQ */
.internship-faq-section {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

/* ==================== Communities Section Styles ==================== */
.communities-intro-content .lead {
  font-size: var(--text-lg);
  color: var(--text);
  line-height: 1.8;
}

.community-stats {
  display: flex;
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-xl);
  border-top: 2px solid var(--light);
}

.community-stats .stat-item {
  text-align: center;
}

.community-stats .stat-number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.community-stats .stat-label {
  font-size: var(--text-sm);
  color: var(--text);
  font-weight: 500;
}

/* Community Cards */
.featured-communities-section {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.community-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
}

.community-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.community-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.community-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.community-card:hover .community-card-image img {
  transform: scale(1.1);
}

.community-card-body {
  padding: var(--spacing-xl);
}

.community-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(9, 120, 30, 0.1);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-md);
}

.community-badge.cybersecurity {
  background: rgba(45, 91, 255, 0.1);
  color: var(--secondary);
}

.community-card h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--spacing-md);
}

.community-card p {
  color: var(--text);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.community-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-lg) 0;
}

.community-features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  color: var(--text);
}

.community-features li i {
  color: var(--success);
  font-size: 18px;
}

.community-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--light);
}

.community-cta .theme-btn {
  padding: 12px 24px;
  font-size: var(--text-sm);
}

.join-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--text);
  font-size: var(--text-sm);
  font-weight: 500;
}

.join-link i {
  color: var(--primary);
}

/* Community Benefit Cards */
.community-benefit-card {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
  text-align: center;
  border: 1px solid var(--light);
}

.community-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.community-benefit-card .benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--spacing-lg);
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}

.community-benefit-card .benefit-icon i {
  font-size: 32px;
  color: var(--white);
}

.community-benefit-card h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--spacing-sm);
}

.community-benefit-card p {
  color: var(--text);
  margin-bottom: 0;
}

/* Join Step Cards */
.how-to-join-section {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.join-step-card {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
  text-align: center;
  position: relative;
}

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

.step-number {
  width: 50px;
  height: 50px;
  margin: 0 auto var(--spacing-lg);
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
}

.join-step-card h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--spacing-sm);
}

.join-step-card p {
  color: var(--text);
  margin-bottom: 0;
}

/* ==================== Meetups Section Styles ==================== */
.meetups-intro-content .lead {
  font-size: var(--text-lg);
  color: var(--text);
  line-height: 1.8;
}

.meetup-stats {
  display: flex;
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-xl);
  border-top: 2px solid var(--light);
}

.meetup-stats .stat-item {
  text-align: center;
}

.meetup-stats .stat-number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.meetup-stats .stat-label {
  font-size: var(--text-sm);
  color: var(--text);
  font-weight: 500;
}

/* Event Cards */
.upcoming-events-section {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.event-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.event-card:hover .event-card-image img {
  transform: scale(1.1);
}

.event-date-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-sm) var(--spacing-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.event-date-badge .month {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}

.event-date-badge .day {
  display: block;
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.event-card-body {
  padding: var(--spacing-xl);
}

.event-category {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(9, 120, 30, 0.1);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-md);
}

.event-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--spacing-md);
}

.event-card p {
  color: var(--text);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--light);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: var(--text-sm);
  color: var(--text);
}

.meta-item i {
  color: var(--primary);
  font-size: 16px;
}

.event-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.event-cta .theme-btn {
  padding: 12px 24px;
  font-size: var(--text-sm);
}

.spots-left {
  font-size: var(--text-sm);
  color: var(--warning);
  font-weight: 600;
}

/* Meetup Type Cards */
.meetup-type-card {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
  text-align: center;
  border: 1px solid var(--light);
}

.meetup-type-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.meetup-type-card .type-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--spacing-lg);
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}

.meetup-type-card .type-icon i {
  font-size: 32px;
  color: var(--white);
}

.meetup-type-card h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--spacing-sm);
}

.meetup-type-card p {
  color: var(--text);
  margin-bottom: 0;
}

/* Meetup Benefit Cards */
.meetup-benefit-card {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
  text-align: center;
  border: 1px solid var(--light);
}

.meetup-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.meetup-benefit-card .benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--spacing-lg);
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}

.meetup-benefit-card .benefit-icon i {
  font-size: 32px;
  color: var(--white);
}

.meetup-benefit-card h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--spacing-sm);
}

.meetup-benefit-card p {
  color: var(--text);
  margin-bottom: 0;
}

.meetup-benefits-section {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-xl);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  font-size: var(--text-base);
  font-family: var(--font-secondary);
  color: var(--dark);
  background: var(--light);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-md);
  transition: all var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(9, 120, 30, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-light);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form .button {
  text-align: center;
  margin-top: var(--spacing-lg);
}

/* ==================== Page Banner ==================== */
.page-banner-section {
  position: relative;
  margin-top: 80px;
}

.page-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.banner-content h2 {
  font-size: var(--text-5xl);
  margin-bottom: var(--spacing-md);
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
  justify-content: center;
}

.breadcrumb-item {
  font-size: var(--text-base);
}

.breadcrumb-item a {
  color: var(--text);
  transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
  color: var(--primary);
}

.breadcrumb-item.active {
  color: var(--primary);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-light);
}

/* ==================== Footer ==================== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: var(--spacing-3xl);
}

.footer-widget {
  margin-bottom: var(--spacing-xl);
}

.footer-widget .logo {
  display: inline-block;
}

.footer-widget h4 {
  color: var(--white);
  font-size: var(--text-lg);
  margin-bottom: var(--spacing-lg);
  position: relative;
  padding-bottom: var(--spacing-sm);
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary-gradient);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  align-items: flex-start;
}

.footer-contact li i {
  color: var(--primary-light);
  font-size: 18px;
  margin-top: 2px;
}

.footer-contact li span {
  color: rgba(255, 255, 255, 0.7);
}

/* Footer Legal */
.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: var(--spacing-lg);
  justify-content: flex-end;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--primary-light);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.footer-contact li {
  margin-bottom: var(--spacing-md);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--spacing-xl) 0;
  margin-top: var(--spacing-2xl);
}

.copyright-area p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.copyright-area a {
  color: var(--primary-light);
}

/* ==================== Scroll Top ==================== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: var(--z-popover);
  box-shadow: var(--shadow-glow);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow-lg);
}

.scroll-top i {
  font-size: 20px;
  color: var(--white);
}

/* ==================== Utilities ==================== */
.pt-100 { padding-top: 100px; }
.pb-100 { padding-bottom: 100px; }
.pt-130 { padding-top: 130px; }
.pb-130 { padding-bottom: 130px; }
.pt-75 { padding-top: 75px; }
.pb-75 { padding-bottom: 75px; }

@media (max-width: 768px) {
  .pt-100 { padding-top: 60px; }
  .pb-100 { padding-bottom: 60px; }
  .pt-130 { padding-top: 80px; }
  .pb-130 { padding-bottom: 80px; }
}

/* ==================== Animations ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Loading Skeleton */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--light) 0%,
    var(--white) 50%,
    var(--light) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

/* ==================== Responsive Grid Fixes ==================== */
.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row > * {
  padding-right: 15px;
  padding-left: 15px;
}

/* ==================== Figure Enhancements ==================== */
.figure {
  margin-bottom: 0;
}

.figure-img {
  border-radius: var(--radius-lg);
  transition: transform var(--transition-base);
}

.figure:hover .figure-img {
  transform: scale(1.02);
}

.figure-caption {
  padding: var(--spacing-md);
  text-align: center;
  font-weight: 500;
}

.figure-caption a {
  color: var(--primary);
  font-weight: 600;
}

.figure-caption a:hover {
  color: var(--primary-light);
}

/* ==================== Hero Badge ==================== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(9, 120, 30, 0.1);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.hero-badge i {
  font-size: 14px;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

/* Hero Trust Indicators */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--text);
}

.hero-trust .trust-item i {
  color: var(--primary);
  font-size: 18px;
}

/* Hero Shapes */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-gradient);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--secondary-gradient);
  bottom: -50px;
  left: -50px;
  animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  top: 50%;
  left: 50%;
  animation: pulse 6s ease-in-out infinite;
}

/* ==================== Technology Cards ==================== */
.technology-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}

.tech-card {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
  text-align: center;
  border: 1px solid var(--light);
  height: 100%;
}

.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.tech-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.tech-icon i {
  font-size: 36px;
  color: var(--white);
}

.tech-card h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--spacing-sm);
}

.tech-card p {
  color: var(--text);
  margin-bottom: 0;
  font-size: var(--text-sm);
}

/* ==================== Tech Feature Cards (Services) ==================== */
.core-tech-section {
  background: var(--white);
}

.tech-feature-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
  border: 1px solid var(--light);
  height: 100%;
}

.tech-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.tech-feature-content {
  padding: var(--spacing-2xl);
}

.tech-feature-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-lg);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  box-shadow: var(--shadow-glow);
}

.tech-feature-icon i {
  font-size: 32px;
  color: var(--white);
}

.tech-feature-content h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--spacing-md);
}

.tech-feature-content p {
  color: var(--text);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.tech-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-lg) 0;
}

.tech-features-list li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  color: var(--text);
  font-size: var(--text-sm);
}

.tech-features-list li i {
  color: var(--success);
  font-size: 18px;
}

.tech-feature-content .theme-btn {
  margin-top: var(--spacing-md);
  padding: 12px 28px;
  font-size: var(--text-sm);
}

.additional-services-section {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.services-cta-section {
  background: var(--white);
}

/* ==================== Portfolio Section Styles ==================== */
.portfolio-stats-section {
  background: var(--white);
}

.portfolio-stat-card {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-lg);
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid var(--light);
}

.portfolio-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.portfolio-stat-card .stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--spacing-md);
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-stat-card .stat-icon i {
  font-size: 28px;
  color: var(--white);
}

.portfolio-stat-card .stat-number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-xs);
}

.portfolio-stat-card .stat-label {
  font-size: var(--text-sm);
  color: var(--text);
  font-weight: 500;
}

/* Portfolio Filter */
.portfolio-filter-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-2xl);
}

.portfolio-btn {
  padding: 10px 24px;
  background: var(--white);
  border: 2px solid var(--light);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.portfolio-btn:hover,
.portfolio-btn.active {
  background: var(--primary-gradient);
  border-color: transparent;
  color: var(--white);
}

/* Portfolio Cards */
.portfolio-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
}

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

.portfolio-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 120, 30, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-link {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  transition: transform var(--transition-fast);
}

.portfolio-link:hover {
  transform: scale(1.1);
}

.portfolio-content {
  padding: var(--spacing-xl);
}

.portfolio-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(9, 120, 30, 0.1);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-md);
}

.portfolio-content h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--spacing-sm);
}

.portfolio-content p {
  color: var(--text);
  margin-bottom: 0;
  font-size: var(--text-sm);
}

/* Case Study Cards */
.featured-projects-section {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.case-study-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
}

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

.case-study-image {
  height: 200px;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.case-study-card:hover .case-study-image img {
  transform: scale(1.1);
}

.case-study-content {
  padding: var(--spacing-xl);
}

.case-study-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(9, 120, 30, 0.1);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-md);
}

.case-study-content h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--spacing-md);
}

.case-study-content p {
  color: var(--text);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.case-study-meta {
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--light);
}

.case-study-meta .meta-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: var(--text-sm);
  color: var(--text);
}

.case-study-meta .meta-item i {
  color: var(--primary);
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--primary);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: gap var(--transition-fast);
}

.read-more-link:hover {
  gap: var(--spacing-md);
}

/* ==================== Team Section Styles ==================== */
.team-intro-content .lead {
  font-size: var(--text-lg);
  color: var(--text);
  line-height: 1.8;
}

.team-stats {
  display: flex;
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-xl);
  border-top: 2px solid var(--light);
}

.team-stats .stat-item {
  text-align: center;
}

.team-stats .stat-number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-stats .stat-label {
  font-size: var(--text-sm);
  color: var(--text);
  font-weight: 500;
}

.team-stats-wrapper {
  background: var(--white);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

/* Leadership Cards */
.leadership-section {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.team-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-social {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  background: rgba(9, 120, 30, 0.95);
  padding: var(--spacing-md);
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  transition: bottom var(--transition-base);
}

.team-card:hover .team-social {
  bottom: 0;
}

.team-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  transition: all var(--transition-fast);
}

.team-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.team-content {
  padding: var(--spacing-xl);
  text-align: center;
}

.team-content h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--spacing-xs);
}

.team-role {
  display: block;
  color: var(--primary);
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: var(--spacing-md);
}

.team-content p {
  color: var(--text);
  margin-bottom: 0;
  font-size: var(--text-sm);
}

.team-qualifications {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  justify-content: center;
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--light);
}

.qual-badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(9, 120, 30, 0.1);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
}

/* Department Headers */
.department-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
  padding: var(--spacing-lg);
  background: var(--primary-gradient);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glow);
}

.dept-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dept-icon i {
  font-size: 28px;
  color: var(--white);
}

.department-header h3 {
  color: var(--white);
  margin-bottom: 0;
  font-size: var(--text-2xl);
}

/* Team Member Cards */
.team-member-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
  border: 1px solid var(--light);
}

.team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.member-image {
  height: 180px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.team-member-card:hover .member-image img {
  transform: scale(1.1);
}

.member-content {
  padding: var(--spacing-lg);
  text-align: center;
}

.member-content h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--spacing-xs);
}

.member-role {
  display: block;
  color: var(--primary);
  font-weight: 500;
  font-size: var(--text-sm);
}

/* Join Team CTA */
.join-team-cta-section {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.department-section {
  background: var(--white);
}

.technical-team-section {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

/* ==================== Portfolio - 3MTT Section ==================== */
.mtt-training-section {
  background: var(--white);
}

.mtt-content .lead {
  font-size: var(--text-lg);
  color: var(--text);
  line-height: 1.8;
}

.mtt-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--dark);
}

.highlight-item i {
  color: var(--success);
  font-size: 18px;
}

.mtt-image-wrapper {
  position: relative;
}

.mtt-image-wrapper img {
  width: 100%;
  border-radius: var(--radius-2xl);
}

.mtt-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--primary-gradient);
  padding: var(--spacing-lg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glow);
  text-align: center;
  color: var(--white);
}

.mtt-badge .badge-number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1;
}

.mtt-badge .badge-text {
  font-size: var(--text-sm);
  opacity: 0.9;
}

/* ==================== Portfolio - Web Development Projects ==================== */
.webdev-projects-section {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.project-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
}

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

.project-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 14px;
  background: rgba(9, 120, 30, 0.95);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
}

.project-badge.agriculture {
  background: rgba(139, 92, 246, 0.95);
}

.project-badge.web3 {
  background: linear-gradient(135deg, #09781e 0%, #12b85f 100%);
}

.project-badge.training-badge {
  background: linear-gradient(135deg, #2D5BFF 0%, #547BFF 100%);
}

.project-content {
  padding: var(--spacing-xl);
}

.project-content h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--spacing-md);
}

.project-content p {
  color: var(--text);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.project-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-lg) 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-sm);
}

.project-features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: var(--text-sm);
  color: var(--text);
}

.project-features li i {
  color: var(--success);
  font-size: 16px;
}

.project-meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--light);
}

.project-meta .meta-label {
  font-size: var(--text-sm);
  color: var(--text);
}

.project-meta .meta-value {
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 4px 12px;
  background: var(--light);
  border-radius: var(--radius-full);
}

.project-meta .meta-value.active {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

/* ==================== Portfolio - Product Testing ==================== */
.product-testing-section {
  background: var(--white);
}

.testing-image-wrapper {
  position: relative;
}

.testing-image-wrapper img {
  width: 100%;
  border-radius: var(--radius-2xl);
}

.testing-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.testing-badge i {
  font-size: 28px;
  color: var(--white);
}

.testing-content .lead {
  font-size: var(--text-lg);
  color: var(--text);
  line-height: 1.8;
}

.testing-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.testing-services .service-item {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: var(--light);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
  transition: all var(--transition-fast);
}

.testing-services .service-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.service-item .service-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item .service-icon i {
  font-size: 24px;
  color: var(--white);
}

.service-item .service-info h4 {
  font-size: var(--text-base);
  margin-bottom: 4px;
}

.service-item .service-info p {
  font-size: var(--text-sm);
  color: var(--text);
  margin-bottom: 0;
}

/* ==================== Portfolio - Project Table ==================== */
.all-projects-section {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.project-table-wrapper {
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.project-table {
  display: flex;
  flex-direction: column;
}

.project-row {
  display: flex;
  padding: var(--spacing-lg);
  border-bottom: 1px solid var(--light);
  transition: background var(--transition-fast);
}

.project-row:last-child {
  border-bottom: none;
}

.project-row:hover {
  background: var(--light);
}

.project-row.header-row {
  background: var(--primary-gradient);
  color: var(--white);
  font-weight: 600;
}

.project-cell {
  flex: 1;
  padding: 0 var(--spacing-md);
}

.project-cell:first-child {
  flex: 2;
}

.project-cell strong {
  color: var(--dark);
  font-weight: 600;
}

.category-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
}

.category-badge.training {
  background: rgba(9, 120, 30, 0.1);
  color: var(--primary);
}

.category-badge.education {
  background: rgba(45, 91, 255, 0.1);
  color: var(--secondary);
}

.category-badge.agriculture {
  background: rgba(139, 92, 246, 0.1);
  color: #8B5CF6;
}

.category-badge.web3 {
  background: rgba(9, 120, 30, 0.1);
  color: var(--primary);
}

.category-badge.testing {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
}

.status-badge.completed {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.status-badge.active {
  background: rgba(59, 130, 246, 0.1);
  color: var(--info);
}

@media (max-width: 768px) {
  .project-row {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .project-cell {
    width: 100%;
  }
  
  .testing-services {
    grid-template-columns: 1fr;
  }
  
  .mtt-highlights {
    grid-template-columns: 1fr;
  }
}

/* ==================== Mission Vision ==================== */
.mission-vision {
  margin-bottom: var(--spacing-xl);
}

.mv-item {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: var(--light);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
}

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

.mv-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: var(--primary-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-icon i {
  font-size: 24px;
  color: var(--white);
}

.mv-content h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--spacing-xs);
}

.mv-content p {
  margin-bottom: 0;
  font-size: var(--text-sm);
}

/* ==================== Why Choose Us ==================== */
.why-choose-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}

.feature-box {
  padding: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.feature-icon i {
  font-size: 36px;
  color: var(--white);
}

.feature-box h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--spacing-sm);
}

.feature-box p {
  color: var(--text);
  margin-bottom: 0;
}

/* ==================== CTA Box ==================== */
.cta-box {
  background: var(--primary-gradient);
  padding: var(--spacing-3xl);
  border-radius: var(--radius-2xl);
  text-align: center;
  box-shadow: var(--shadow-glow-lg);
}

.cta-box h3 {
  color: var(--white);
  font-size: var(--text-3xl);
  margin-bottom: var(--spacing-sm);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-lg);
  margin-bottom: var(--spacing-lg);
}

.cta-box .theme-btn {
  background: var(--white);
  color: var(--primary);
}

.cta-box .theme-btn:hover {
  background: var(--dark);
  color: var(--white);
}

/* ==================== CTA Section ==================== */
.contact-section.cta-bg {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin: var(--spacing-3xl) 0;
}

.contact-section.cta-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(9, 120, 30, 0.95) 0%, rgba(18, 184, 95, 0.9) 100%);
  z-index: 1;
}

.contact-section.cta-bg .container {
  position: relative;
  z-index: 2;
}

/* ==================== Form Validation Styles ==================== */
.form-control.is-valid {
  border-color: var(--success);
}

.form-control.is-valid:focus {
  border-color: var(--success);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.form-control.is-invalid {
  border-color: var(--error);
}

.form-control.is-invalid:focus {
  border-color: var(--error);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.valid-feedback {
  color: var(--success);
}

.invalid-feedback {
  color: var(--error);
}

/* ========================================
   CORPORATE UI ENHANCEMENTS
   ======================================== */

/* Corporate Banner */
.corporate-banner {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed;
}

.corporate-banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(5, 20, 65, 0.85) 0%, rgba(9, 120, 30, 0.8) 100%);
  z-index: 1;
}

.corporate-banner .banner-content {
  position: relative;
  z-index: 2;
}

.corporate-banner .banner-subtitle {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: var(--spacing-md);
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
}

.corporate-banner h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: var(--spacing-lg);
}

.corporate-banner .breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 12px 24px !important;
  border-radius: var(--radius-lg);
  display: inline-flex;
}

.corporate-banner .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
}

.corporate-banner .breadcrumb-item a:hover {
  color: var(--white);
}

.corporate-banner .breadcrumb-item.active {
  color: var(--primary-light);
}

.corporate-banner .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* Core Values Section */
.core-values-section {
  background: linear-gradient(180deg, var(--white) 0%, rgba(239, 242, 249, 0.5) 100%);
}

.value-card {
  background: var(--white);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  border-radius: var(--radius-lg);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  transition: all var(--transition-base);
}

.value-icon i {
  font-size: 36px;
  color: var(--white);
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-glow-lg);
}

.value-card h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--spacing-sm);
  color: var(--dark);
}

.value-card p {
  color: var(--text);
  margin-bottom: 0;
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* Enhanced Team Cards */
.team-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.team-image {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--light) 0%, rgba(239, 242, 249, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
}

.team-image::before {
  content: '';
  position: absolute;
  top: 40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--light) 0%, rgba(239, 242, 249, 0.3) 100%);
  z-index: 1;
}

.team-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  transition: transform var(--transition-slow);
  position: relative;
  z-index: 2;
  border: 5px solid var(--light);
  box-shadow: var(--shadow-md);
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-social {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  transition: bottom var(--transition-base);
  z-index: 10;
}

.team-card:hover .team-social {
  bottom: 0;
}

.team-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  transition: all var(--transition-fast);
}

.team-social a:hover {
  background: var(--primary-gradient);
  color: var(--white);
  transform: translateY(-3px);
}

.team-content {
  padding: var(--spacing-xl);
  text-align: center;
}

.team-content h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--spacing-xs);
  color: var(--dark);
}

.team-role {
  display: block;
  font-size: var(--text-sm);
  color: var(--primary);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-content p {
  color: var(--text);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.team-qualifications {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  justify-content: center;
}

.team-qualifications {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
}

.qual-badge {
  padding: 4px 12px;
  background: rgba(9, 120, 30, 0.1);
  color: var(--primary-dark);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
}

/* Enhanced Team Member Cards */
.team-member-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-member-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.member-image {
  width: 180px;
  height: 180px;
  margin: 40px auto 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--light) 0%, rgba(239, 242, 249, 0.5) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--light);
  flex-shrink: 0;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform var(--transition-slow);
  border-radius: inherit;
}

.team-member-card:hover .member-image img {
  transform: scale(1.1);
}

.member-content {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  text-align: center;
}

.member-content h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--spacing-xs);
  color: var(--dark);
  font-weight: 600;
}

.member-role {
  display: block;
  font-size: var(--text-sm);
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Team Stats Enhancement */
.team-stats-wrapper {
  background: var(--primary-gradient);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-glow-lg);
}

.team-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
}

.team-stats .stat-item {
  text-align: center;
  color: var(--white);
}

.team-stats .stat-number {
  display: block;
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--white);
}

.team-stats .stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Enhanced Mission Vision */
.mission-vision {
  display: grid;
  gap: var(--spacing-lg);
}

.mv-item {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: var(--light);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
  transition: all var(--transition-base);
}

.mv-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.mv-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-icon i {
  font-size: 24px;
  color: var(--white);
}

.mv-content h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--spacing-xs);
  color: var(--dark);
}

.mv-content p {
  margin-bottom: 0;
  font-size: var(--text-sm);
  color: var(--text);
  line-height: 1.6;
}

/* Enhanced Counter */
.counter-up {
  display: flex;
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-xl);
  border-top: 2px solid var(--light);
}

.counter {
  text-align: center;
}

.counter .countup {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.counter h4 {
  font-size: var(--text-base);
  color: var(--text);
  margin-bottom: 0;
  font-weight: 500;
}

/* Service Section Enhancement */
.service-section {
  position: relative;
}

.service-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(9, 120, 30, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.service-section .container {
  position: relative;
  z-index: 1;
}

/* Process Section Enhancement */
.process-section {
  background: linear-gradient(180deg, var(--white) 0%, rgba(239, 242, 249, 0.3) 100%);
}

/* Team Section Enhancement */
.team-section {
  position: relative;
}

.team-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(9, 120, 30, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.team-section .container {
  position: relative;
  z-index: 1;
}

/* Section Spacing */
.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-130 {
  padding-top: 130px;
}

.pb-130 {
  padding-bottom: 130px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .corporate-banner h2 {
    font-size: var(--text-3xl);
  }
  
  .team-stats {
    flex-direction: column;
    gap: var(--spacing-lg);
  }
  
  .counter-up {
    gap: var(--spacing-lg);
  }
}

@media (max-width: 767px) {
  .mv-item {
    flex-direction: column;
    text-align: center;
  }
  
  .mv-icon {
    margin: 0 auto;
  }
  
  .counter-up {
    flex-direction: column;
    gap: var(--spacing-lg);
  }
}

/* ========================================
   HUB PAGE - TECH & CLIMATE INCUBATION
   ======================================== */

/* Focus Areas Section */
.focus-areas-section {
  background: linear-gradient(180deg, rgba(239, 242, 249, 0.3) 0%, var(--white) 100%);
}

.focus-area-card {
  background: var(--white);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.focus-area-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.focus-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--spacing-lg);
  border-radius: var(--radius-xl);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  transition: all var(--transition-base);
}

.focus-icon i {
  font-size: 36px;
  color: var(--white);
}

.focus-area-card:hover .focus-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-glow-lg);
}

.focus-area-card h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--spacing-md);
  color: var(--dark);
}

.focus-area-card > p {
  color: var(--text);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.focus-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.focus-list li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  color: var(--text);
  font-size: var(--text-sm);
}

.focus-list li i {
  color: var(--success);
  font-size: 18px;
  flex-shrink: 0;
}

/* Enhanced Program Cards */
.program-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.program-card-body {
  padding: var(--spacing-2xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.program-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--spacing-lg);
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  transition: all var(--transition-base);
}

.program-card:hover .program-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-glow-lg);
}

.program-icon i {
  font-size: 36px;
  color: var(--white);
}

.program-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--spacing-md);
  color: var(--dark);
}

.program-card p {
  color: var(--text);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
  flex: 1;
}

.program-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-lg) 0;
}

.program-features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  color: var(--text);
  font-size: var(--text-sm);
}

.program-features li i {
  color: var(--success);
  font-size: 18px;
  flex-shrink: 0;
}

.program-card .theme-btn {
  margin-top: auto;
  padding: 12px 28px;
  font-size: var(--text-sm);
}

/* Hub Intro Section */
.hub-intro-section {
  background: var(--white);
}

.hub-intro-content .lead {
  font-size: var(--text-lg);
  color: var(--text);
  line-height: 1.8;
}

.hub-stats {
  display: flex;
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-xl);
  border-top: 2px solid var(--light);
}

.hub-stats .stat-item {
  text-align: center;
}

.hub-stats .stat-number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hub-stats .stat-label {
  font-size: var(--text-sm);
  color: var(--text);
  font-weight: 500;
}

.hub-intro-image img {
  width: 100%;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

/* Programs Section Background */
.hub-programs-section {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

/* Success Stories Section */
.success-stories-section {
  background: var(--white);
}

/* Responsive for Hub */
@media (max-width: 991px) {
  .hub-stats {
    flex-wrap: wrap;
    gap: var(--spacing-lg);
  }
  
  .focus-area-card {
    padding: var(--spacing-xl);
  }
}

@media (max-width: 767px) {
  .hub-stats {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .program-card-body {
    padding: var(--spacing-xl);
  }
  
  .focus-area-card {
    padding: var(--spacing-lg);
  }
}

/* ========================================
   WELCOME ANIMATION
   ======================================== */

.welcome-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #051441 0%, #09781e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.welcome-overlay.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.welcome-content {
  text-align: center;
  color: var(--white);
  animation: welcomeFadeIn 0.8s ease-out;
  position: relative;
  z-index: 10;
}

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

/* Tech Icons Container */
.welcome-tech-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: var(--spacing-xl);
}

.tech-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px) scale(0.8);
}

/* Web3 Icon */
.web3-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  animation: iconAppear 0.6s ease-out 0.2s forwards;
}

/* AI Icon */
.ai-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  animation: iconAppear 0.6s ease-out 0.4s forwards;
}

/* Security Icon */
.security-icon {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  animation: iconAppear 0.6s ease-out 0.6s forwards;
}

@keyframes iconAppear {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.tech-icon i {
  animation: iconFloat 3s ease-in-out infinite;
}

.web3-icon i {
  animation-delay: 0s;
}

.ai-icon i {
  animation-delay: 0.3s;
}

.security-icon i {
  animation-delay: 0.6s;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.welcome-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--white);
  animation: titleSlideUp 0.8s ease-out 0.8s both;
}

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

.welcome-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-xl);
  animation: subtitleFadeIn 0.8s ease-out 1.1s both;
}

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

.welcome-progress {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto;
  animation: progressFadeIn 0.8s ease-out 1.4s both;
}

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

.progress-bar {
  width: 0;
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-full);
  animation: progressFill 2s ease-out 1.5s forwards;
}

@keyframes progressFill {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Floating Particles */
.welcome-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float 15s infinite;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 20s;
}

.particle:nth-child(2) {
  left: 20%;
  animation-delay: 2s;
  animation-duration: 25s;
}

.particle:nth-child(3) {
  left: 30%;
  animation-delay: 4s;
  animation-duration: 18s;
}

.particle:nth-child(4) {
  left: 50%;
  animation-delay: 1s;
  animation-duration: 22s;
}

.particle:nth-child(5) {
  left: 70%;
  animation-delay: 3s;
  animation-duration: 20s;
}

.particle:nth-child(6) {
  left: 80%;
  animation-delay: 5s;
  animation-duration: 24s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) scale(1);
    opacity: 0;
  }
}

/* ========================================
   ABOUT PAGE STATS SECTION
   ======================================== */

.about-stats-section {
  background: linear-gradient(180deg, var(--white) 0%, rgba(239, 242, 249, 0.5) 100%);
}

.about-stat-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.about-stat-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.about-stat-card .stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--spacing-lg);
  border-radius: var(--radius-lg);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.about-stat-card .stat-icon i {
  font-size: 32px;
  color: var(--white);
}

.about-stat-card .stat-number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-xs);
}

.about-stat-card .stat-label {
  font-size: var(--text-sm);
  color: var(--text);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   CONTACT FORM ALERTS
   ======================================== */

.alert-wrapper {
  margin-bottom: var(--spacing-lg);
}

.alert {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-lg) var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.alert-icon i {
  font-size: 20px;
  color: var(--white);
}

.alert-content {
  flex: 1;
}

.alert-content p {
  margin-bottom: 0;
  font-size: var(--text-sm);
  line-height: 1.6;
}

.alert-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  margin-left: var(--spacing-sm);
}

.alert-close i {
  font-size: 18px;
  color: inherit;
}

.alert-close:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* Success Alert */
.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--success);
  color: var(--success);
}

.alert-success .alert-icon {
  background: var(--success);
}

.alert-success .alert-close {
  color: var(--success);
}

.alert-success .alert-close:hover {
  background: rgba(16, 185, 129, 0.2);
}

/* Error Alert */
.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--error);
  color: var(--error);
}

.alert-error .alert-icon {
  background: var(--error);
}

.alert-error .alert-close {
  color: var(--error);
}

.alert-error .alert-close:hover {
  background: rgba(239, 68, 68, 0.2);
}

/* Button Loader */
.btn-loader {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.btn-loader i {
  font-size: 18px;
}

/* Form Group Error State */
.form-group.has-error input,
.form-group.has-error textarea {
  border-color: var(--error);
  background: rgba(239, 68, 68, 0.05);
}

.form-group.has-error label {
  color: var(--error);
}

.help-block {
  display: block;
  margin-top: var(--spacing-xs);
  font-size: var(--text-xs);
  color: var(--error);
}

/* Responsive */
@media (max-width: 767px) {
  .alert {
    padding: var(--spacing-md);
    gap: var(--spacing-sm);
  }
  
  .alert-icon {
    width: 32px;
    height: 32px;
  }
  
  .alert-icon i {
    font-size: 16px;
  }
  
  .alert-content p {
    font-size: var(--text-xs);
  }
}
