.about-info-wrapper {
  padding: 60px 0;
}

.about-info-wrapper p {
  font-weight: 600 !important;
}

.vision-section {
  position: relative !important;
  top: 0 !important;
  padding: 100px 0 !important;
}

/* New Styles */
.about-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  color: #003e8f;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.purpose-section {
  background: linear-gradient(135deg, #2BAFE3 0%, #003e8f 100%);
    padding: 80px 0;
    color: white  !important;
}

.purpose-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.purpose-icon {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: white;
}

.purpose-section .section-title {
  color: white;
}

.purpose-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.approach-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.approach-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 0 auto;
  border-left: 4px solid #2BAFE3;
}

.approach-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.impact-section {
  padding: 80px 0;
}

.impact-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.impact-card {
  background: white;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-align: center;
}

.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.impact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.3s ease;
}

.impact-card:hover .impact-icon {
  transform: scale(1.1);
}

.impact-icon.education {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.impact-icon.health {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.impact-icon.skill {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.impact-icon.entrepreneurship {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.impact-icon.women {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.impact-icon.environment {
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.impact-icon.infrastructure {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.impact-icon.culture {
  background: linear-gradient(135deg, #ff9a56 0%, #ff6a88 100%);
}

.impact-title {
  color: var(--dark-blue);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.impact-desc {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Vision Section Styles - Simplified */
.vision-section-below {
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
  padding: 80px 0;
}


.vision-section{
    position: relative !important;
    top: 0 !important;
    background-image: url("../Assets/vision_bg.jpg") !important;
    background-repeat: no-repeat !important;
    background-position: center !important ;
    background-size: cover !important;
    padding: 160px 0;  
    background-blend-mode: none !important;  
}

.vision-content {
  max-width: 900px;
  margin: 0 auto;
}

.vision-header {
  text-align: center;
  margin-bottom: 3rem;
}

.vision-intro {
  margin-top: 2rem;
}

.vision-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  text-align: center;
}

.vision-points {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.vision-point {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.vision-point:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.vision-point-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--light-blue) 0%,
    var(--dark-blue) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.vision-point-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin: 0;
}



@media screen and (max-width: 991px) {
  .about-info-wrapper {
    padding: 30px 0;
  }

  .purpose-section,
  .approach-section,
  .impact-section {
    padding: 50px 0;
  }

  .vision-section {
    padding: 60px 0 !important;
  }

  .section-title {
    font-size: 1.6rem;
  }

  
  .impact-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .vision-header {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 576px) {
  .section-title {
    font-size: 1.4rem;
  }

  .vision-title {
    font-size: 1.6rem;
  }

  .intro-text,
  .purpose-text,
  .approach-text {
    font-size: 1rem;
  }

  .impact-grid,
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .vision-point {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .vision-point-icon {
    width: 45px;
    height: 45px;
  }

  .vision-point-icon svg {
    width: 25px;
    height: 25px;
  }
}
/* Vishaka Samiti Section - Optimized */

.vishaka-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.vishaka-header {
    text-align: center;
    margin-bottom: 40px;
}

.vishaka-header .section-title {
    font-size: 32px;
    font-weight: 700;
    color:#222482;
    margin-bottom: 15px;
}

.title-underline-center {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2bafe3, #ff6768);
    margin: 0 auto;
    border-radius: 2px;
}

.vishaka-table-wrapper {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
}

.vishaka-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.vishaka-table thead {
    background: linear-gradient(135deg, #0B3C5D, #0052b3);
}

.vishaka-table th {
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    white-space: nowrap;
}

.vishaka-table th:first-child {
    width: 80px;
    text-align: center;
}

.vishaka-table th:last-child {
    width: 150px;
    text-align: center;
}

.vishaka-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

.vishaka-table tbody tr:hover {
    background-color: #f0f7fb;
}

.vishaka-table tbody tr:nth-child(odd) {
    background-color: #fafbfc;
}

.vishaka-table td {
    padding: 16px 20px;
    font-size: 15px;
    color: #333;
}

.vishaka-table td:first-child {
    text-align: center;
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 16px;
}

.vishaka-table td:nth-child(2) {
    font-weight: 500;
    color: #2c3e50;
}

.vishaka-table td:last-child {
    text-align: center;
    font-weight: 600;
    color: var(--light-blue);
}

/* President and Vice President emphasis */
.vishaka-table tbody tr:first-child td:last-child,
.vishaka-table tbody tr:nth-child(2) td:last-child {
    color: var(--dark-blue);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .vishaka-section {
        padding: 40px 0;
    }

    .vishaka-header .section-title {
        font-size: 26px;
    }

    .vishaka-table th,
    .vishaka-table td {
        padding: 12px 15px;
        font-size: 14px;
    }

    .vishaka-table th:first-child,
    .vishaka-table td:first-child {
        width: 60px;
    }

    .vishaka-table th:last-child,
    .vishaka-table td:last-child {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .vishaka-section {
        padding: 30px 0;
    }

    .vishaka-header .section-title {
        font-size: 22px;
    }

    .title-underline-center {
        width: 60px;
        height: 3px;
    }

    .vishaka-table th,
    .vishaka-table td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .vishaka-table th:first-child,
    .vishaka-table td:first-child {
        width: 50px;
        font-size: 14px;
    }

    .vishaka-table th:last-child,
    .vishaka-table td:last-child {
        width: 100px;
        font-size: 13px;
    }
}