.tips-section {
      background-color: #f9f9f9;
      padding: 60px 0;
       font-family: 'Segoe UI', Tahoma, sans-serif;
    }

    .tips-section h2 {
      color: #000000;
      font-weight: bold;
      margin-bottom: 40px;
    }

    .tip-card {
      background: #fff;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      height: 100%;
    }

    .tip-card:hover {
      transform: translateY(-5px);
    }

    .tip-icon {
      font-size: 36px;
      color: #7b2ff7;
      margin-bottom: 20px;
    }

    .tip-title {
      font-size: 18px;
      font-weight: 600;
      color: #333;
      margin-bottom: 10px;
    }

    .tip-desc {
      font-size: 14px;
      color: #555;
      margin-bottom: 15px;
    }

    .tip-link {
      font-weight: 500;
      color: #7b2ff7;
      text-decoration: none;
    }

    .tip-link:hover {
      text-decoration: underline;
    }
     .local-stories {
      background: #f0f0f8;
      padding: 60px 0;
    }

    .local-stories h2 {
      text-align: center;
      font-weight: 600;
      color: #7b2ff7;
      margin-bottom: 50px;
    }

    .story-box {
      display: flex;
      gap: 20px;
      background: #fff;
      border-left: 5px solid #7b2ff7;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      height: 100%;
    }

    .story-box:hover {
      transform: translateY(-5px);
    }

    .story-icon {
      font-size: 30px;
      background: #7b2ff7;
      color: #fff;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      flex-shrink: 0;
      box-shadow: 0 0 10px rgba(123, 47, 247, 0.4);
    }

    .story-content h5 {
      font-size: 18px;
      margin-bottom: 8px;
      font-weight: normal;
      color: #333;
    }

    .story-content p {
      font-size: 14px;
      color: #555;
      margin-bottom: 8px;
    }

    .story-link {
      font-size: 14px;
      color: #7b2ff7;
      text-decoration: none;
      font-weight: 500;
    }

    .story-link:hover {
      text-decoration: underline;
    }

    @media (max-width: 767px) {
      .story-box {
        flex-direction: column;
        align-items: flex-start;
      }

      .story-icon {
        margin-bottom: 10px;
      }
    }
     .announcement-section {
      background:linear-gradient(to left, #7b2ff7, #ff416c);
      padding: 60px 0;
    }

    .announcement-title {
      font-size: 24px;
      color: #7b2ff7;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .announcement-box {
      background: #fff;
      border-left: 5px solid #7b2ff7;
      border-radius: 12px;
      padding: 15px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      height: 470px;
      overflow: hidden;
      position: relative;
    }

   .announcement-list {
  position: absolute;
  animation: scrollUp 18s linear infinite;
  width: 100%;
}

.announcement-item {
  background: #f8f8f8;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.announcement-item:hover {
  transform: translateX(5px);
  background: #f0f0ff;
}

.announcement-item .icon {
  background-color: #7b2ff7;
  color: #fff;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.announcement-item a {
  color: #333;
  font-size: 15px;
  text-decoration: none;
  flex-grow: 1;
  line-height: 1.4;
}

.announcement-item a:hover {
  color: #7b2ff7;
  text-decoration: underline;
}
    @keyframes scrollUp {
      0% { top: 100%; }
      100% { top: -100%; }
    }

    .announcement-box:hover .announcement-list {
      animation-play-state: paused;
    }

    .img-fluid {
      border-radius: 12px;
    }

    @media (max-width: 768px) {
      .announcement-box {
        height: 280px;
      }
    }
    .blog-section {
      background: #f9f9f9;
      padding: 60px 0;
    }

    .blog-section h2 {
      text-align: center;
      margin-bottom: 40px;
      font-weight: 600;
      color: #7b2ff7;
    }

    .blog-card {
      border: none;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s;
    }

    .blog-card:hover {
      transform: translateY(-5px);
    }

    .blog-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .blog-card-body {
      padding: 20px;
    }

    .blog-card-title {
      font-size: 18px;
      font-weight: 600;
      color: #333;
      margin-bottom: 10px;
    }

    .blog-card-text {
      font-size: 14px;
      color: #555;
      margin-bottom: 15px;
    }

    .blog-btn {
      background-color: #7b2ff7;
      color: #fff;
      border: none;
    }

    .blog-btn:hover {
      background-color: #5a1fe0;
    }

    /* Carousel Controls */
    .carousel-control-prev,
    .carousel-control-next {
      background: rgba(0, 0, 0, 0.1);
      width: 40px;
      height: 40px;
      top: 45%;
      border-radius: 50%;
    }

    @media (max-width: 767px) {
      .carousel-item > .col-md-4 {
        display: none;
      }

      .carousel-item.active > .col-md-4:nth-child(1) {
        display: block;
      }
    }