@import url('https://fonts.googleapis.com/css2?family=Tiro+Bangla:ital@0;1&display=swap');

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
  --teal: #2665a7;
  --teal-dark: #1e4f86;
  --teal-light: #4a86c4;
  --teal-pale: #e7eff8;
  --teal-mid: #c7d8ec;

  --gold: #ca1d73;
  --gold-light: #e45a9a;

  --white: #ffffff;
  --off-white: #f7faf9;

  --dark: #0d1f1e;
  --text: #1a2e2c;
  --muted: #5a7370;

  --border: #d0e8e4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
   font-family: "DM Sans", sans-serif;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
}



/* Existing nav-cta styling */
.nav-right .nav-cta {
    padding: 10px 18px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

/* Register Now button (keep your default color) */
#nav-cta-btn {
    background: #c42176; /* green example */
}

/* #nav-cta-btn:hover {
    background: #218838; 
} */

/* Doctors button (different color) */
.doctors-btn {
    background: #007bff; /* blue example */
}

.doctors-btn:hover {
    background: #0056b3; /* darker blue on hover */
}


/* NAVBAR */
.nav-logo img {
    height: 40px; /* set the height you want */
    width: auto;  /* keeps the logo proportional */
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

.nav-logo {
font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Toggle */

.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--teal-pale);
  border: 1.5px solid var(--teal-mid);
  border-radius: 50px;
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--muted);
  transition: all 0.2s ease;
font-family: "Poppins", sans-serif;
  letter-spacing: 0.3px;
}

.lang-btn.active {
  background: var(--teal);
  color: white;
  box-shadow: 0 2px 8px rgba(38, 101, 167, 0.3);
}

.lang-btn:hover:not(.active) {
  color: var(--teal);
}

.nav-cta {
  background: var(--teal);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.nav-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

/* HERO */

.hero {
  min-height: 50vh;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
   background: linear-gradient(135deg, #2665a7, #c42176);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.5) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* HERO */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: start;
}




/* HERO BADGE - LIGHT MINIMAL STYLE */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ca1d73;
  border: 1px solid rgba(255, 193, 7, 0.2); /* subtle outline */
  color: #fff;
  padding: 10px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  cursor: default;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-badge:hover {
  background: #2665a7; /* gentle hover highlight */
  transform: translateY(-1px); /* subtle lift */
}

.hero-badge::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 4px;
  flex-shrink: 0;
  animation: pulse 1.8s infinite ease-in-out;
}

/* DOT PULSE ANIMATION */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.35;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}

.hero-title {
font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title em {
  font-style: normal;
  color: var(--teal-light);
  display: block;
}
.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.2s ease both;
	font-family: "Poppins", sans-serif;
}
.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  animation: fadeUp 0.6s 0.3s ease both;
}
.detail-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
font-family: "Poppins", sans-serif;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* FORM */
.hero-form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  animation: fadeUp 0.6s 0.3s ease both;
  position: relative;
  z-index: 3;
}
.form-card-title {
font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.form-card-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
font-family: "Poppins", sans-serif;
}
.form-label span {
  color: var(--teal);
}
.form-input,
.form-select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--off-white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-input:focus,
.form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 123, 110, 0.1);
  background: white;
}
.select-wrap {
  position: relative;
}
.select-wrap::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}
.radio-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.radio-option {
  flex: 1;
  min-width: 80px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 9px 12px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
font-family: "Poppins", sans-serif;
}
.radio-option input[type="radio"] {
  display: none;
}
.radio-option:has(input:checked) {
  border-color: var(--teal);
  background: var(--teal-pale);
}
.radio-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  transition: all 0.2s;
}
.radio-option:has(input:checked) .radio-dot {
  border-color: var(--teal);
  background: var(--teal);
  box-shadow: inset 0 0 0 3px white;
}
.radio-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: white;
  border: none;
  border-radius: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 123, 110, 0.3);
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 123, 110, 0.45);
}
.form-note {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.6;
font-family: "Poppins", sans-serif;
}



.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* space between columns */
}

.form-col {
    flex: 1 1 300px; /* responsive min-width */
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-input, .form-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.radio-group {
    display: flex;
    gap: 15px;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.radio-option input {
    display: none;
}

.radio-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #007b6e;
    margin-right: 5px;
    position: relative;
}

.radio-option input:checked + .radio-dot::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #007b6e;
}

/* FORM */

.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  color: white;
  border: none;
  border-radius: 12px;
font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(38, 101, 167, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(38, 101, 167, 0.45);
}

/* TRUST BAR */

.trust-bar {
  background: var(--teal);
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}


.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}
.trust-item .t-icon {
  font-size: 18px;
}


