    body {
      background:#fff;
      color: #ffffff;
    }

    .hero-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 60px 40px;
      flex-wrap: wrap;
      height: 80vh;
      background: linear-gradient(to right, #d8e5ff, #ffffff);
    }

    .hero-left {
      flex: 1;
      max-width: 500px;
      margin-left: 13%;
    }

    .hero-left .label {
      font-size: 14px;
      font-weight: 500;
      color: #13265e;
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }

    .hero-left .label span {
      background-color: #b5ff2c00;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      display: inline-block;
      margin-right: 8px;
    }

    .hero-left h1 {
      color: #1a0c45;
      font-size: 36px;
      font-weight: bold;
      margin-bottom: 16px;
    }

    .hero-left p {
      font-size: 15px;
      color: #000000;
      margin-bottom: 25px;
      line-height: 1.6;
    }

    .hero-buttons {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .hero-buttons .explore-btn {
      background-color: #1b0aff;
      color: #FFFFFF;
      padding: 10px 24px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
    }
    .hero-buttons .explore-btn:hover {
      background-color: #13265e;
      transform: scale(1.05);
    }

    .hero-buttons .services-link {
      color: #1a0c45;
      text-decoration: underline;
      font-weight: 500;
    }

    .hero-right {
      rotate: 10deg;
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .image-grid {
      display: grid;
      width: 100%;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      grid-gap: 10px;
      border-radius: 30px;
      overflow: hidden;
      width: 350px;
      height: 350px;
    }

    .image-grid img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%);
    }

    /* Horizontal Category Bar */
    .category-bar {
        width: 100%;
      display: flex;
      justify-content: space-around;
      background-color: #13265e;
      color: white;
      padding: 14px 10px;
      flex-wrap: wrap;
      font-size: 14px;
    }

    .category-bar div {
      display: flex;
      align-items: center;
      padding: 10px;
      color: white;
      gap: 6px;
      white-space: nowrap;
    }

    .category-bar div::before {
      content: '✳';
      color: #ffffff;
      font-size: 12px;
    }

    /* Responsive */
   /* Responsive Adjustments — Tablets and Smaller */
@media (max-width: 1024px) {
  .hero-section {
    height: auto;
    padding: 50px 30px;
    flex-direction: column;
    gap: 40px;
  }

  .hero-left {
    margin-left: 0;
    max-width: 90%;
    text-align: center;
  }

  .hero-left .label {
    justify-content: center;
  }

  .hero-left h1 {
    font-size: 30px;
  }

  .hero-left p {
    font-size: 14px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-right {
    justify-content: center;
  }

  .image-grid {
    width: 300px;
    height: 300px;
  }

  .category-bar {
    font-size: 13px;
    padding: 10px 8px;
  }
}

@media (max-width: 768px) {
  .hero-left h1 {
    font-size: 26px;
  }

  .hero-left p {
    font-size: 13.5px;
  }

  .image-grid {
    width: 250px;
    height: 250px;
  }

  .category-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .category-bar::-webkit-scrollbar {
    display: none;
  }

  .category-bar div {
    flex: 0 0 auto;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 30px 15px;
  }

  .hero-left h1 {
    font-size: 22px;
  }

  .hero-left p {
    font-size: 13px;
  }

  .hero-buttons .explore-btn {
    padding: 8px 20px;
    font-size: 14px;
  }

  .image-grid {
    width: 220px;
    height: 220px;
  }

  .category-bar {
    font-size: 12px;
  }

  .category-bar div {
    padding: 8px;
  }
}

.home_miss_viss {
  background: linear-gradient(to right, #d8e5ff,#ffffff);
  padding: 50px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.home_miss_viss .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.home_miss_viss .section {
  flex: 1 1 45%;
  background: linear-gradient(to right, #ffffff, #d8e5ff  );
  margin: 10px;
  padding: 30px;
  border-left: 5px solid #13265e;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.home_miss_viss .section:hover {
  background: linear-gradient(to right, #d8e5ff, #d8e5ff);
  transform: translateY(-5px);
}

.home_miss_viss h2 {
  color: #13265e;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.home_miss_viss p {
  color: #0f0f0f;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.home_miss_viss ul {
  padding-left: 20px;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

.home_miss_viss ul li {
  list-style-type: disc;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .home_miss_viss .section {
    flex: 1 1 100%;
  }
}

.home_champ {
  background: linear-gradient(to right, #d8e5ff, #d8e5ff);
  padding: 30px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.home_champ .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.home_champ .campaign {
  flex: 1 1 45%;
  background: linear-gradient(to right, #d8e5ff, #d8e5ff);
  margin: 10px;
  padding: 25px 30px;
  border-left: 5px solid #13265e;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.home_champ .campaign:hover {
  background: linear-gradient(to right,  #d8e5ff,#d8e5ff);
  transform: translateY(-5px);
}

.home_champ h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #13265e;
}

.home_champ p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}
.home_head_champ_data{
  width: 100%;
  font-weight: 700;
  color: #000;
  background-color: transparent;
  margin-bottom: 20px;
  text-align: center;
}
.home_head_champ_data_vsn{
  font-weight: 600;
  font-size: 2rem;
  color: #000;
  width: 100%;
  font-weight: 800;
  background-color: transparent;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .home_champ .campaign {
    flex: 1 1 100%;
  }
}

.home_impact {
  background-color: #f4fdf4;
  padding: 50px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.home_impact .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.home_impact .impact-box {
  flex: 1 1 30%;
  background: #ffffff;
  margin: 10px;
  padding: 25px 30px;
  border-left: 5px solid #28a745;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.home_impact .impact-box:hover {
  transform: translateY(-5px);
}

.home_impact h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #228b22;
}

.home_impact ul {
  list-style: none;
  padding-left: 0;
}

.home_impact ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}


.home_impact p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

.home_impact .author {
  margin-top: 10px;
  font-style: italic;
  color: #555;
}

@media (max-width: 768px) {
  .home_impact .impact-box {
    flex: 1 1 100%;
  }
}

