/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #333333;
}
/

/* Testimonial Starts Here */
/* Testimonial Section - Android Optimized */
.testimonial-section {
  background-color: #f5f5f5;
  padding: 40px 20px;
  text-align: left;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  -webkit-text-size-adjust: 100%; /* Prevent font scaling on Android */
}

.testimonial-container {
  max-width: 1200px;
  margin: 50px auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.testimonial-text {
  flex: 1 1 40%;
  min-width: 300px; /* Prevent squeezing on small screens */
}

.subheading {
  font-size: 0.9rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 3px solid orange;
  padding-left: 10px;
  -webkit-font-smoothing: antialiased; /* Better font rendering */
}

.testimonial-heading {
  font-size: clamp(1.5rem, 4vw, 2rem); /* Responsive font size */
  margin: 10px 0;
  color: #333;
  line-height: 1.3;
}

.testimonial-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.testimonial-carousel {
  flex: 1 1 55%;
  min-width: 0; /* Fix flexbox overflow on Android */
}

/* Swiper Container Fixes */
.testimonial-swiper {
  overflow: hidden; /* Prevent scroll bleed */
  width: 100%;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling iOS/Android */
}

.swiper-wrapper {
  transform: translate3d(0,0,0); /* Force GPU acceleration */
}

.testimonial-box {
  position: relative;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-height: 220px;
  -webkit-tap-highlight-color: transparent; /* Remove tap highlight */
  will-change: transform; /* Optimize animations */
}

.testimonial-text-body {
  font-size: 14px;
  color: #444; 
  line-height: 1.5;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Profile Section Fixes */
.testimonial-profile {
  position: absolute;
  bottom: 10px;
  left: 20px;
  display: flex;
  align-items: center;
  padding: 5px 0;
  border-radius: 30px;
  z-index: 10;
  background: white; /* Fallback for overlap */
}

.testimonial-image,
.testimonial-avatar-fallback {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-right: 10px;
  -webkit-user-drag: none; /* Prevent image dragging */
}

.testimonial-avatar-fallback {
  background-color: #f0f4f8;
  color: #10375C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 2px solid #d1d9e6;
}

/* Tabs - Android Optimized */
.testimonial-tabs {
  text-align: center;
  margin-bottom: 20px;
  overflow-x: auto; /* For horizontal scrolling if needed */
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 5px; /* Space for scroll */
}

.tab-button {
  padding: 10px 20px;
  margin: 0 5px;
  border: none;
  background-color: #eee;
  cursor: pointer;
  border-radius: 20px;
  display: inline-block;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation; /* Improve touch response */
}

.tab-button.active {
  background-color: #145DA0;
  color: white;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
    padding: 0;
    gap: 20px;
  }

  .testimonial-text, 
  .testimonial-carousel {
    flex: 1 1 100%;
    width: 100%;
  }

  .testimonial-box {
    min-height: 240px; /* More space for content */
    padding: 15px;
  }

  .testimonial-profile {
    bottom: 15px;
    left: 15px;
  }

  .tab-button {
    padding: 8px 16px;
    font-size: 14px;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .testimonial-section {
    padding: 30px 15px;
  }

  .testimonial-box {
    min-height: 260px; /* Even more space for mobile */
  }

  .testimonial-text-body {
    font-size: 15px; /* Slightly larger text */
  }
} 	
/* Testimonial Ends Here */



/* Extra small screens (optional) */
@media (max-width: 480px) {
  .testimonial-box-responsive {
    min-height: 320px;
  }
}


/* Header Style Starts Here */

/* Base Header */
header {
  background-color: #10375c;
  color: #ffffff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap; /* important: keep everything in one row */
  gap: 20px;
}

/* Menu + Logo Container */
.menu-logo {
  display: flex; /* ✅ Show by default (for desktop) */
  align-items: center;
  gap: 10px;
}

/* Hamburger Icon */
.menu-toggle {
  display: none; /* ✅ Hide on desktop */
  font-size: 28px;
  cursor: pointer;
  color: #ffffff;
}
/* Logo */
.logo img {
  height: 40px;
}

/* Navigation */
nav {
  flex: 1 1 auto;              /* Allow nav to grow/shrink */
  display: flex;
  justify-content: flex-end;     /* Center menu items */
  min-width: 0;                /* Prevent nav from forcing a wrap */
}
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  text-decoration: none;
  color: #f0f0f0;
  padding: 5px;
  transition: all 0.3s ease;
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px;
  bottom: -6px;
  left: 0;
  background-color: #57ceee;
  transition: width 0.3s ease;
  border-radius: 2px;
}

nav ul li a:hover::after {
  width: 100%;
}

nav ul li a:hover {
  color: #57ceee;
}

.dropdown {
  position: relative;
 }

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: rgba(16, 55, 92, 0.95);
  padding: 12px 16px;
  border-radius: 8px;
  top: 100%;
  left: 0;
  z-index: 10;
  list-style: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  
  min-width: 220px;     /* 👈 Set wider menu */
  white-space: nowrap;  /* 👈 Prevent text wrapping */
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  color: #f0f0f0;
  display: block;
  padding: 5px 10px;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background-color: #57ceee;
  color: #10375c;
}

