/* Modern Black Card Styling for Vision/Mission/Dream */
.itembox.modern-card {
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(145deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.itembox.modern-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.card-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #000000 0%, #222222 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.itembox.modern-card:hover .card-icon-wrap {
  transform: scale(1.15) rotate(8deg);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

.card-icon {
  font-size: 1.75rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.itembox.modern-card .v-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  position: relative;
  display: inline-block;
}

.itembox.modern-card .v-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  border-radius: 2px;
}

.itembox.modern-card .v-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1rem;
}

/* Different accent colors for each card icon */
.itembox.modern-card:nth-child(1) .card-icon-wrap {
  border-color: rgba(139, 69, 255, 0.5);
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
}

.itembox.modern-card:nth-child(2) .card-icon-wrap {
  border-color: rgba(0, 150, 255, 0.5);
  background: linear-gradient(135deg, #0a1a2e 0%, #1b2d4e 50%, #0a1a2e 100%);
}

.itembox.modern-card:nth-child(3) .card-icon-wrap {
  border-color: rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, #2e2a0a 0%, #4e4b1b 50%, #2e2a0a 100%);
}

/* Glow effect on hover */
.itembox.modern-card:nth-child(1):hover {
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(139, 69, 255, 0.4);
}

.itembox.modern-card:nth-child(2):hover {
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(0, 150, 255, 0.4);
}

.itembox.modern-card:nth-child(3):hover {
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(255, 215, 0, 0.4);
}

/* =========================================
   Executive Summary Modern Styling
   ========================================= */

.executive-sum {
  background: linear-gradient(180deg, #270147 0%, #280130 50%, #0d0d0d 100%);
  padding: 4rem 0 6rem;
  position: relative;
}

.executive-sum .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.executive-sum .section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  border-radius: 2px;
}

.executive-sum .ex-content {
  max-width: 900px;
  margin: 0 auto;
}

.executive-sum .body {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.executive-sum .body strong {
  color: #ffffff;
  font-weight: 700;
}

/* Feature Boxes in Executive Summary */
.executive-sum .section-desc {
  background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.executive-sum .section-desc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8b45ff, #0096ff, #ffd700);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.executive-sum .section-desc:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.executive-sum .section-desc:hover::before {
  transform: scaleX(1);
}

.executive-sum .section-desc strong {
  color: #ffffff;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* Custom Shape Divider */
.executive-sum .custom-shape-divider-bottom-1751965105 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.executive-sum .custom-shape-divider-bottom-1751965105 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.executive-sum .custom-shape-divider-bottom-1751965105 .shape-fill {
  fill: #1a0a2e;
}

/* =========================================
   Why Choose Us Section - Purple Gradient
   ========================================= */

.why-choose-section {
  background: linear-gradient(180deg, #0f0518 0%, #1a0a2e 30%, #2d1b4e 70%, #0f0518 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(139, 69, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(0, 150, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.why-choose-section .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(139, 69, 255, 0.3);
}

.why-choose-section > .container > .row > .col-lg-6 > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.why-choose-section .feature {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-choose-section .feature:hover {
  transform: translateY(-8px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(139, 69, 255, 0.2);
  border-color: rgba(139, 69, 255, 0.3);
}

.why-choose-section .feature .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b45ff 0%, #0096ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(139, 69, 255, 0.4);
}

.why-choose-section .feature .icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.why-choose-section .feature h3 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-choose-section .feature p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.why-choose-section .img-wrap {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 20px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}

.why-choose-section .img-wrap:hover {
  transform: scale(1.02);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(139, 69, 255, 0.2);
}

.why-choose-section .img-wrap img {
  border-radius: 12px;
}

/* =========================================
   Objectives Section - Purple Gradient
   ========================================= */

.objective-section {
  background: linear-gradient(180deg, #0f0518 0%, #1a0a2e 50%, #2d1b4e 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.objective-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(139, 69, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

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

.objective-section .section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  text-align: center;
  text-shadow: 0 2px 20px rgba(139, 69, 255, 0.4);
  position: relative;
}

.objective-section .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #8b45ff, #0096ff);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.objective-section .section-list {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid #8b45ff;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.6;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.objective-section .section-list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(139, 69, 255, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.objective-section .section-list:hover {
  transform: translateX(8px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-left-color: #0096ff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.objective-section .section-list:hover::before {
  opacity: 1;
}

.objective-section .section-list strong {
  color: #ffffff;
  font-weight: 600;
}

/* =========================================
   How It Works Section - Purple Gradient
   ========================================= */

.how-section {
  background: linear-gradient(180deg, #2d1b4e 0%, #1a0a2e 50%, #0f0518 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.how-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(139, 69, 255, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 30% 70%, rgba(0, 150, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.how-section .section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  text-align: center;
  text-shadow: 0 2px 20px rgba(139, 69, 255, 0.5);
  position: relative;
}

.how-section .section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #8b45ff, #0096ff, #8b45ff);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.how-section ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.how-section ul li {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid #8b45ff;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.7;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.how-section ul li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(139, 69, 255, 0.15) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.how-section ul li:hover {
  transform: translateX(10px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-left-color: #0096ff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.how-section ul li:hover::before {
  opacity: 1;
}

.how-section ul li strong {
  color: #ffffff;
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

/* Step number indicator */
.how-section ul li {
  counter-increment: step-counter;
}

.how-section ul li::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b45ff 0%, #0096ff 100%);
  opacity: 0.3;
  transition: all 0.3s ease;
}

.how-section ul li:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.2);
  box-shadow: 0 0 15px rgba(139, 69, 255, 0.5);
}

/* =========================================
   Responsive adjustments
   ========================================= */

@media (max-width: 768px) {
  .executive-sum {
    padding: 3rem 0 4rem;
  }

  .executive-sum .section-title {
    font-size: 1.8rem;
  }

  .executive-sum .body {
    font-size: 1rem;
  }

  .executive-sum .section-desc {
    padding: 1.5rem 1rem;
  }

  .why-choose-section {
    padding: 3rem 0;
  }

  .why-choose-section .section-title {
    font-size: 1.8rem;
  }

  .why-choose-section > .container > .row > .col-lg-6 > p {
    font-size: 1rem;
  }

  .why-choose-section .feature {
    padding: 1rem;
  }

  .objective-section {
    padding: 3rem 0;
  }

  .objective-section .section-title {
    font-size: 1.5rem;
  }

  .objective-section .section-list {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }

  .how-section {
    padding: 3rem 0;
  }

  .how-section .section-title {
    font-size: 1.5rem;
  }

  .how-section ul li {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    padding-right: 3rem;
  }

  .how-section ul li::after {
    right: 0.75rem;
    width: 24px;
    height: 24px;
  }
}

/* =========================================
   About Wolfpack Section Styling
   ========================================= */

.we-help-section {
  background: linear-gradient(180deg, #0f0518 0%, #1a0a2e 30%, #2d1b4e 70%, #0f0518 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.we-help-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(139, 69, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(0, 150, 255, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

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

.we-help-section .section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2rem;
  text-shadow: 0 2px 20px rgba(139, 69, 255, 0.4);
}

.we-help-section .about-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.8;
}

.we-help-section .about-content .lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.we-help-section .about-content strong {
  color: #ffffff;
  font-weight: 600;
}

.we-help-section .custom-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.we-help-section .custom-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.we-help-section .custom-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #8b45ff, #0096ff);
  border-radius: 50%;
}

.we-help-section .btn {
  background: linear-gradient(135deg, #8b45ff 0%, #0096ff 100%);
  color: #ffffff;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.we-help-section .btn:hover {
  background: linear-gradient(135deg, #0096ff 0%, #8b45ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 69, 255, 0.4);
  color: #ffffff;
}

/* About Wolfpack Responsive */
@media (max-width: 768px) {
  .we-help-section {
    padding: 3rem 0;
  }

  .we-help-section .section-title {
    font-size: 1.75rem;
  }

  .we-help-section .about-content p {
    font-size: 0.95rem;
  }

  .we-help-section .about-content .lead {
    font-size: 1.05rem;
  }
}
