/* About Us Sections */
.about-intro, .about-story, .about-mission, .why-choose {
  padding: 30px 20px;
  background-color: #f9f9f9;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-title {
  font-size: 2.2rem;
  color: #10375c;
  margin-bottom: 10px;
}

.about-subtext {
  font-size: 1 rem;
  color: #555;
  max-width: 700px;
  line-height: 1.6;
}

.about-story h2, .about-mission h2, .why-choose h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #10375c;
}

.about-story p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.mission-values {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.mission-block {
  flex: 1 1 45%;
}

.mission-block ul {
  padding-left: 20px;
  margin-top: 10px;
  color: #444;
}

.mission-block li {
  margin-bottom: 10px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.reason-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.reason-card i {
  font-size: 30px;
  color: orange;
  margin-bottom: 10px;
}

.reason-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #10375c;
}

.reason-card p {
  font-size: 0.95rem;
  color: #555;
}
.about-doctors {
  background: linear-gradient(to bottom right, #f4f8fb, #e9eff5);
  padding: 80px 20px;
  text-align: center;
}

.about-doctors .section-title {
  font-size: 2rem;
  color: #10375c;
  margin-bottom: 10px;
}

.about-doctors .section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 50px;
}

.doctor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.doctor-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  padding: 30px 20px;
  width: 100%;
  max-width: 400px;
  text-align: left;
  transition: transform 0.3s;
}

.doctor-card:hover {
  transform: translateY(-6px);
}

.doctor-photo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.doctor-card h3 {
  color: #10375c;
  margin-bottom: 10px;
}

.doctor-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}
.about-banner {
  position: relative;
  background-image: url('images/woman-making-beauty-procedures.jpg');
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* align items to the left */
  padding: 40px 60px; /* add more left padding for spacing */
  color: white;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  text-align: left;
}

.about-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, rgba(14, 40, 67, 0.6), rgba(26, 68, 97, 0.4));
  z-index: 1;
}
.privacy-banner {
  position: relative;
  background-image: url('images/security-lock.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* align items to the left */
  padding: 40px 60px; /* add more left padding for spacing */
  color: white;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  text-align: left;
}

.privacy-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, rgba(14, 40, 67, 0.6), rgba(26, 68, 97, 0.4));
  z-index: 1;
}
.tc-banner {
  position: relative;
  background-image: url('images/tc.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* align items to the left */
  padding: 40px 60px; /* add more left padding for spacing */
  color: white;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  text-align: left;
}

.tc-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, rgba(14, 40, 67, 0.6), rgba(26, 68, 97, 0.4));
  z-index: 1;
}
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 1.5rem;
  line-height: 1.6;
}



.about-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.about-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.about-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}
/* Resource page*/


/* Main Resource Page Layout */
.resource-page {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Intro Section */
.resource-intro {
  text-align: center;
  margin-bottom: 50px;
}

.resource-intro h1 {
  font-size: 2.5rem;
  color: #0e2747;
  margin-bottom: 10px;
}

.resource-intro p {
  font-size: 1.1rem;
  color: #5a6b7c;
}

/* Resource Cards */
.research-blog {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.blog-intro {
  text-align: center;
  margin-bottom: 60px;
}

.blog-intro h1 {
  font-size: 2.2rem;
  color: #10375c;
  margin-bottom: 10px;
}

.blog-intro .subtitle {
  font-size: 1.15rem;
  color: #5e6d7a;
  margin-bottom: 8px;
}

.blog-intro .credit {
  font-size: 0.95rem;
  color: #9aa4b1;
  font-style: italic;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.blog-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.blog-card h2 {
  font-size: 1.5rem;
  color: #1f3d5a;
  margin-bottom: 10px;
}

.blog-meta {
  font-size: 0.9rem;
  color: #8a99aa;
  margin-bottom: 15px;
}

.blog-card p {
  font-size: 1rem;
  color: #444c56;
}

.read-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: #0073b1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-link:hover {
  color: #005688;
  text-decoration: underline;
}
.research-banner {
  position: relative;
  background-image: url('images/research.png'); /* Update path if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Push text to left */
  padding: 40px 60px;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  color: white;
}

.research-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 22, 45, 0.5); /* dark overlay for text readability */
  z-index: 1;
}

.research-banner .banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: left; /* Left-align text */
}

.research-banner .banner-content h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.research-banner .banner-content p {
  font-size: 1.2rem;
  font-weight: 300;
}
//* FAQ*//

.faq-banner {
  position: relative;
  background-image: url('images/FAQ.png');
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* align items to the left */
  padding: 40px 60px; /* add more left padding for spacing */
  color: white;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  text-align: left;
}

.faq-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, rgba(14, 40, 67, 0.6), rgba(26, 68, 97, 0.4));
  z-index: 1;
}

.faq-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.faq-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.faq-content p {
  font-size: 1.5rem;
  line-height: 1.6;
}

