
    /* ====== Base Styles ====== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Manrope:wght@400;500;600&display=swap');

* {
   
  font-family: "Manrope", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
}.project-section {
      padding: 120px 8% 60px;
      background: #fdfdfd;
     
      text-align: center;
    }

    .project-title {
      font-size: 2.6em;
      font-weight: 700;
      color: #003366;
      text-align: center;
      margin-bottom: 10px;
      position: relative;
    }

    .project-title::after {
      content: "";
      display: block;
      width: 90px;
      height: 4px;
      background-color: #003366;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .sub-title {
      font-size: 1.8em;
      margin: 40px 0 20px;
      color: #003366;
      position: relative;
    }

    .sub-title::after {
      content: "";
      display: block;
      width: 90px;
      height: 4px;
      background-color: #003366;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    /* Feature & Safe Space Cards */
    .feature-cards,
    .v-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .feature-card,
    .achievemevvnt-card {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 15px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
      padding: 20px;
      width: 30%;
      text-align: left;
      font-size: 0.95em;
    }

    .safe-space-card {
      margin: 40px auto;
      background: #e9f5ff;
      border-left: 6px solid #003366;
      padding: 25px 40px;
      border-radius: 12px;
      max-width: 900px;
      text-align: justify;
    }

    
   

   
  /* ============================= */
/* Project Gallery Styling */
/* ============================= */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 5%;
}

.gallery-item {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-bottom: 3px solid #003366;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item p {
  
  font-size: 0.95em;
  font-weight: 500;
  color: #003366;
  padding: 15px 10px;
  background: #f7fafc;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-item img {
    height: 200px;
  }

  .gallery-item p {
    font-size: 0.9em;
  }
}




    /* ====================== */
    /* Responsive Design */
    /* ====================== */
    @media screen and (max-width: 1024px) {

      .feature-card,
      .achievement-card {
        width: 45%;
      }
    }

    @media screen and (max-width: 768px) {

      .feature-card,
      .achievement-card {
        width: 100%;
      }

      .safe-space-card {
        padding: 20px 25px;
      }

      .project-title {
        font-size: 2em;
      }

      .sub-title {
        font-size: 1.5em;
      }
    }
/* Justify paragraphs in project section */
.project-section p {
    text-align: justify;
    line-height: 1.7; /* optional: improves readability */
    text-justify: inter-word; /* ensures spacing looks clean in justified text */
}



    /* 🌟 Achievement Cards Section */
.achievement-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 40px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  border-radius: 15px;
  
}

/* 🎖️ Individual Card Styling */
.achievement-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  padding: 20px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #003366;
}

/* Hover Effect */
.achievement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.15);
}

/* 🏷️ Card Title */
.achievement-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #003366;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 📋 List Styling */
.achievement-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.achievement-card ul li {
  font-size: 0.86rem;
  color: #003366;
  line-height: 1.5;
  margin-bottom: 8px;
  text-align: justify;
  position: relative;
  padding-left: 18px;
}

/* ✅ Custom Bullet Icon */
.achievement-card ul li::before {
  content: "✔";
  color: #003366;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
