/* navbar start */

/* --- Navbar Section start --- */

.navbar-wrapper {
    position: absolute;
    top: 20px;
    width: 100%;
    z-index: 1000;
    padding: 0 50px;
}

.navbar-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 12px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin: 0 auto;
}


.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.main-logo {
    height: 40px;    
    width: auto;     
    display: block;
    object-fit: contain;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #333333;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu li a small {
    font-size: 10px;
    vertical-align: middle;
    color: #999;
}

.nav-menu li a:hover {
    color: #810e4c;
}
.nav-action {
    flex-shrink: 0;
}

.cta-nav {
    display: inline-block;
    background-color: #810e4c;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-nav:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(129, 14, 76, 0.2);
}


@media (max-width: 1024px) {
    .nav-menu {
        gap: 15px;
    }
    
    .navbar-wrapper {
        padding: 0 20px;
    }
    
    .nav-menu li a {
        font-size: 14px;
    }
}

/* navbar end */



/* --- About Section --- */

.about-section {
  padding: 100px 20px;
  background-color: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-image-side, .about-content-side {
  flex: 1;
}

.image-box {
  position: relative;
  padding-left: 20px;
}

.image-box img {
  width: 400px;
  height: 500px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
  object-fit: cover;
}

.image-box:hover img {
  transform: scale(1.02);
}

.image-accent {
  position: absolute;
  top: -20px;
  left: 0;
  width: 80px;
  height: 80px;
  background-color: #2dd4bf;
  border-radius: 15px;
  z-index: -1;
}

.about-content-side h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #1e2d4b;
  margin-bottom: 25px;
}

.about-content-side h2 strong {
  color: #810e4c;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.about-tabs {
  display: flex;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
  margin: 30px 0;
}

.tab-btn {
  padding: 15px 25px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  color: #333;
  transition: 0.3s;
  border-right: 1px solid #e0e0e0;
}

.tab-btn:last-child {
  border-right: none;
}

.tab-btn.active {
  background-color: #810e4c;
  color: #ffffff;
}

.points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
  margin-top: 20px;
}

.point-item {
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: 500;
  color: #222;
}

.check-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: #810e4c;
  color: white;
  border-radius: 50%;
  margin-right: 12px;
  font-size: 12px;
  flex-shrink: 0;
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active-content {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
  .about-section {
    padding: 60px 15px;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .image-box {
    padding-left: 0;
    display: flex;
    justify-content: center;
  }

  .image-box img {
    width: 90%; 
    height: auto; 
    max-width: 400px;
  }

  .image-accent {
    left: 10%; 
    top: -15px;
  }

  .about-content-side h2 { 
    font-size: 32px; 
  }

  .about-tabs {
    margin: 30px auto; 
  }

  .point-item {
    justify-content: center; 
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 40px 15px;
  }

  .about-content-side h2 { 
    font-size: 28px; 
  }

  .points-grid { 
    grid-template-columns: 1fr; 
    text-align: left;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .point-item {
    justify-content: flex-start;
    font-size: 15px;
  }
}
/* about end */

/* meet our doctor start */

/* chairman msg start */


.about-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.about-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 60px;
    align-items: center;
}


.about-title {
    font-size: 42px;
    line-height: 1.2;
    color: #1e2d4b;
    font-weight: bold;
    margin-bottom: 30px;
}

.about-title span {
    color: #810e4c; 
    font-weight: 700;
}


.about-lead {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}


.about-image-wrapper {
    display: flex;
    justify-content: center;
}

.about-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}


@media (max-width: 991px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper {
        grid-row: 1; 
    }

    .about-content {
        grid-row: 2;
        text-align: center;
    }

    .about-lead {
        text-align: center;
    }

    .about-title {
        font-size: 32px;
    }
}

/* chairman msg end */

.doctors-section {
    background-image: url("./img/about-cover3.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; 
    
    padding: 100px 20px;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}


.section-title h2 {
    color: #ffffff;
    font-size: 42px; 
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); 
}


.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}


.doctor-card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.doctor-card:hover {
    transform: translateY(-10px);
}

.doctor-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.doctor-info {
    padding: 25px;
}

.doctor-info h3 {
    color: #1e2d4b;
    margin-bottom: 5px;
    font-size: 22px;
}

.doctor-info .specialty {
    color: #810e4c;
    display: block;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.doctor-info p {
    color: #555555;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 20px;
}

.read-more {
    color: #810e4c;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.read-more:hover {
    color: #1e2d4b;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .section-title h2 { font-size: 28px; }
    .doctors-grid { grid-template-columns: 1fr; }
}
/* meet our doctor end */