/* ===========================
   Our Vision Section Styles
   =========================== */

.our-vision-section {
  position: relative;
  padding:0 0 60px 0;
  background: #ffffff;
  overflow: hidden;
}

.our-vision-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.vision-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.02;
}

.vision-background canvas {
  width: 100%;
  height: 100%;
}

.our-vision-section .container {
  position: relative;
  z-index: 2;
}

/* Vision Content Styles */
.vision-content {
  padding: 40px 0;
}
/* 
.vision-content .section-title h3 {
  color: #3b82f6;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
} */

.vision-content .section-title h2 {
  font-size: 42px;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: 700;
}

.vision-content .section-title h2 span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

/* Vision Statement */
.vision-statement {
  margin: 40px 0;
  padding: 30px;
  background: #f0f9ff;
  border-left: 4px solid var(--accent-secondary-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.vision-statement:hover {
  background: #e0f2fe;
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(59, 130, 246, 0.1);
}

.vision-main-text {
  color: #1e293b;
  font-size: 18px;
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

/* Vision Pillars */
.vision-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.vision-pillar {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.vision-pillar:hover {
  background: #f0f9ff;
  border-color: #3b82f6;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.pillar-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--accent-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}

.pillar-content h4 {
  color: #0f172a;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.pillar-content p {
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Vision Visual */
.vision-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  gap: 30px;
}

/* Feature Cards Grid */
.vision-feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #f0f9ff 0%, #f8fbff 100%);
  border: 2px solid #e0f2fe;
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  border-color: var(--accent-secondary-color);
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

.feature-card-1,
.feature-card-3 {
  animation: slideInLeft 0.6s ease-out;
}

.feature-card-2,
.feature-card-4 {
  animation: slideInRight 0.6s ease-out;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.feature-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.card-text {
  position: relative;
  z-index: 1;
}

.card-text h4 {
  color: #0f172a;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.card-text p {
  color: #475569;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* Vision Stat Box */
.vision-stat-box {
  width: 100%;
  max-width: 400px;
  padding: 40px 30px;
  background: var(--accent-gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #fff;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.vision-stat-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.vision-stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(59, 130, 246, 0.35);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  flex: 1;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: #dbeafe;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .our-vision-section {
    padding: 60px 0;
  }

  .vision-content .section-title h2 {
    font-size: 36px;
  }

  .vision-feature-cards {
    gap: 15px;
  }

  .feature-card {
    padding: 25px;
  }

  .card-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .card-text h4 {
    font-size: 15px;
  }

  .card-text p {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .our-vision-section {
    padding: 50px 0;
  }

  .vision-content .section-title h2 {
    font-size: 28px;
  }

  .vision-content .section-title h3 {
    font-size: 14px;
  }

  .vision-statement {
    padding: 20px;
    margin: 30px 0;
  }

  .vision-main-text {
    font-size: 16px;
  }

  .vision-pillars {
    gap: 15px;
  }

  .vision-pillar {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .pillar-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
    margin: 0 auto;
  }

  .pillar-content h4 {
    font-size: 16px;
  }

  .pillar-content p {
    font-size: 13px;
  }

  .vision-feature-cards {
    gap: 15px;
  }

  .feature-card {
    padding: 20px;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
    margin-bottom: 12px;
  }

  .card-text h4 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .card-text p {
    font-size: 12px;
  }

  .vision-stat-box {
    padding: 30px 20px;
    gap: 20px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12px;
  }

  .stat-divider {
    height: 40px;
  }
}

@media (max-width: 576px) {
  .our-vision-section {
    padding: 40px 0;
  }

  .vision-content .section-title h2 {
    font-size: 24px;
  }

  .vision-main-text {
    font-size: 15px;
  }

  .vision-statement {
    padding: 15px;
    border-left-width: 3px;
  }

  .vision-pillar {
    padding: 15px;
  }

  .pillar-content h4 {
    font-size: 15px;
  }

  .pillar-content p {
    font-size: 12px;
  }

  .vision-feature-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card {
    padding: 18px;
  }

  .card-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .card-text h4 {
    font-size: 13px;
  }

  .card-text p {
    font-size: 11px;
  }

  .vision-stat-box {
    flex-direction: column;
    gap: 15px;
    padding: 25px 20px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 11px;
  }
}
