* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif !important;
  color: #333;
}


/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  transition: 0.3s;
  background-color: #ffffff6d;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.more-info-wrapper{
  margin-top: 10px;
  display: flex;
  align-self: center;
  justify-content: center;
 gap: 5px;
 flex-wrap: wrap;
}
.more-info-wrapper a{
  color: green;
}
.header.scrolled {
  background: #fff;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.nav {
  max-width: 1350px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: black;
}
.logo span {
  font-size: 12px;
  color: #000000;
  display: block;
}
.lang-dropdown {
  position: relative !important;
      list-style: none;
}
 .lang-menu {
  display: none;
  position: absolute;
  top: 22px;
    left: -31px;
  background: #fff !important;
  list-style: none;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}
.lang-menu li {
  padding: 10px 15px;
  cursor: pointer;
}
a {
    color: black;
    text-decoration: none;
}
.lang-dropdown:hover .lang-menu {
  display: block;
}


.menu {
  display: flex;
  gap: 20px;
  list-style: none;
}
.menu a {
  text-decoration: none;
  color: #000000;
  font-size: 14px;
}

.btn {
  background: #e2ddd9;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  color: #000;

  display: inline-block;
  transition: 
    background 0.3s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn:hover {
  background: #a1a1a1;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.btn.outline {
  background: none;
  border: 1px solid #e2ddd9;
}


/* Hover animation */
.btn.outline:hover {
  background: #a1a1a1;
  /* color: #fff; */
  transform: translateY(-3px);
   border: 1px solid #a1a1a1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Active (mobile tap) */
.btn.outline:active {
  transform: scale(0.97);
}
/* HERO */
.hero {
  height: 100vh;
  padding: 120px 4%;
  display: flex;
  align-items: center;
  position: relative;
  /* background: url("image/herobanner.jpeg") center/cover no-repeat; */
  background: url("image/test\ banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.grid2colum{
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px;
}
@media (min-width: 1600px) {
  .hero {
     padding: 120px 12%;
  }
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1); /* darkness adjust kar sakte ho */
  z-index: 1;
}

/* Text ko upar lao */
.hero * {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 600;
}
.hero-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    color: #000;
     background-color: rgba(202, 202, 202, 0.25);
    padding: 30px;
    max-width: 500px;
    border-radius: 8px;
}
.hero-buttons {
  display: flex;
  gap: 15px;
}
.hero_text{
  color: black;
}

/* ABOUT */
/* ================about the doctor============== */
.about-doctor {
  /* background: #fffaf8; */
background: #ffffff;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}
.about-container {
  max-width: 1307px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
} /* Image */
.about-image {
  /* background: #f3e8e5; */
    background: #e2ddd9;
  padding: 15px;
  border-radius: 30px;
  object-fit: cover;

}
.inline{
  font-size: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0px;
  color: black;
}
.light-color{

  font-weight: 400;
  color: #666666;
}
.about-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 25px;
  display: block;
  object-fit: cover;
}
.about-content {
  flex: 1;
}
.about-content .tag {
  display: inline-block;
  /* background: #e8b7b7; */
  background: #e2ddd9;
  /* color: #7a2e2e; */
    color: #000000;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.about-content h2 {
  font-size: 40px;
  color: #1f1f1f;
  margin-bottom: 20px;
}
.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
} /* Bottom text */
.about-bottom {
  max-width: 1280px;
  margin: 32px auto 0;
}
span.tag{
  margin: 10px 0px;
}
.about-bottom ul li{
  margin: 10px 0px 10px 15px;
  font-size: 16px;
  font-weight: 500;
  color: black;
}
.about-bottom h5{
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 500;
}
.about-bottom p {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  /* margin-bottom: 18px; */
} /* Responsive */
.about-bottom span.tag{
   margin: 30px 0px !important;
}
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-content {
    text-align: left;
  }
  .about-doctor{
    padding: 20px 20px 0px 20px;
  }
  .about-content h2 {
    font-size: 32px;
  }
  .about-image img {
    max-width: 100%;
  }
  .lang-dropdown {
    margin-right: 22px;
}
.hero-buttons{
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.hero h1{
  font-size: 30px;
}
.btn{
  text-align: center !important;
}
.outline{
  color: white;
}
.hero{
  height: 100dvh;
   /* background: url("image/herobannermobile.jpeg") center/cover no-repeat; */
    background: url("image/test\ banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
   /* background-position: right; */
}
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 13px;
    text-align: left;
    /* color: #000; */
    color: #ffffff;
    /* background-color: rgba(202, 202, 202, 0.25); */
     background-color: rgba(153, 153, 153, 0.25);
    padding: 10px;
    /* max-width: 500px; */
    border-radius: 8px;
    margin-top: 74%;
}
.about-bottom {
    max-width: 1280px;
    margin: 0px auto 0;
}
.about-bottom h5 {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 500;
}
}


 .contact-info .clickable {
  color: #0a58ca;          /* blue link feel */
  text-decoration: underline;
  cursor: pointer;
  font-weight: 500;
}