/* SECTIONS */

section {
  padding: 80px 40px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ABOUT */

.about {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}
.about-list {
  list-style: none;
  margin-top: 20px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}
.about-list li:last-child {
  border-bottom: none;
}
.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-pale);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-highlight {
  background: linear-gradient(135deg, var(--teal-pale), #d4f0ec);
  border-radius: 20px;
  padding: 36px;
  border-left: 4px solid var(--teal);
}
.ah-number {
font-family: "Poppins", sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}
.ah-label {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
  margin-bottom: 24px;
}
.ah-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--teal-mid);
  font-size: 14px;
  font-weight: 500;
  color: var(--teal-dark);
}

/* DOCTORS */

.doctors {
  background: var(--off-white);
}




.read-more-btn{
display:inline-block;
margin-top:15px;
padding:8px 18px;
background:#2665a7;
color:#fff;
border-radius:5px;
font-size:14px;
text-decoration:none;
transition:0.3s;
}

.read-more-btn:hover{
background:#ca1d73;
color:#fff;
}



.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.doctor-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 123, 110, 0.12);
  border-color: var(--teal-light);
}
.doctor-card-top {
  padding: 28px 24px 20px;
  background: linear-gradient(135deg, var(--teal-pale), #ddf2ee);
}
.doctor-specialty-badge {
  display: inline-block;
  background: var(--teal);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.doctor-name {
font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 5px;
}
.doctor-hospital {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.doctor-card-body {
  padding: 20px 24px;
}
.who-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.symptom-list {
  list-style: none;
}
.symptom-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
  padding: 5px 0;
  border-bottom: 1px solid var(--teal-pale);
}
.symptom-list li:last-child {
  border-bottom: none;
}
.sym-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-light);
  flex-shrink: 0;
  margin-top: 6px;
}

/* FAQ */
.faq {
  background: var(--white);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.2s;
}
.faq-item:hover {
  border-color: var(--teal);
  background: var(--teal-pale);
}
.faq-q {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.faq-q .faq-icon {
  color: var(--teal);
  font-size: 18px;
  flex-shrink: 0;
}
.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 48px 40px;
  text-align: center;
}
.footer-logo {
font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.footer-logo span {
  color: var(--gold);
}
.footer-tagline {
  font-size: 13px;
  margin-bottom: 6px;
}
.footer-address {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}
.footer-contact {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: var(--teal-light);
}
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 20px 0;
}
.footer-copy {
  font-size: 12px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

  nav {
    padding: 14px 20px;
  }

  section {
    padding: 60px 20px;
  }

  .trust-bar {
    gap: 20px;
    padding: 16px 20px;
  }

  .nav-cta {
    display: none;
  }

}


.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
font-family: "Poppins", sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}



/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .doctors-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  nav {
    padding: 14px 20px;
  }
  section {
    padding: 60px 20px;
  }
  .trust-bar {
    gap: 20px;
    padding: 16px 20px;
  }
  .hero-form-card {
    padding: 24px 18px;
  }
  .nav-cta {
    display: none;
  }
}


/* doctor page css */
/* HERO DOCTOR */

.doctor-section{
padding:60px 0;
}

.doctor-card-info{
background:#eef2f8;
padding:40px;
border-radius:12px;
margin-top:50px !important;
	
}

.doctor-name{
color:#ca1d73;
font-weight:600;
margin-bottom:10px;
}

.doctor-special{
font-weight:500;
color:#444;
}

.doctor-desc{
color:#666;
max-width:550px;
}

.doctor-img{
width:160px;
height:160px;
object-fit:cover;
border-radius:50%;
background:white;
padding:8px;
}


/* INFO BOX */

.info-wrapper{
background:#fff;
border-radius:10px;
padding:25px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.info-item h6{
font-weight:600;
}

.info-item p{
margin:0;
color:#777;
}

.book-btn{
background:linear-gradient(90deg,#ca1d73,#2665a7);
color:#fff;
padding:10px 22px;
border-radius:6px;
font-weight:500;
text-decoration:none;
}

/* SPECIALTIES */

.dr-section-title{
color:#ca1d73;
font-weight:600;
margin-bottom:20px;
}

.spec-box{
background:#fff;
border:1px solid #eee;
border-radius:6px;
padding:14px;
text-align:center;
font-size:14px;
transition:.3s;
}

.spec-box:hover{
box-shadow:0 5px 12px rgba(0,0,0,0.08);
}


/* TABLE */

table{
background:#fff;
}


/* MOBILE */

@media (max-width:768px){

.doctor-card{
text-align:center;
}

.doctor-img{
margin-top:20px;
}

}

