#about h2 {
  margin-top: 35px;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #0066ff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about_info {
  display: flex;
  justify-content: space-between;
  /* flex-wrap: wrap; */
}

.about_info > div {
  margin: 19px;
  text-align: justify;
  /* font-weight: 500; */
  font-size: 30px;
  /* height: 400px; */
  width: 47%;
  /* max-width: 100%; */
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(7, 74, 99, 0.12),
    0 8px 16px rgba(7, 74, 99, 0.08), 0 4px 8px rgba(7, 74, 99, 0.05);

  border-radius: 8px;
  padding: 20px;
}

footer {
  display: flex;
  flex-direction: column;

  background-color: #333;
  color: white;

  text-align: center;
  padding: 10px 20px;

  bottom: 0;

  height: 150px;
  border-radius: 8px;
  font-family: "Tiro bangla", serif;
}
footer p {
  margin: 0;
  font-size: 18px;
  color: #fff;
  margin-top: 25px;
}
footer a {
  color: #06fc37;
  text-decoration: none;

  transition: color 0.3s ease;
  font-size: large;
}

.whatsapp-float-btn {
  position: fixed; /* স্ক্রলের সময় স্থির রাখতে */
  bottom: 20px; /* নিচের দিক থেকে দূরত্ব */
  right: 20px; /* ডান দিক থেকে দূরত্ব */
  z-index: 9999; /* অন্যান্য কন্টেন্টের উপরে রাখতে */

  /* বাটনের আকার এবং রঙ */
  width: 60px;
  height: 60px;
  background-color: #25d366; /* WhatsApp সবুজ রং */
  color: white;
  border-radius: 50%; /* গোলাকার আকৃতি */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); /* সুন্দর ছায়া */

  /* আইকনকে মাঝখানে আনতে Flexbox ব্যবহার */
  display: flex;
  align-items: center;
  justify-content: center;

  /* Transition */
  transition: all 0.3s ease;
  text-decoration: none; /* লিংক থেকে আন্ডারলাইন সরাতে */
}

/* হোভার এবং অ্যাক্টিভ স্টাইল */
.whatsapp-float-btn:hover {
  background-color: #128c7e; /* গাঢ় সবুজ রং */
  transform: scale(1.08); /* সামান্য বড় করা */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* আইকনের স্টাইল (Font Awesome) */
.whatsapp-float-btn i {
  font-size: 28px; /* আইকনের আকার */
}

/* * মোবাইল রেসপনসিভনেস (ছোট স্ক্রিনের জন্য) 
         * ======================================
         */
@media (max-width: 600px) {
  .whatsapp-float-btn {
    width: 55px; /* ছোট স্ক্রিনে সামান্য ছোট আকার */
    height: 55px;
    bottom: 15px;
    right: 15px;
  }
  .whatsapp-float-btn i {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .about_info {
    flex-direction: column;
    align-items: center;
  }

  .about_info > div {
    width: 90%;
    margin: 10px 0;
    font-size: 15px;
  }
  footer p {
    font-size: 11px;
    margin-top: 8px;
  }

  footer {
    height: 100px;
  }
}