/* Header actions (search + login) */
.header-actions {
  flex-shrink: 0;              /* Prevent it from shrinking */
  display: flex;
  align-items: center;
  gap: 10px;
}


.login-btn {
  padding: 8px 12px;
  background-color: #57ceee;
  color: #10375c;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: stretch;
  }


.menu-toggle {
    display: block; 
    font-size: 28px;
    cursor: pointer;
    color: #ffffff;
  }
 .menu-logo {
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 10px;
  }


.logo {
  flex-shrink: 0; /* Prevents the logo from shrinking */
}

.logo img {
  height: 40px;
  width: auto; /* Maintain aspect ratio */
  display: block; /* Removes extra space under image */
}



  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 0;
  }

  nav.active {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
  }

  nav ul li {
    margin: 10px 0;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
    position: relative;
    background-color: rgba(16, 55, 92, 0.95);
    padding: 10px;
    box-shadow: none;
    border-radius: 8px;
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .login-btn {
    width: 100%;
	margin:10px 0;
  }


}


/* Header Style Ends Here */




/* Import a modern font like Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');


@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.pulse {
  animation: pulse 0.5s ease;
}

#searchBox {
  padding-right: 40px; /* Space for the icon */
  /* Rest of your input styles */
}

#searchIcon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #58a4b0;
  padding: 10px; /* Makes the clickable area larger */
  pointer-events: auto; /* Ensures clicks work */
  z-index: 2; /* Ensures it's above other elements */
  transition: color 0.2s ease;
}

#searchIcon:hover {
  color: #417c85;
  cursor: pointer;
}* Your existing input styles */
}

header .header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

header .search-wrapper {
  position: relative;
  width: 300px; /* Adjust width as needed */
}

header .search-wrapper input {
  width: 100%;
  padding: 14px 45px 14px 20px; /* Left-right padding for icon and text */
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #333; /* Darker color for text */
  background-color: #f7f7f7; /* Light gray background */
  border: 1px solid #ccc;
  border-radius: 30px; /* Fully rounded */
  outline: none;
  transition: border 0.3s, box-shadow 0.3s, background-color 0.3s;
}

header .search-wrapper input::placeholder {
  color: #888; /* Lighter color for placeholder */
  font-style: italic; /* Optional: make placeholder text italic */
}

header .search-wrapper input:focus {
  border-color: #58a4b0;
  box-shadow: 0 0 5px rgba(88, 164, 176, 0.5);
  background-color: #fff; /* White background when focused */
}

header .search-wrapper i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 18px;
  pointer-events: none;
}

header .header-actions button {
  padding: 12px 20px;
  font-size: 12px;
  background-color: #6e7b8b;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s;
}

header .header-actions button:hover {
  background-color: #577c93;
}




/* Hit Counter */
.hit-counter {
  background-color: #e6f0f3;
  padding: 30px 20px;
  text-align: center;
}


.hit-counter p {
  font-size: 18px;
  color: #333;
}


.hit-counter h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 30px;
}

.counter-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap; /* Allows items to stack on smaller screens */
  margin-top: 20px;
}

.counter {
  flex: 1 1 100px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px;
}

.counter i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #cc6d6d;
}

.counter h3 {
  font-size: 1.25rem;
  color: #333;
  font-weight: 600;
}

