     * {
       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:#00BCD4;
        
       color: #000;
       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: 70px;
       height: 70px;
       border-radius: 50%;
       object-fit: cover;
     }

     .logo-text h2 {
       margin-bottom: 5px;
       margin-left:20px;
     }

     .logo-text p {
       font-size: 16px;
       font-weight: bold;
       margin-top: 0;
       margin-left:20px;
     }

     nav {
       display: flex;
       gap: 20px;
     }

     nav a {
       color: #fff;
       text-decoration: none;
       font-weight: bold;
     }

     .hamburger {
       display: none;
       flex-direction: column;
       cursor: pointer;
     }

     .hamburger div {
       width: 25px;
       height: 3px;
       background-color: #00BCD4;
       margin: 4px 0;
       transition: 0.4s;
     }
@media (max-width: 768px) {
  header {
    justify-content: space-between;
  }
.hamburger div {
    background-color: #fff; /* ছোট ডিভাইসে সাদা রঙ */
  }

  /* Logo এখন বাঁ পাশে */
  .logo {
    flex-direction: column;
    align-items: flex-start; /* বাঁ দিকে যাবে */
    text-align: left;
    width: 100%;
  }

  /* Hamburger ডান পাশে */
  .hamburger {
     display: flex;
    position: absolute;
    right: 20px; /* ডান দিকে */
    top: 20px;
    z-index: 10000;
  }

  nav {
    flex-direction: column;
    gap: 10px;
    position: fixed;
    top: 70px;
    left: 0; /* এখন মেনু বাঁ দিক থেকে খুলবে */
     background-color: #00BCD4;
    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;
  }
}


     /* New Code add End  */


     .about-section {
       display: flex;
       justify-content: space-between;
       align-items: center;
       margin-top: 20px;
       border-radius: 10px;
       padding: 50px 50px;
      background: radial-gradient(circle at top left, #0097A7, #e0f7fa, #B2EBF2);

       gap: 60px;
       flex-direction: row-reverse;
       /* ✅ Image on right */
       text-align: left;

     }

     .about-image img {
       width: 250px;
       height: 250px;
       object-fit: cover;
       border-radius: 50%;
       box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     }


     .about-content {
       max-width: 500px;
     }
     .about-content h3 {
       
      font-size: 30px;
      font-weight: bold;
       color: #1b3d3f;
       margin-bottom: 20px;
       line-height: 1.2;
     }
         .about-content h4 {
       font-size: 24px;
        font-weight: bold;
       color: #2e4e4f;
       margin-bottom: 15px;
     }
     .about-content h5 {
       font-size: 18px;
        font-weight: bold;
       color: #2e4e4f;
       margin-bottom: 15px;
     }



     .about-content p {
       font-size: 18px;
       color: #4f4f4f;
       margin-bottom: 30px;
     }

     .about-content .btn {
       padding: 10px 20px;
        background-color: #00C6FF;
       border: none;
       color: #000;
       border-radius: 6px;
       font-weight: 500;
       cursor: pointer;
       transition: all 0.3s ease;
     }

     .about-content .btn:hover {
         background-color: #00BCD4;
     }



     /* ✅ Responsive Styles */
     @media (max-width: 768px) {

       .about-section {
         flex-direction: column;
         text-align: center;
       }


       .about-image img {

         margin-bottom: 10px;
         width: 180px;
         height: 180px;
         object-fit: cover;
         border-radius: 50%;
       }

       .about-content h2 {
         font-size: 36px;
       }

       .about-content p {
         font-size: 16px;
       }
     }

     footer {
         background: #00BCD4;
        /* background: radial-gradient(circle at top left, #90D5FF, #e0f7fa, #00C6FF); */
       color: #fff;
       padding: 50px;
       text-align: center;
       border-radius: 20px 10px 0 0;
       margin-top: 30px;
     }

     @media(max-width:768px) {

       .chamber-scroll {
         flex-direction: column;
         align-items: center;
       }
     }


     .chamber-scroll {
       display: flex;
       flex-wrap: wrap;
       gap: 20px;
       margin-top: 30px;
     }

     .chamber-card {
       
       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;
    background: radial-gradient(circle at top left, #0097A7, #e0f7fa, #B2EBF2);
     }

     .chamber-card img {
       width: 100%;
       height: 80px;
       margin-bottom: 10px;
     }

     .chamber-card:hover {
       transform: translateY(-5px);
     }

     .chamber-card h5 {
       font-size: 20px;
       font-weight: bold;
       color: #000;
       margin-bottom: 10px;
     }

     .chamber-card p {
       font-size: 15px;
       color: #000;
       margin-bottom: 6px;
     }



     @media(max-width:768px) {

       .chamber-scroll {
         flex-direction: column;
         align-items: center;
       }
     }







     /* Blog Post Css */

   .scroll-row {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.blogpost {
  flex: 0 0 400px;
  scroll-snap-align: start;
background: radial-gradient(circle at top left, #0097A7, #e0f7fa, #B2EBF2);
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.blogpost img {
  width: 100%;       /* ✅ Responsive */
  max-width: 360px;  /* ✅ Desktop e size control */
  height: auto;      /* ✅ Proper ratio maintain */
  max-height: 203px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 15px;
}

.scroll-row::-webkit-scrollbar {
  display: none;
}

/* Hover effect */
.blogpost:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.blogpost h5 {
  color: #00C6FF;
}

.blogtitle {
  margin-top: 30px;
}

/* ✅ Mobile responsive */
@media (max-width: 768px) {
  .blogpost {
    flex: 0 0 98%;   /* ✅ 95% use korle screen almost full hobe */
    max-width: 98%;
  }

  .blogpost img {
    max-width: 100%; /* ✅ image box er sathe pura fit hobe */
    height: auto;
    max-height: none; /* jodi height cut hote na chan */
  }
}



/* Desktop: Grid layout */
.video-scroll-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 videos per row */
  gap: 5px; /* gap between videos */
  margin-top: 20px;
}

/* Individual video card */
.video-post {
background: radial-gradient(circle at top left, #0097A7, #e0f7fa, #B2EBF2);
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

/* Hover effect */
.video-post:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Video title */
.video-post h5 {
  color: #00C6FF;
  margin-bottom: 10px;
}

/* Video wrapper (iframe) */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  overflow: hidden;
  border-radius: 8px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Mobile: 1 video per row with horizontal scroll */
@media (max-width: 768px) {
  .video-scroll-row {
    display: flex;
    overflow-x: auto;
    gap: 5px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .video-post {
    flex: 0 0 90%; /* take most of screen width */
    scroll-snap-align: start;
  }

  /* Hide scrollbar */
  .video-scroll-row::-webkit-scrollbar {
    display: none;
  }
  .video-scroll-row {
    -ms-overflow-style: none; /* IE/Edge */
    scrollbar-width: none; /* Firefox */
  }
}


/* Appointment Form */

     .card {
            transition: 0.3s;
        }
        .card:hover {
            transform: scale(1.05);
        }
        .full-booked {
            background: #6c757d !important;
            color: #fff;
        }
        .available-card {
            background: #e8f5e9;
        }
        .booking-form {
            display: none;
            margin-top: 10px;
        }