.contact-info .clickable:hover {
  color: #06357a;
  text-decoration: none;
}

/* =======cta section======= */
.cta-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 120px 7%;
  background-image: url("image/hero.jpeg") !important;
   background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* padding: 0 8%; */
}

.cta-overlay {
  position: absolute;
  inset: 0;
/* background: linear-gradient(
  to right,
  rgba(226, 221, 217, 0.92),
  rgba(63, 51, 49, 0.5),
  rgba(226, 221, 217, 0.3)
); */
}

.cta-content {
  position: relative;
  max-width: 520px;
  color: #fff;
  z-index: 2;
}

.cta-content h2 {
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.cta-content p {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 5px;
}

.cta-btn {
  display: inline-block;
  font-size: 26px;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid #fff;
  /* transition: opacity 0.3s ease; */
}

.cta-btn:hover {
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 991px) {
  .cta-section {
    justify-content: center;
    padding: 50px 8%;
    min-height: auto !important;
     background-image: url("/images/Dr.\ Pritam\ Majumdar.jpeg");
  background-size: cover;
  }

  .cta-content {
    text-align: left;
    max-width: 100% !important;
  }
}
/* =======cta section======= */
/* ===================new style============= */
.buzz-section {
  background: #f7f5f0;
  padding: 0px 80px 120px 80px;
}

.buzz-title {
  text-align: center;
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 5px;
}
.zoom-text {
  color: #255902;
  font-size: 16px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 20px;
  text-align: center;
}
.popup {
    max-width: 1300px;
    width: 95%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 10px; /* spacing between images */
        margin-top: 24px;

}

/* Each gallery item */
.popup img {
    flex: 1 1 calc(25% - 10px); /* 4 per row desktop */
    max-width: calc(25% - 10px);
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s;
    height: auto;
    object-fit: cover;
    max-height: 400px;
}
.popup img:hover {
    transform: scale(1.05);
}
.show .img-show::-webkit-scrollbar{
    width: 0px;
}

/* Firefox */
.show .img-show{
    scrollbar-width: none;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .popup img {
        flex: 1 1 calc(50% - 10px) !important; /* 2 per row mobile */
        max-width: calc(50% - 10px) !important;
        object-fit: cover;
    }
}

/* Lightbox container */
.show {
    z-index: 999;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Dark overlay */
.show .overlay {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.7);
    position: absolute;
    top: 0;
    left: 0;
}

/* Lightbox image box */
.show .img-show {
    width: 90%;
    max-width: 600px;
    max-height: 90%; /* fixed max height */
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 34px 0 0px 0px;
    overflow: auto; /* scroll if image bigger */
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

/* Close button */
.img-show span {
    position: absolute;
    top: 1px;
    right: 9px;
    z-index: 99;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #fb2020;
}

/* Lightbox image */
.img-show img {
    width: 100%;
    height: auto;
    display: block;
}
.popup-buzz-wrappre {
    padding: 80px 0px;
}
/* =================gallery============== */


/* CONTACT */
.appointment-section {
  padding: 80px 20px;
}
.container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info {
   margin-top: 20px;
}
.info-box {
  padding: 15px;
  background: #fafafa;
  border-radius: 12px;
  margin-top: 10px;
}
.appointment-form {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.form-row {
  display: flex;
  gap: 15px;
}
input,
select,
textarea {
  width: 100%;
  padding: 14px;
  margin-top: 15px;
  border-radius: 12px;
  border: 1px solid #ddd;
}
button {
  margin-top: 25px;
  width: 100%;
  padding: 15px;
  background: #e2ddd9;
  border: none;
  border-radius: 30px;
display: inline-block;
  transition: 
    background 0.3s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

button:hover {
  background: #a1a1a1;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* FOOTER */
.footer {
  background: #e2ddd9;
  color: #282828;
  padding: 50px 20px;
}
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.copy {
  text-align: center;
  margin-top: 30px;
}
.footer h4{
  margin-bottom: 10px;
}
/* FLOATING */
.floating {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
      z-index: 999999;

}
.floating a {
    width: 45px;
    height: 45px;
  /* background: #e8cfd0; */
  background: #bfb9b3;
  padding: 5px;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsaap-icon{
  max-width: 30px;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu {
   position: fixed;
        right: -100%;
        width: 100%;
        height: 69vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        transition: 0.3s;
        padding-left: 5%;
        padding-top: 66%;
        z-index: -1;
  }
  .appointment-section{
    padding: 0px 20px 20px 20px;
  }
  .appointment-form{
    padding: 15px;
  }
  .menu.active {
    right: 0;
  }
  .menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #333;
    margin: 5px 0;
  }
  .btn-hide-mobile {
    display: none;
  }
  .hero {
    text-align: center;
  }
  .container {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .contact-left{
    padding: 0px 15px;
  }
}


/* ===================new sectioon============== */
/* ================= AREAS OF EXPERTISE ================= */
.expertise-section {
  padding: 100px 20px;
  background: #fff;
}

.expertise-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.social-links{
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.social-links li{
    text-decoration: none;
    list-style: none;
}
.social-links img{
    width: 24px;
    height: 24px;
    object-fit: cover;
}
/* LEFT */
.expertise-tag {
  display: inline-block;
  background: #e2ddd9;
  color: #000000;
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.expertise-left h2 {
  font-size: 46px;
      line-height: 1.25;
  margin-bottom: 15px;
  color: #1f1f1f;
}
.expertise-intro{
  margin-bottom: 15px;
}
.expertise-item ul li{
list-style: disc;
 margin-bottom: 8px;
 font-weight: 500;
      margin-left: 15px;
}

.expertise-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.expertise-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.expertise-item .number {
  width: 30px;
  height: 30px;
  background: #e2ddd9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.expertise-item h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.expertise-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* RIGHT IMAGES */
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.image-grid img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
      max-height: 224px;
}

.image-grid img.full {
  grid-column: span 2;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .expertise-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .expertise-left h2 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .expertise-left h2 {
    font-size: 30px;
  }

  .expertise-item {
    gap: 15px;
  }

  .image-grid {
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .expertise-left h2 {
    font-size: 26px;
  }

  .expertise-item p {
    font-size: 14px;
  }
}

.info-section {
  max-width: 1000px;
  margin: auto;
  padding: 80px 20px;
}

.info-section.light {
  background: #f7f5f0;
}

.info-section h2 {
  font-size: 36px;
  margin-bottom: 25px;
  text-align: center;
}

.info-section ul {
  list-style: disc;
  max-width: 700px;
  margin: auto;
}

.info-section ul li {
  margin-bottom: 12px;
  line-height: 1.8;
}

