/* styles.css */
:root {
    --white: #ffffff;
    --orange: #FF6B35;  /* Vibrant orange for CTAs */
    --blue: #004E89;    /* Trustworthy blue */
    --light-blue: #E6F2FF; /* Subtle background */
}
:root {
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Open Sans', sans-serif;
}

h1, h2, h3 {
  font-family: var(--heading-font);
  font-weight: 600;
}

body {
  font-family: var(--body-font);
}

a {
  text-decoration: none !important;
}
/* Navbar Base Styles */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
}

.logo img {
    height: 40px;
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu li a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: var(--orange);
}

/* CTA Button */
.cta-button {
    background: var(--orange);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button, .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.fa-phone {
  margin-right: 0.5rem;
}
.cta-button:hover {
    background: #E05A2B; /* Darker orange on hover */
}

/* Mobile Menu Toggle (Hidden by Default) */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: var(--blue);
    transition: all 0.3s;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 2rem 0;
        transition: left 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-cta {
        display: none;
    }
}

/* Hero Section - Full Viewport Height */
.hero {
    background-color: var(--light-blue);
    height: calc(100vh - 80px); /* Full height minus navbar */
    display: flex;
    align-items: center;
    padding: 0 2rem;
  }
  
  .hero-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    gap: 4rem;
  }
  
  /* Left Side: Text */
  .hero-content {
    flex: 1;
    max-width: 600px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    color: var(--blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .hero-content h1 span {
    color: var(--orange);
  }
  
  .hero-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
  }
  
  /* Buttons */
  .hero-buttons {
    display: flex;
    gap: 1rem;
  }
  
  .btn-primary {
    background: var(--orange);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
  }
  
  .btn-secondary {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  /* Right Side: Image Slider */
  .hero-slider {
    flex: 1;
    height: 500px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .slider-container {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .slide.active {
    opacity: 1;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .hero-container {
      flex-direction: column;
      text-align: center;
      gap: 2rem;
    }
  
    .hero-slider {
      width: 100%;
      height: 400px;
    }
  
    .hero-buttons {
      justify-content: center;
    }
  }
    /* Responsive */
  @media (max-width: 440px) {
  .hero-buttons{
    display: flex;
    flex-direction: column;
  }
  .btn-primary{
    text-align: center;
    justify-content: center; /* Add this line */
  }
  }

  /* About Us Section */
.about-us {
    padding: 5rem 2rem;
    background: var(--white);
  }
  
  .about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
  }
  
  .about-image {
    position: relative;
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 78, 137, 0.1);
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--orange);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
  }
  
  .experience-badge .years {
    font-size: 2rem;
    display: block;
    line-height: 1;
  }
  
  .about-content {
    flex: 1;
  }
  
  .about-content h3 {
    color: var(--blue);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .about-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .mission-statement {
    background: var(--light-blue);
    border-left: 4px solid var(--orange);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
  }
  
  .about-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
  }
  
  .about-features li {
    margin-bottom: 0.8rem;
    color: var(--blue);
  }
  
  .about-features i {
    color: var(--orange);
    margin-right: 10px;
  }
  
  /* Stats Counter */
  .stats {
    display: flex;
    justify-content: space-around;
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
  }
  
  .stat-item {
    padding: 1rem;
  }
  
  .stat-item .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue);
    display: block;
  }
  
  .stat-item .label {
    color: #666;
    font-size: 0.9rem;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
    }
    
    .stats {
      flex-direction: column;
      gap: 2rem;
    }
  }

  /* Services Section */
.services-section {
    padding: 5rem 2rem;
    background-color: var(--white);
  }
  
  .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    color: var(--blue);
    margin-bottom: 0.5rem;
  }
  
  .section-header h2 span {
    color: var(--orange);
  }
  
  .section-header p {
    color: #666;
    font-size: 1.1rem;
  }

  .view-all-btn {
    display: inline-block;
    margin-top: 15px;
    color: var(--blue);
    font-weight: 600;
    transition: all 0.3s;
  }
  
  /* Services Grid */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .service-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f0f0;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 78, 137, 0.1);
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .service-icon img {
    width: 40px;
    height: 40px;
  }
  
  .service-card h3 {
    color: var(--blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .service-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
  }
  
  .service-features li {
    padding: 0.5rem 0;
    color: var(--blue);
    position: relative;
    padding-left: 1.8rem;
  }
  
  .service-features li::before {
    content: "•";
    color: var(--orange);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .service-link {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
  }
  
  .service-link:hover {
    color: #e05a2b;
  }
  
  .service-link i {
    transition: transform 0.3s;
  }
  
  .service-link:hover i {
    transform: translateX(3px);
  }
  
  /* CTA Banner */
  .service-cta {
    background: var(--light-blue);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 0;
  }
  
  .service-cta p {
    font-size: 1.2rem;
    color: var(--blue);
    margin-bottom: 1.5rem;
  }
  
  .service-cta p strong {
    color: var(--orange);
  }
  
  
  /* Responsive */
  @media (max-width: 768px) {
    .services-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Doctor Intro Section */
.doctor-intro {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #f9f9f9 0%, white 100%);
  }
  
  .doctor-profile {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
  }
  
  .doctor-image {
    position: relative;
    flex: 1;
    min-width: 350px;
  }
  
  .doctor-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 78, 137, 0.1);
  }
  
  .doctor-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    white-space: nowrap;
  }
  
  .doctor-badge i {
    margin-right: 8px;
  }
  
  .doctor-bio {
    flex: 1;
  }
  
  .doctor-bio h3 {
    color: var(--blue);
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .specialty {
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }
  
  .bio-text {
    margin-bottom: 2rem;
  }
  
  .bio-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  .credentials {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
  }
  
  .credentials li {
    padding: 0.5rem 0;
    color: var(--blue);
    position: relative;
    padding-left: 2rem;
  }
  
  .credentials li i {
    color: var(--orange);
    position: absolute;
    left: 0;
    top: 0.7rem;
  }
  
  .doctor-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }
  
