     * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      background-color: #f0f0f0;
      padding: 20px;
    }

    header {
      width: 100%;
      margin: 0 auto;
      background-color: teal;
      color: white;
      padding: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      position: relative;
      border-radius: 15px; /* Rounded corners */
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
    }

    .logo-text h2 {
      margin-bottom: 5px;
    }

    .logo-text p {
      font-size: 14px;
      margin-top: 0;
    }

    nav {
      display: flex;
      gap: 20px;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: bold;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background-color: white;
      margin: 4px 0;
      transition: 0.4s;
    }

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    position: relative;
    z-index: 10000; /* যাতে সবকিছুর উপরে থাকে */
  }

  nav {
    flex-direction: column;
    gap: 10px;
    position: fixed;
    top: 70px; /* Header height অনুযায়ী */
    right: 0;
    background-color: teal;
    width: 100%;
    padding: 15px 20px;
    display: none;
    text-align: left;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 9999;
  }

  nav.show {
    display: flex;
  }



  .logo {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

  
  /* New Code add End  */

    .bg-teal {
      background-color: #008080;
    }

    .about {
      background: linear-gradient(145deg, #fde3e3, #e6f0ff);
      padding: 40px 20px;
      text-align: center;
      border-radius: 20px;
    }
    .about img {
      border-radius: 50%;
      width: 120px;
      height: 120px;
      object-fit: cover;
      margin-top: 20px;
    }
 
 
    footer {
      background: #0b666a;
      color: white;
      padding: 50px;
      text-align: center;
      border-radius: 20px 20px 0 0;
      margin-top: 30px;
    }

    @media(max-width:768px) {
      .blog-scroll {
        flex-direction: column;
      }
      .chamber-scroll {
        flex-direction: column;
        align-items: center;
      }}
 .about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
    background: radial-gradient(circle at top left, #fce4ec, #e0f7fa, #f3f4f6);
    flex-wrap: wrap;
    gap: 60px;
  }

  .about-content {
    max-width: 500px;
  }

  .about-content h5 {
    font-size: 18px;
    color: #2e4e4f;
    margin-bottom: 20px;
  }

  .about-content h2 {
    font-size: 48px;
    color: #1b3d3f;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .about-content p {
    font-size: 18px;
    color: #4f4f4f;
    margin-bottom: 30px;
  }

  .about-content .btn {
    padding: 10px 20px;
    background-color: #e0bbf3;
    border: none;
    color: #000;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .about-content .btn:hover {
    background-color: #d39fee;
  }

  .about-image img {
    width: 220px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
.chamber-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.chamber-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  width: 300px;
  text-align: left;
  transition: transform 0.3s ease;
}

.chamber-card:hover {
  transform: translateY(-5px);
}

.chamber-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.chamber-card h5 {
  font-size: 20px;
  color: #3a7b7d;
  margin-bottom: 10px;
}

.chamber-card p {
  font-size: 15px;
  color: #333;
  margin-bottom: 6px;
}

  @media (max-width: 768px) {
    .chamber-scroll {
      flex-direction: column;
      align-items: center;
    }
  }




   

    /* Blog Post Css */
    
    

  