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

body {
  font-family: 'Poppins', sans-serif;
  color: #1b1b1b;
  background: #f9f9f9;
  line-height: 1.6;
}

h1, h2, h3 {
  color: #0a3d62;
}

a {
  text-decoration: none;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: #ffffff;
box-shadow: 0 2px 10px rgb(0 0 0 / 45%);
  z-index: 1000;
}

.header .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 5%;
}

.header .logo img {
  height: 65px;
  width: auto;
}

.header-btn {
  padding: 10px 20px;
  font-size: 0.95rem;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: #1a73e8;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #0f59c3;
}

/* Hero Section */
.hero {
 background: linear-gradient(90deg, #395b8961 0%, #ffffff 100%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
 padding: 31px 8%;
}

.hero-content {
  flex: 1;
  min-width: 300px;
}

.hero-content h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Form */
.form-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  width: 340px;
}

.form-card h3 {
  text-align: center;
  margin-bottom: 20px;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

textarea {
  height: 70px;
  resize: none;
}

.file-upload {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

/* About Section */
.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 60px 10%;
  background: #fff;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-text ul {
  list-style: none;
  margin-top: 15px;
}

.about-text li {
  margin-bottom: 8px;
}

.about-img img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
}

/* Centers of Excellence */
.centers {
  padding: 60px 10%;
  background: #f0f6ff;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.card ul {
  list-style: none;
  margin-top: 10px;
}

/* Testimonials */
.testimonials {
  padding: 60px 10%;
  background: #fff;
  text-align: center;
}

.reviews {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.review {
  background:#e9e9e9;
  padding: 20px;
  border-radius: 10px;
  max-width: 320px;
}

.review img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* International Section */
.international {
  padding: 60px 10%;
  background: #f0f6ff;
  text-align: center;
}

.icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.icons div {
  text-align: center;
  width: 150px;
}

/* Footer */
footer {
  background: #0a3d62;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .form-card {
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
  }

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

  .reviews {
    flex-direction: column;
  }

  .header .container {
    /*flex-direction: column;*/
    gap: 10px;
  }
}

form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #333;
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  color: #0a3d62;
}

/* Centers of Excellence Section */
.centers-section {
  background: #f5f9ff;
  padding: 60px 0;
}

.section-title {
  font-size: 2rem;
  color: #0a3d62;
  font-weight: 700;
}

.center-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.center-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.center-icon {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 10px;
}

.center-card h3 {
  color: #1a73e8;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 600;
}

.center-card ul {
  list-style: none;
  padding-left: 0;
}

.center-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #333;
}

.center-card ul li::before {
  content: "✔";
  color: #1a73e8;
  font-weight: 600;
  position: absolute;
  left: 0;
}

/* Responsive Grid (if not using Bootstrap) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.col-lg-4 {
  flex: 1 1 calc(33.333% - 20px);
}

@media (max-width: 992px) {
  .col-lg-4 {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .col-lg-4 {
    flex: 1 1 100%;
  }
}
/* Doctors Section */
.doctors-section {
  background: #ffffff;
  padding: 60px 0;
}

.section-title {
  font-size: 2rem;
  color: #0a3d62;
  font-weight: 700;
}

.doctor-card {
  background: #1a73e824;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgb(45 18 18 / 59%);
}