/* Doctor Social Links */
.doctor-social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.doctor-social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--light-blue);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.doctor-social-links a:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-3px);
}

/* Remove the old button styles if they're no longer needed */
.doctor-cta .btn-primary, 
.doctor-cta .btn-outline {
  display: none;
}
  
  /* Responsive */
  @media (max-width: 992px) {
    .doctor-profile {
      flex-direction: column;
      gap: 3rem;
    }
    
    .doctor-image {
      min-width: 100%;
    }
  }

  /* Clinic Tour Section */
.clinic-tour {
  padding: 4rem 2rem;
  background: var(--light-blue);
}

.tour-container {
  max-width: 1200px;
  margin: 2rem auto 0;
}

/* Map Embed */
.map-embed {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 78, 137, 0.1);
  height: 300px;
  margin-bottom: 2rem;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.hours-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 78, 137, 0.15);
  margin-bottom: 15px;
  width: 100%;
}

.hours-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 78, 137, 0.1);
}

.hours-header h4 {
  margin: 0;
  color: var(--blue);
  font-size: 1.1rem;
}

.hours-header i {
  color: var(--orange);
  font-size: 1.2rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 5px;
}

.hours-grid .day {
  font-weight: 500;
  color: #555;
}

.hours-grid .time {
  text-align: right;
  font-weight: 600;
  color: var(--blue);
}

.hours-grid .emergency {
  color: var(--orange);
  font-weight: 600;
}


.directions-btn {
  background: var(--orange);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s;
}

.directions-btn:hover {
  transform: translateY(-3px);
}

/* Image Gallery */
.clinic-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.highlight-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.highlight-card:hover {
  transform: translateY(-5px);
}

.highlight-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.highlight-card h4 {
  color: var(--blue);
  padding: 1rem 1rem 0.5rem;
  font-size: 1.1rem;
}

.highlight-card p {
  color: #666;
  padding: 0 1rem 1rem;
  font-size: 0.9rem;
}

/* Virtual Tour CTA */
.virtual-tour-cta {
  text-align: center;
  margin-top: 2rem;
}

.virtual-tour-cta p {
  color: var(--blue);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.virtual-tour-cta strong {
  color: var(--orange);
}

.tour-button {
  background: var(--blue);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s;
}

.tour-button:hover {
  background: #003366;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .map-embed {
    height: 250px;
  }
  
  .clinic-highlights {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section */
.faq-section {
  padding: 5rem 2rem;
  background: var(--light-blue);
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  background: white;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--blue);
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f9f9f9;
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  background: white;
}

.faq-answer p {
  padding: 0 0 1.5rem;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem;
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
}

.faq-cta p {
  color: var(--blue);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .reviews-container {
    grid-template-columns: 1fr;
  }
  
  .faq-question {
    padding: 1rem;
  }
  
  .faq-answer p {
    padding: 0 0 1rem;
  }
}

/* Footer Styles */
.site-footer {
  background: var(--blue);
  color: white;
  padding: 3rem 2rem 0;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  padding-bottom: 2rem;
}

.footer-col h3 {
  color: var(--orange);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--orange);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.footer-logo span {
  font-weight: 700;
  font-size: 1.3rem;
}

.footer-about {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

.contact-info p {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact-info a {
  color: white;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: var(--orange);
}

.footer-links,
.footer-services {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-services li {
  margin-bottom: 0.7rem;
}

.footer-links a,
.footer-services a {
  color: white;
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
  display: block;
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--orange);
  padding-left: 5px;
}

.newsletter-form {
  margin: 1.5rem 0;
}

.newsletter-form input {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 4px;
  margin-bottom: 0.8rem;
}

.newsletter-form button {
  background: var(--orange);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
  width: 100%;
}

.newsletter-form button:hover {
  background: #e05a2b;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

.copyright-bar {
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.legal-links a {
  color: white;
  opacity: 0.8;
  text-decoration: none;
  transition: opacity 0.3s;
}

.legal-links a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer-services {
  columns: 2;
  column-gap: 2rem;
}

@media (max-width: 768px) {
  .footer-services {
    columns: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .copyright-bar {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}