body {
      background: #f8f9fa;
    }
    .notice-board {
      width: 97%;
     /* max-width: 600px;*/
      height: 580px;
      overflow: hidden;
      /*border: 2px solid #0d6efd;*/
      border-radius: 1em;
      background: white;
      margin: 18px auto;
      position: relative;
	  margin:0em 0em 0em;
	  
    }
    .scrolling-text {
      display: inline-block;
      position: absolute;
      width: 100%;
      animation: scroll-up 12s linear infinite;
    }
    .notice-item {
      padding: 10px 20px;
      border-bottom: 1px solid #dee2e6;
      font-weight: 500;
    }
    @keyframes scroll-up {
      0% {
        top: 100%;
      }
      100% {
        top: -100%;
      }
    }
    .notice-board:hover .scrolling-text {
      animation-play-state: paused;
    }
    h2.notice-title {
		
      text-align: center;
      font-weight: bold;
     
      color:dark #003;
    }
	.rotary-impact-section {
 background:#734F96;

  color: white;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1.2rem;
  
  margin: 0 auto 40px auto;
}

.impact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card2 {
  background: white;
  color: #0d0add;
  border-radius: 10px;
  padding: 30px;
  width: 280px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card2 img {
  width: 60px;
  margin-bottom: 20px;
}

.card2 h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card2 p {
  font-size: 1rem;
}

.card2:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}
.dignitary-card {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      max-width: 1800px;
     
      background-color: #fff;
      border-radius: 20px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }

    .left-side {
      flex: 1;
      min-width: 280px;
      max-width: 400px;
      background: #f7f9fb;
      padding: 30px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border-right: 1px solid #e0e0e0;
    }

    .left-side img {
      width: 50%;
      border-radius: 15px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      margin-bottom: 20px;
    }

    .left-side h5 {
      font-weight: 700;
      color: #003366;
      margin-bottom: 5px;
    }

    .left-side p {
      color: #666;
      font-size: 0.95rem;
      margin-bottom: 0;
    }

    .right-side {
      flex: 2;
      padding: 40px;
    }

    .right-side p {
      color: #333;
      line-height: 1.7;
      margin-bottom: 16px;
    }

    @media (max-width: 768px) {
      .dignitary-card {
        flex-direction: column;
      }
      .left-side {
        border-right: none;
        border-bottom: 1px solid #ddd;
      }
    }