/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1,
h2,
h3 {
  color: #269EB6;
}

h1,
h2 {
  font-size: 2.5rem;
}

h4 {
  font-size: 2rem;
}

a {
  text-decoration: none;
  color: #269EB6;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #269EB6;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #1c7a8a;
}


/* About Section */
.about {
  padding: 80px 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1;
  animation: fadeInLeft 1s ease;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
}

.about-text {
  flex: 1;
  animation: fadeInRight 1s ease;
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: #f4f4f4;
}

/* .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
} */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Default: 3 columns for desktop */
  gap: 20px;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns for tablets */
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(1, 1fr);
    /* 1 column for mobile */
  }
}


.service-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card i {
  font-size: 2rem;
  color: #269EB6;
  margin-bottom: 10px;
}

/* Clinic Timing and Location */
.timing {
  padding: 80px 0;
}

.timing-content {
  display: flex;
  gap: 40px;
}

.timing-details,
.location-details {
  flex: 1;
}

/* Footer Section */
.footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0;
  text-align: left;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.footer-social a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.2rem;
}

.footer-social a:hover {
  color: #269EB6;
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .about-content,
  .timing-content {
    flex-direction: column;
  }

  .hero-11 {
    margin-top: 100px;
  }

}

@media (max-width: 1100px) {
  .hero-11 {
    margin-top: 90px;
  }
}



/* Hero image CSS  */
.hero-11 {
  width: 100%;
  height: auto;
}

.hero-11 img {
  width: 100%;
  height: auto;
  display: block;
}

.container .logo img {
  width: 150px;
}


/* About us  */
#about .container h2 {
  font-size: 2.5rem;
}



#devider {
  border: 3px solid #165662;
  width: 60px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  margin-top: -10px;
  margin-bottom: 10px;
}



/* Contact Section css  */

.contact-container {
  max-width: 1200px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); */
}



.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.contact-box {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}

.contact-box i {
  font-size: 24px;
  color: #002D62;
  margin-bottom: 10px;
}

/* .contact-box h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 8px;
} */

.contact-box p {
  color: #666;
  font-size: 16px;
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 600px) {
  .contact-container {
    padding: 10px;
  }
}

.footer-list-icon {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  align-items: center;
  gap: 5px;
}

.location-details img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}



/* Call Button  */

/* Hide button by default */
.call-button {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #28a745;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  z-index: 1000;
}

/* Show button only on small screens */
@media screen and (max-width: 768px) {
  .call-button {
      display: block;
  }
}