 /* ====== 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;
}.what-we-do {
  background-color: #f9f9f9;
  padding: 80px 60px;
 
  width: 100%;
  box-sizing: border-box;
}
.what-we-do .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  color: #003366;

  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.section-underline {
  width: 80px; /* final width */
  height: 4px;
  background-color: #003366;
  margin: 0 auto 50px;
  border-radius: 2px;
  opacity: 0;
  transform: translateX(50px); /* start off to the right */
  transition: all 0.8s ease;
}
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  transition: opacity 0.8s ease, transform 0.8s ease;
  opacity: 0;
  transform: translateY(50px);
}
.activity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 1rem;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #003366;
  opacity: 0;
  transform: translateY(40px);
}
.activity-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 15px;
}
.activity-card h3 {
  font-size: 1rem;
  font-weight: 600;
}
.activity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,123,255,0.15);
  border: 2px solid #003366;
}
/* Animation Active States */
/* Active state when section is visible */
.what-we-do.visible .section-title {
  opacity: 1;
  transform: translateY(0);
}

.what-we-do.visible .section-underline {
  opacity: 1;
  transform: translateX(0);
}
.what-we-do.visible .cards-container {
  opacity: 1;
  transform: translateY(0);
}
.what-we-do.visible .activity-card {
  opacity: 1;
  transform: translateY(0);
}
/* Responsive */
@media (max-width: 768px) {
  .what-we-do { padding: 60px 20px; }
  .activity-card { padding: 15px; }
  .activity-card img { height: 140px; }
}


        /* 🌟 Awareness Raising Section */
        .awareness-section {
            padding: 100px 20px 60px;
            /* top padding increased from 60px to 100px */
            background: linear-gradient(135deg, #f8fafc, #eef2ff);
            font-family: "Poppins", sans-serif;
        }

        .awareness-section h2 {
            text-align: center;
            font-size: 1.8rem;
            color: #003366;
            margin-bottom: 25px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .awareness-section .intro {
            text-align: justify;
            max-width: 900px;
            margin: 0 auto 40px;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #003366;
        }

        /* 🃏 Awareness Cards Grid */
        .awareness-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            max-width: 1100px;
            margin: 0 auto;
        }

        /* 🎴 Individual Card */
        .awareness-card {
            background: #fff;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .awareness-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(79, 70, 229, 0.15);
        }

        .awareness-card h3 {
            color: #003366;
            font-size: 1.1rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .awareness-card p {
            text-align: justify;
            font-size: 0.9rem;
            line-height: 1.5;
            color: #003366;
        }

        /* 🖼️ Card Images */
        .card-image {
            margin-top: 15px;
            text-align: center;
        }

        .card-image img {
            width: 100%;
            max-height: 180px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 8px;
        }

        .card-image p {
            font-size: 0.85rem;
            color: #003366;
        }

        /* 📱 Mobile Responsive */
        @media (max-width: 768px) {

            .awareness-card p,
            .card-image p {
                font-size: 0.85rem;
            }

            .card-image img {
                max-height: 140px;
            }
        }

        @media (max-width: 480px) {
            .awareness-section {
                padding: 40px 10px;
            }

            .card-image img {
                max-height: 120px;
            }
        }

        /* Bright bullets */
ul.bright-bullets {
  list-style: none; /* remove default bullets */
  padding-left: 0;
}

ul.bright-bullets li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #003366;
}

ul.bright-bullets li::before {
  content: "•"; /* bullet symbol */
  position: absolute;
  left: 0;
  top: 0;
  color: #003366; /* bright orange/yellow bullet */
  font-size: 1.3rem;
  line-height: 1;
}

/* Images below list */
.awareness-images {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center; /* center images */
}

.awareness-images img {
  width: 45%; /* responsive width for 2 images */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.awareness-images img:hover {
  transform: scale(1.05);
}