.faq-banner .banner-content h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  margin-bottom: 10px;
}

.faq-banner .banner-content p {
  font-size: 1.2rem;
  font-weight: 300;
}

    .faq-section {
      max-width: 600px;
      margin: 40px auto;
      padding: 0 16px;
    }

    .faq-header {
      text-align: center;
      margin-bottom: 30px;
    }

    .faq-title {
      font-size: 2rem;
      font-weight: bold;
    }

    .faq-subtitle {
      color: var(--text-light);
      font-size: 1rem;
    }


    .faq-item {
      background-color: var(--bg-white);
      border-radius: 12px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-toggle {
      width: 100%;
      background: none;
      border: none;
      padding: 16px 20px;
      text-align: left;
      font-size: 1rem;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      color: var(--text-dark);
    }

    .faq-icon {
      font-size: 24px;
      transition: transform 0.3s ease;
    }

    .faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
    }

    .faq-answer p {
      margin: 0;
      padding-bottom: 16px;
      color: var(--text-light);
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 0 20px 20px;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }

    .faq-item.hidden {
      display: none;
    }

    .faq-nav {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .faq-nav button {
      background-color: var(--primary-color);
      color: white;
      border: none;
      border-radius: 8px;
      padding: 12px 20px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .faq-nav button:hover:enabled {
      background-color: var(--primary-hover);
    }

    .faq-nav button:disabled {
      background-color: #cbd5e0;
      cursor: not-allowed;
    }
	.faq-banner {
  position: relative;
  background-image: url('images/FAQ.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* align items to the left */
  padding: 40px 60px; /* add more left padding for spacing */
  color: white;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  text-align: left;
}

.faq-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.faq-banner .banner-content {
  position: relative;
  z-index: 2;
}

.faq-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.faq-banner p {
  font-size: 1.2rem;
}
.main-content {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  border: none; /* Optional: ensures no border is applied */
  text-align: left; 
}
.main-content p {
  text-align: left !important;
}
.main-content li {
  text-align: left !important;
}
.main-content ul {
  text-align: left !important;
}

/* coming soon*/
.container-comingsoon {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #f0f4f8, #dfe9f3);
  color: #10375c;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  margin: 0;
  padding: 0;
}

.coming-soon {
  max-width: 600px;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.coming-soon h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.coming-soon p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
}

.coming-soon input[type="email"] {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 70%;
  margin-bottom: 15px;
  font-size: 1rem;
}

.coming-soon button {
  padding: 12px 20px;
  background-color: #10375c;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.coming-soon button:hover {
  background-color: #0c2c4a;
}


    @media screen and (max-width: 600px) {
      .faq-title {
        font-size: 1.5rem;
      }

      .faq-toggle {
        font-size: 0.95rem;
        padding: 14px 16px;
      }

      .faq-answer p {
        font-size: 0.95rem;
      }

      .faq-nav {
        flex-direction: column;
        align-items: center;
      }

      .faq-nav button {
        width: 100%;
        font-size: 1rem;
      }
    }
	/* Contact us Page - Navy Blue Complementary Theme */
.contact-us {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef); /* Lighter grey gradient */
  font-family: 'Segoe UI', Roboto, sans-serif; /* More modern font stack */
  text-align: center;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-grid {
  display: flex;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 46, 0.08); /* Navy-tinted shadow */
  align-items: stretch;
  flex-wrap: wrap;
}

.contact-info,
.contact-form {
  flex: 1;
  padding: 40px;
  box-sizing: border-box;
}

/* Contact Info Section */
.contact-info {
  background-color: #f8f9fa; /* Very light grey background */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-info h2,
.contact-form h2 {
  color: #1a365d; /* Deep navy blue */
  margin-bottom: 30px;
  font-weight: 600;
}

/* Contact Info Items */
.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #4a5568; /* Soft grey-blue text */
  justify-content: center;
  text-align: left;
}

.info-item i {
  font-size: 1.3rem;
  color: #2c5282; /* Medium navy blue */
  min-width: 25px;
}

.info-item a {
  text-decoration: none;
  color: #4a5568;
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: #1a365d; /* Dark navy on hover */
}

/* Contact Form Section */
.contact-form {
  background-color: #ffffff;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.contact-form label {
  margin-bottom: 8px;
  font-weight: 500;
  color: #2d3748; /* Dark grey-blue */
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #e2e8f0; /* Very light blue-grey border */
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2b6cb0; /* Medium blue focus */
  outline: none;
  box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1); /* Subtle focus glow */
}

.contact-form button {
  background: #2b6cb0; /* Medium blue */
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #1a4e8a; /* Darker navy blue */
  transform: translateY(-1px);
}

/* Vertical Divider */
.divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
  margin: 30px 0;
}

/* ===== Responsive Styling ===== */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }

  .divider {
    display: none;
  }

  .contact-info,
  .contact-form {
    padding: 30px 20px;
  }

  .info-item {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}