/* General Section Styling */
.about-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
}

/* Container */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Title */
.about-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    position: relative; 
        color: #C22F76
}

.about-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color:  #C22F76;;
    margin: 8px auto 0;
    border-radius: 2px;
}

/* Content Layout */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
    align-items: center;
}

/* About Text */
.about-text {
    flex: 1 1 500px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Stats Grid */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    flex: 1 1 400px;
}

/* Stat Card */
.stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 28px;
    font-weight: bold;
        color: #020101;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}
/* Section Styling */
.impact-section {
    padding: 60px 20px;
    background-color: #fff;
    font-family: Arial, sans-serif;
}

/* Container */
.impact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Title */
.impact-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
        color: #C22F76
}

.impact-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color:  #C22F76;;
    margin: 8px auto 0;
    border-radius: 2px;
}

/* Grid Layout */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* Card Styling */
.impact-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
     border-top: 4px solid   #C22F76;;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    /* border-top: 4px solid #6c63ff; */
}

/* Icon */
.impact-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* Heading */
.impact-heading {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
        color: #393135;
}

/* Text */
.impact-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}
/* Section Styling */
.achievements-section {
    padding: 60px 20px;
    background-color: #fff;
    font-family: Arial, sans-serif;
}

/* Container */
.achievements-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Title */
.achievements-title {
    font-size: 32px;
    font-weight: bold;
        color: #C22F76;
    text-align: left;
    margin-bottom: 5px;
}

.achievements-subtitle {
    font-size: 16px;
    color: #777;
    margin-bottom: 25px;
}

/* Timeline Layout */
.achievements-timeline {
    position: relative;
    padding-left: 40px; /* Increased from 30px to make room for centered dot */
    border-left: 2px solid  #C22F76; /* Changed to match dot color */
}

/* Timeline Items */
.timeline-item {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Timeline Dots */
.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.75rem;
    top: 1.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background:  #c71269;
    border: 3px solid white;

}

/* Heading and Text */
.timeline-heading {
       color: #000000ba;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
}

.timeline-text {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

/* Wrapper */
.geographic-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
.geographic-header {
    text-align: center;
    margin-bottom: 40px;
}

.geographic-title {
    font-size: 36px;
    font-weight: 700;
      color: #C22F76;
    margin-bottom: 10px;
}

.geographic-subtitle {
    font-size: 18px;
    color: #555;
    margin: 0;
    border-bottom: 2px solid   #C22F76;;
    display: inline-block;
    padding-bottom: 8px;
}

/* Section Titles */
.section-title {
    font-size: 28px;
    font-weight: 600;
      color: #C22F76;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
    margin-bottom: 25px;
}

/* Operational Centers Grid */
.operational-section {
    margin-bottom: 50px;
}

.operational-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
}

.operational-item {
    background-color: #e0c9e0;
    border: 1px solid #62839c;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease;
}

.operational-item strong {
    display: block;
    font-size: 22px;
      color: #000000;
    margin-bottom: 8px;
}

.operational-item small {
    font-size: 18px;
    color: #444;
    line-height: 1.4;
}

.operational-item:hover {
    transform: translateY(-4px);
}

/* Organizational Strengths */
.strengths-section {
    margin-bottom: 50px;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
    gap: 25px;
}

.strength-card {
    background-color: #ffffff;
    border-left: 4px solid  #C22F76;;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.strength-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.strength-title {
    font-size: 22px;
    font-weight: bold;
      color: #000000;
    margin-bottom: 10px;
}

.strength-card p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

.future-commitments-section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

/* Header with main title and subtitle */
.future-commitments-section .section-header {
  margin-bottom: 30px;
  text-align: center;
    color: #C22F76;
}

.future-commitments-section .page-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.future-commitments-section .page-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin: 0;
}

/* Inner section title */
.future-commitments-section .section {
  margin-top: 30px;
}

.future-commitments-section .section-title {
  font-size: 1.8rem;
  font-weight: 700;
    color: #C22F76;
  border-bottom: 3px solid #C22F76;;
  padding-bottom: 8px;
  margin-bottom: 25px;
}

/* Grid for cards */
.future-commitments-section .content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Cards styling */
.future-commitments-section .card {
  background-color: #f6f9ff;
  padding: 20px 22px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(58, 92, 168, 0.1);
  border-left: 4px solid #C22F76;;
  transition: transform 0.3s ease;
}

.future-commitments-section .card:hover {
  transform: translateY(-6px);
}

.future-commitments-section .card-title {
    color: #000000;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 12px;
}

.future-commitments-section .card p {
  font-size: 18px;
  line-height: 1.5;
  color: #444444;
  margin: 0;
}
.highlight-box {
  background-color: #eddce8f0; 
  padding: 30px 25px;
  border-radius: 12px;
  max-width: 900px;
  margin: 40px auto;
  box-shadow: 0 3px 8px rgba(58, 92, 168, 0.1);
  color: #1a3b8b;
  font-family: Arial, sans-serif;
  line-height: 1.8;
  font-size: 1.1rem;
}

.highlight-box .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 18px;
  border-bottom: 2px solid #c2c2c2;
  padding-bottom: 8px;
    color: #C22F76;
}

.highlight-box p {
  margin-top: 1rem;
  color: rgb(0, 0, 0);
}
.highlight-box p:first-of-type {
  margin-top: 0;
}
