
    /* Blog Card for Long Article */
.blog-card {
  background: #fff;
  border-radius: 12px;
  border: 2px solid #0077ff;
  overflow: hidden;
  margin: 40px auto;
  max-width: 900px;
  transition: all 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,119,255,0.2);
}

.blog-card img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-bottom: 2px solid #0077ff;
}

.blog-content {
  padding: 25px 20px;
  text-align: left;
}

.blog-content h3 {
  color: #0077ff;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: bold;
}

.blog-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-content ul {
  margin: 15px 0 20px 20px;
  list-style-type: disc;
  color: #555;
}

.blog-content ul li {
  margin-bottom: 10px;
}

.read-btn {
  display: inline-block;
  background: black;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.read-btn:hover {
  background: #005ec2;
  transform: scale(1.05);
}

    /* Footer */
    footer { background: #333; color: #fff; text-align: center; padding: 15px; margin-top: 40px; }
  .rahu {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  text-align: center;   /* Center text for smaller screens */
}

.rahu h1 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
}

.rahu p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

.rahu .uvi {
  width: 100%;         /* Make image responsive */
  max-width: 600px;    /* Don’t let it grow too big */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Desktop / tablet (side-by-side layout) */
@media (min-width: 768px) {
  .rahu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;    /* Align text left on bigger screens */
    gap: 30px;
  }
  .rahu h1 {
    font-size: 2.5rem;
  }
  .rahu p {
    font-size: 1.2rem;
  }
  .rahu .uvi {
    flex: 1;
    max-width: 500px;
  }
}
.icon-boxes {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1100px;
      margin-top: 90px;
      margin-left: 90px;
    }

    .icon-box {
      background: #fff;
      padding: 25px;
      text-align: center;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: 0.3s;
    }

    .icon-box:hover {
      transform: translateY(-5px);
    }

    .icon-box i {
      font-size: 40px;
      color: #0077ff;
      margin-bottom: 15px;
    }

    .icon-box h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      color: #333;
    }

    .icon-box p {
      color: #555;
      font-size: 0.95rem;
    }
    footer {
  background: #0072ff;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-box {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-box h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-box p, .footer-box li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #ffd700;
}

.footer-box form input[type="email"] {
  padding: 8px;
  width: 70%;
  border: none;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.footer-box form button {
  padding: 8px 12px;
  border: none;
  border-radius: 0 5px 5px 0;
  background: #ffd700;
  color: #0072ff;
  cursor: pointer;
  transition: 0.3s;
}

.footer-box form button:hover {
  background: #ffc107;
}

.social-icons a img {
  width: 30px;
  margin-right: 10px;
  transition: 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
}
/* Responsive */
@media(max-width:768px){
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-box {
    text-align: center;
  }
}
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;   /* distance from bottom */
  right: 20px;    /* distance from right */
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
}