.doctor-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.doctor-card h3 {
  color: #1a73e8;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.doctor-card .designation {
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.doctor-card .details {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

/* Responsive grid fallback */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.col-lg-3 {
  flex: 1 1 calc(25% - 20px);
}

@media (max-width: 992px) {
  .col-lg-3 {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .col-lg-3 {
    flex: 1 1 100%;
  }
}
/* Why Choose Section */
.why-choose-section {
  background: #f5f9ff;
  padding: 70px 0;
}

.section-title {
  font-size: 2rem;
  color: #0a3d62;
  font-weight: 700;
}

.section-title span {
  color: #1a73e8;
}

.why-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.why-list {
  list-style: none;
  padding-left: 0;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #333;
  margin-bottom: 14px;
  background: #fff;
  border-radius: 10px;
  padding: 12px 15px;
 box-shadow: 0 2px 6px rgb(0 0 0 / 38%);
  transition: all 0.3s ease;
}

.why-list li:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.why-list .icon {
  font-size: 1.4rem;
  color: #1a73e8;
  flex-shrink: 0;
}

/* Responsive Layout (if not using Bootstrap) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.col-lg-6 {
  flex: 1 1 calc(50% - 20px);
}

@media (max-width: 992px) {
  .col-lg-6 {
    flex: 1 1 100%;
  }

  .why-img {
    margin-bottom: 25px;
  }
}
/* Expert Opinion Section */
.expert-opinion-section {
  background: #ffffff;
  padding: 70px 0;
}

.section-title {
  font-size: 2rem;
  color: #0a3d62;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.5;
}

.expert-form {
      background: linear-gradient(145deg, #595353, #f5f9ff); 
  border-radius: 12px;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.15),
              -8px -8px 16px rgba(255, 255, 255, 0.8);
  padding: 25px 30px;

}

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

.expert-form input,
.expert-form select,
.expert-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dce3f0;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.expert-form input:focus,
.expert-form select:focus,
.expert-form textarea:focus {
  border-color: #1a73e8;
}

.file-upload label {
  display: block;
  background: #eaf1ff;
  border: 1px dashed #1a73e8;
  padding: 12px;
  border-radius: 8px;
  color: #1a73e8;
  text-align: center;
  cursor: pointer;
  font-size: 0.95rem;
}

.file-upload input[type="file"] {
  display: none;
}

.btn-primary {
      background: #1a73e8;
    color: #fff;
    border: none;
    padding: 11px 8px;
    font-size: 13px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;

}

.btn-primary:hover {
  background: #0c5fc0;
}

.expert-img {
  /*width: 100%;*/
  /*border-radius: 12px;*/
  /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);*/
  /*object-fit: cover;*/
}

/* Responsive Grid (if not using Bootstrap) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.col-lg-6 {
  flex: 1 1 calc(50% - 20px);
}

@media (max-width: 992px) {
  .col-lg-6 {
    flex: 1 1 100%;
  }

  .expert-img {
    margin-top: 30px;
  }
}

/* International Patients Section */
.international-section {
  background: #f5f9ff;
  padding: 70px 0;
}

.section-title {
  font-size: 2rem;
  color: #0a3d62;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  /*margin: 0 auto 40px;*/
  line-height: 1.6;
}

.intl-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.intl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.intl-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.intl-card h3 {
  color: #1a73e8;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.intl-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
}

/* Responsive Grid (if not using Bootstrap) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.col-lg-3 {
  flex: 1 1 calc(25% - 20px);
}

@media (max-width: 992px) {
  .col-lg-3 {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .col-lg-3 {
    flex: 1 1 100%;
  }
}

/* Footer Section */
.footer-section {
  background: #0a3d62;
  color: #ffffff;
  padding: 10px 0;
  position: relative;
}

.footer-section .section-title {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 600;
}

.footer-section p {
  color: #dfe6ee;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.map-container iframe {
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.footer-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.cta-title {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-btn.whatsapp {
  background: #25d366;
}

.cta-btn.call {
  background: #ff6b6b;
}

.cta-btn.plan {
  background: #1a73e8;
}

.cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Sticky Bottom CTA */
.sticky-cta {
  /*position: fixed;*/
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a73e8;
  color: #fff;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  z-index: 1000;
}

.sticky-cta p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.sticky-btn {
  background: #fff;
  color: #1a73e8;
  padding: 4px 7px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sticky-btn:hover {
  background: #eaf1ff;
}




/*@media (max-width: 992px) {*/
/*  .col-lg-6 {*/
/*    flex: 1 1 100%;*/
/*  }*/

/*  .footer-cta {*/
/*    margin-top: 25px;*/
/*  }*/

/*  .sticky-cta {*/
/*    flex-direction: column;*/
/*    text-align: center;*/
/*    gap: 8px;*/
/*  }*/
/*}*/
