/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
}

body {
   
  color: #1e1e1e;
  background: #f9f9f9;
}  .navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: white;
    
  }

  .home-menu {
    display: flex;
  }


  .btn-group {
    display: block;
    justify-content: center;
    align-items: center;


  }
.no-style{
  text-decoration: none;
  list-style-type: none;
  color: rgb(20, 20, 20);
}
.no-style:hover{
  color: #007bff;
  
}
  .menu {
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
  }

  .main-dropdown-item, a{
    color: black;
    font-weight: 500;
    padding: 10px;
    align-items: center;
    justify-content: center;
    list-style-type: none;
    text-decoration: none;
  }

  .menu-icon {
    display: none;

  }

  .styleingbtn {
    padding: 10px;
    text-align: center;
    background-color: rgb(0, 102, 255);
    color: rgb(255, 255, 255);
    font-size: medium;
    border-radius: 10px;

  }

  .styleingbtn:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(12, 79, 180);
  }

  @media (max-width: 775px) {
    .home-menu {
      display: none;

    }

    .menu-icon {
      display: block;
    }
  }

/* Hero Section */
.hero {
  position: relative;
  background-image: url('../img/back.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
    border-radius: 0 0 50px 50px;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  margin-top: 50px;
}

.hero-content h5 {

  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}


/* Info Bar */

.info-padd{
display: flex;
   justify-content: center;
   align-items: center;
   
}
.info-bar {
     width:80% ;
  display: flex;
  justify-content: space-around;
  background: #fff;
  padding: 25px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-top: -40px;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 10px;
  position: relative;
  z-index: 5;
  overflow: hidden;

}

.info-item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 15px;

}

.info-item span {
  font-size: 30px;
}

.info-item p {
  color: gray;
  font-size: 14px;
}

@media (max-width: 600px) {
.info-bar{
  display: flex;
  flex-wrap: wrap;

}
}

@media (max-width: 375px) {
  
.hero-content h1{
  font-size: 30px;
}

.info-bar {
  flex-direction: column;
  align-items: center;
  width: 95%;
  
}
.info-item {
  padding: 10px;
}

}

/* WhatsApp Button */


.whatsapp-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  align-items: center;

 
  border-radius: 50px;
  
  cursor: pointer;
  padding: 5px 10px 5px 15px;
  transition: all 0.3s ease;
  z-index: 9999;
}

.contact-text {
  background-color: white;
  padding: 5px 10px;
  font-size: 14px;

   border-radius: 8%;
   font-weight: 600;
  color: #016e13;
  margin-right: 8px;
  transition: color 0.3s, font-weight 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
  background: #25d366;
  border-radius: 50%;
  padding: 8px;
  box-sizing: border-box;
  transition:  1s linear;
}

 


/* About Section */
.about-section {
  padding: 80px 8%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1024px) {
  .about-container{
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
.about-image img {
  width: 680px;
  border-radius: 10px;
  object-fit: cover;
}

.about-content h5 {
  color: #0056b3;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0b2653;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.btn-primary {
  display: inline-block;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #0056b3;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    width: 100%;
  }
}

/* Section Heading */
.services-section {
 padding: 0px 4%; 
 margin-bottom: 30px;  
  text-align: center;
}

.services-section h5 {
  color: #0056b3;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 10px;
}

.services-section h2 {
  font-size: 30px;
  color: #0b2653;
  margin-bottom: 50px;
  line-height: 1.3;
}

/* Cards Layout */
.services-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  width: 320px;
  height: 570px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.service-card h3 {
  color: #0b2653;
  font-size: 20px;
  margin-bottom: 15px;
}

.service-card ul {
  list-style: none;
  text-align: left;
}

.service-card ul li {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.service-card ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {

  .services-section{
    margin-top: 0px;
 padding: 0px 10px;     
  }
  .services-container {
    gap: 0%;
    flex-wrap: wrap;
    padding: 0%;
    margin: 5px;
    align-items: center;
  }
.service-card{
  margin: 5px;
  flex-wrap: wrap;
}

}




.cta {
  background: url('../img/contact.jpg') center center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  position: relative;
}

.cta::before {
  content: "";
  background: rgba(0, 0, 50, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta button {
  background-color: #007bff;
  border: none;
  padding: 12px 25px;
  color: #fff;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.cta p {
  margin-top: 15px;
  font-size: 1rem;
}

.cta a {
  color: #ffffff;
  text-decoration: underline;
}

.why-choose {
  padding: 30px 20px;
  text-align: center;
}

.why-choose h4 {
  color: #6c757d;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-choose h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.feature {
  flex: 1 1 250px;
  max-width: 300px;
}

.feature h3 {
  color: #007bff;
  font-size: 1.5rem;
}

.feature h4 {
  margin-top: 10px;
  font-size: 1.5rem;
}

.feature p {
  font-size: 1rem;
  color: #444;
}

/* testimonials */


.testimonials {
  text-align: center;
  padding: 60px 20px;
}


@media (max-width: 820px) {
.testimonials{
  padding:0px;
  margin: 5px;
  
}
}

.section-subtitle {
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #7a8aa1;
  margin-bottom: 10px;
}

.section-title {
  font-size: 28px;
  color: #102a43;
  margin-bottom: 40px;
  font-weight: 700;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  margin: 0%;
  padding: 0%;
  
}

.testimonial-card {
  display: flex;
  flex-wrap: wrap;

  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  width: 400px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.stars {
  color: #ffb400;
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 18px;
  color: #334e68;
  margin-bottom: 20px;
  line-height: 1.5;
}

.patient-info {
  display: flex;
  align-items: center;

}

.patient-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.patient-info span {
  font-weight: 600;
  color: #102a43;
}

/* testimonials */

.contact-section {
  position: relative;
  background: url('../img/contactBottom.jpg') center center/cover no-repeat;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
}

.contact-overlay {
  background-color: rgba(0, 0, 50, 0.7);
  padding: 40px;
  text-align: center;
  border-radius: 0 0 50px 50px;
  width: 100%;
}

.subheading {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 10px;
}

.contact-section h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;

}

.contact-btn {
  padding: 12px 25px;
  background-color: #007bff;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 15px;
}

.contact-btn:hover {
  background-color: #0056b3;
}

.contact-number {
  font-size: 1.1rem;
}

.contact-number a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.footer {
  background-color: #fff;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 20px;
  color: #0b1a42;
  font-size: 0.9rem;
  border-top: 1px solid #eee;
}

#social-icons a {
  color: #0b1a42;



  text-decoration: none;
  transition: color 0.3s ease;
}

#social-icons a:hover {
  color: #007bff;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .contact-section h1 {
    font-size: 1.5rem;
  }

  .contact-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .contact-number {
    font-size: 1rem;
  }
}