.counter span {
  color: #323630;
  font-size: 2.2rem;
  font-weight: bold;
  display: inline-block;
  transition: transform 0.2s ease-out;
  animation: pop 1s ease-out forwards;
}
@media (max-width: 600px) {
  .counter-wrapper {
    gap: 10px; /* Reduce space between boxes */
    justify-content: space-between; /* Better use of space */
  }

  .counter {
    flex: 1 1 calc(50% - 10px); /* Two per row with spacing */
    max-width: 100%; /* Remove width restriction */
    margin-bottom: 10px;
    padding: 15px; /* Slightly tighter padding */
  }
}


/* Main Content */
.main-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  padding: 50px 20px;
  background-color: #f8f9fa;
  border:1px solid;
}

.main-content div {
  flex: 1 1 250px;
  background-color: #ffffff;
  padding: 20px;
  text-align: center;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  border-radius: 8px;
}

.main-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #10375c;
}

.main-content p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
}

.main-content form input[type="text"],
.main-content form input[type="file"] {
  width: 90%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.main-content form button,
.main-content button {
  padding: 10px 20px;
  background-color: #57ceee;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}



/* services */
/* Full width section with gradient background */
.quick-skin-section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
background: linear-gradient(135deg, #c9f0ff, #79c7e3);

  overflow: hidden;
}

.quick-skin-img {
  position: absolute;
  top: 50px;
  left: 50px;
  width: 550px;   /* large size on desktop */
  height: auto;
  opacity: 0.8;
  pointer-events: none;
  user-select: none;
}

/* Responsive for mobile */
@media (max-width: 600px) {
  .quick-skin-img {
    width: 100px;      /* smaller on mobile */
    top: 10px;
    left: auto;       /* reset left */
    right: 10px;      /* position from right instead */
  }
}



/* Container to limit content width */
.quick-skin-container {
  max-width: 600px;
  margin: 0 auto;        /* centers by default */
  text-align: left;
  padding-left: 0;
}

/* On wider screens, shift it right */
@media (min-width: 1024px) {
  .quick-skin-container {
    margin-left: 640px;  /* shift right on desktop */
    margin-right: 0;
  }
}


/* Heading & Paragraph */
.quick-skin-container h2 {
  font-size: 32px;
  color: #10375c;
  margin-bottom: 10px;
}

.quick-skin-container p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

/* Form layout */
.quick-report-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* File input with label */
.file-upload-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.file-upload-wrapper input[type="file"] {
  opacity: 0;
  width: 100%;
  height: 48px;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}

.file-upload-wrapper label {
  display: inline-block;
  background-color: #f0f4f8;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px dashed #ccc;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
  text-align: left;
}

.file-upload-wrapper label:hover {
  background-color: #e3edf7;
}

/* Placeholder for selected file text */
.file-chosen-text {
  margin-top: 8px;
  font-size: 14px;
  color: #777;
}

/* Submit button */
.fancy-button {
  background: linear-gradient(to right, #10375c, #14507a);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.fancy-button:hover {
  background: #0e2d4b;
}



.service-card {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 30px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.05);
}

.service-card h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #10375c;
}

.service-card p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555;
}

.service-card form {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.service-card input[type="file"],
.service-card input[type="text"] {
  flex-grow: 1;
  padding: 10px 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.service-card button {
  padding: 11px 25px;
  background-color: #10375c;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.service-card button:hover {
  background-color: #205a8f;
}
.doctor-search-form {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.search-form {
  width: 100%;
  max-width: 450px;
}

.search-input-wrapper {
  position: relative;
  width: 100%;
}

.search-input-wrapper input[type="text"] {
  width: 100%;
  padding: 12px 45px 12px 16px;
  border-radius: 12px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-size: 16px;
  transition: 0.3s;
}

.search-input-wrapper input[type="text"]:focus {
  outline: none;
  border-color: #10375c;
  box-shadow: 0 0 0 4px rgba(16, 55, 92, 0.1);
}

.search-icon-btn {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: linear-gradient(to right, #10375c, #14507a);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon-btn:hover {
  background: #0e2d4b;
}








.skin-issues-snippets {
  background-color: #e6f0f3;
  padding: 50px 20px;
  text-align: center;
}

.skin-issues-snippets h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #10375c;
}

.skin-cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.skin-card {
  flex: 0 0 250px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  padding: 20px;
  scroll-snap-align: start;
  transition: transform 0.2s;
}

.skin-card:hover {
  transform: translateY(-5px);
}

.skin-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.skin-card h3 {
  font-size: 20px;
  color: #10375c;
  margin-bottom: 10px;
}

.skin-card p {
  font-size: 14px;
  color: #333;
}
.doctor-profile:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}



:root {
  --primary-color: #3b82f6;
  --primary-hover: #2563eb;
}

/* Scoped FAQ Styles */
.faq-wrapper .faq-section {
  padding: 60px 20px;
  background: #f9f9fc;
  text-align: center;
  font-family: 'Helvetica Neue', sans-serif;
}

.faq-wrapper .faq-header {
  margin-bottom: 40px;
}

.faq-wrapper .faq-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f2d40;
}

.faq-wrapper .faq-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin-top: 10px;
}

.faq-wrapper .faq-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.faq-wrapper .faq-item {
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-wrapper .faq-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 15px 24px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #1f2d40;
}

.faq-wrapper .faq-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-wrapper .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  margin-top: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-wrapper .faq-answer p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.faq-wrapper .faq-item.active .faq-answer {
  max-height: 200px;
  padding: 10px 24px;
  margin-top: 0;
}

.faq-wrapper .faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* FAQ Navigation Buttons */
.faq-wrapper .faq-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.faq-wrapper .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-wrapper .faq-nav button:hover:enabled {
  background-color: var(--primary-hover);
}

.faq-wrapper .faq-nav button:disabled {
  background-color: #cbd5e0;
  cursor: not-allowed;
}

/* Responsive Fixes */
@media (max-width: 480px) {
  .faq-wrapper .faq-title {
    font-size: 24px;
  }

  .faq-wrapper .faq-subtitle {
    font-size: 14px;
  }

  .faq-wrapper .faq-toggle {
    font-size: 16px;
    padding: 12px 16px;
  }

  .faq-wrapper .faq-answer {
    padding: 0 16px;
  }

  .faq-wrapper .faq-item.active .faq-answer {
    padding: 10px 16px;
  }

  .faq-wrapper .faq-nav button {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}


.hidden {
  display: none;
}

.load-more-btn {
  display: block;
  margin: 2rem auto;
  padding: 0.8rem 1.5rem;
  background-color: #0066cc;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
}
/* Partner Logos Section */
/* Partner Logos Section */
.partners-section {
  background: linear-gradient(135deg, #f0f4f8, #ffffff);
  padding: 60px 20px;
  text-align: center;
}

.partners-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.partners-logos img {
  background: #fff;
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  height: 60px;
  object-fit: contain;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.partners-logos img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .partners-section {
    padding: 40px 15px;
  }

  .partners-section h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .partners-logos {
    gap: 20px;
  }

  .partners-logos img {
    height: 50px;
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  .partners-logos {
    gap: 16px;
  }

  .partners-logos img {
    height: 45px;
    padding: 8px 14px;
  }
}


/* Doctors Online Section */
.doctors-online {
  background: linear-gradient(145deg, #f9fbfd, #eef4f8);
  padding: 60px 20px;
  text-align: center;
}

.doctors-online .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.1rem;
  margin-bottom: 10px;
  color: #2b3e4f;
}

.section-subtitle {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #555;
}

.doctors-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.doctor-profile {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doctor-profile:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.doctor-profile img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.doctor-profile h3 {
  font-size: 1.2rem;
  margin: 10px 0 5px;
  color: #1e2a38;
}

.doctor-specialty {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.book-btn {
  padding: 10px 20px;
  background-color: #0078d4;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.book-btn:hover {
  background-color: #005fa3;
}

/* Optional pop animation */
@keyframes pop {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .counter-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .counter {
    max-width: 100%;
  }

  .hit-counter h2 {
    font-size: 2rem;
  }

  .counter h3 {
    font-size: 1.1rem;
  }

  .counter span {
    font-size: 2rem;
  }
}


@media (max-width: 768px) {
  .partners-logos {
    gap: 20px;
  }

  .partners-logos img {
    height: 50px;
  }
}


@media (max-width: 768px) {
  .partners-logos {
    gap: 20px; /* Less space on mobile */
  }

  .partners-logos img {
    max-width: 120px; /* Smaller logo size on mobile */
  }
}

 
  /* WhatsApp Button Styling */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999; /* Ensures it's above everything */
  background-color: #25D366;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}




/* Trust Seal starts here */
.trust-seal-section {
  background-color: #f3faff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.trust-seal-section h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #333;
}

.trust-subtext {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  padding: 0 10px;
}

.trust-seals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.trust-item {
  max-width: 160px;
  text-align: center;
}

.trust-item img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.trust-item p {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin-top: 8px;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

/* Mobile-Responsive Styles */
@media screen and (max-width: 768px) {
  .trust-seal-section h2 {
    font-size: 22px;
  }

  .trust-subtext {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .trust-seals {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .trust-item {
    max-width: 100%;
  }

  .trust-item img {
    width: 70px;
    height: 70px;
  }

  .trust-item p {
    font-size: 13px;
  }
}
/* Footer */
.site-footer {
  background-color: #1f2937;
  color: #ffffff;
  padding: 60px 30px 30px;
  font-family: 'Helvetica Neue', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  padding: 0 10px;

}

.footer-logo {
  width: 160px;
  margin-bottom: 20px;
}

.footer-description {
  font-size: 12px;
  color: #e5e7eb;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-contact p {
  font-size: 12px;
  color: #d1d5db;
  margin: 6px 0;
}

.newsletter-description {
  font-size: 12px;
  color: #d1d5db;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-column h4 {
  font-size: 0.9rem;
  margin: 10px 0;
  color: #ffffff;
  padding-left: 2px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 8px;
  padding-left: 2px;
}

.footer-column a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #3b82f6;
}

.footer-social-icons {
  margin-bottom: 20px;
}

.footer-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #e0e0e0;
  color: #333;
  transition: all 0.3s ease;
  text-decoration: none;
  margin: 5px 5px;
}

.footer-social-icons a i {
  font-size: 30px;
}

.footer-social-icons a:hover {
  color: #fff;
}

/* Brand background colors on hover */
.footer-social-icons a.facebook:hover {
  background-color: #3b5998;
}

.footer-social-icons a.instagram:hover {
  background-color: #e1306c;
}

.footer-social-icons a.threads:hover {
  background-color: #000000;
}

.footer-social-icons a.twitter:hover {
  background-color: #1da1f2;
}

.footer-social-icons a.youtube:hover {
  background-color: #ff0000;
}

.footer-spacer {
  height: 25px;
}

/* Certification Badge Section */
.footer-certifications {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
 
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cert-item img {
  height: auto;
  width: 110px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 10px;
  
}

.cert-item img:hover {
  transform: scale(1.05);
}

.cert-item span {
  font-size: 12px;
  color: #d1d5db;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.newsletter-form input[type="email"] {
  padding: 10px;
  border: none;
  border-bottom: 2px dashed #9ca3af;
  background: transparent;
  font-size: 12px;
  color: #fff;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #9ca3af;
}

.newsletter-form button {
  padding: 10px 16px;
  border: none;
  background-color: #3b82f6;
  color: white;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  width: fit-content;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #2563eb;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #374151;
  text-align: center;
  padding-top: 20px;
  font-size: 10px;
  color: #9ca3af;
}

.footer-bottom a {
  color: #9ca3af;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 0 20px 30px;
  }

  .footer-column {
    padding: 0;
  }

  .footer-logo {
    width: 140px;
  }

  .footer-description,
  .footer-contact p,
  .footer-column a,
  .newsletter-form input[type="email"] {
    font-size: 13px;
  }

  .footer-column h4 {
    font-size: 1rem;
  }

  .newsletter-form button {
    font-size: 13px;
    padding: 8px 14px;
  }
}

.footer-column.quick-links {
  margin-left: 50px;
}

@media (max-width: 992px) {
  .footer-column.quick-links {
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 40px 20px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-column {
    padding: 0;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
  }

  .newsletter-form button {
    align-self: stretch;
    text-align: center;
  }

  .footer-bottom {
    font-size: 11px;
    padding-top: 15px;
  }

  .cert-item img {
    width: 90px;
  }

  .cert-item span {
    font-size: 13px;
  }
}
