body {
  margin: 0;
  background-color: hsl(0, 14%, 97%);
  font-family: Arial, sans-serif;
}

.header {
  background-color: #f4f2f2;
  color: rgb(248, 246, 246);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 60px;
  margin: 20px;
  position: relative;

}

.right-area {
  display: flex;
  align-items: center;
  gap: 20px;
}




.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
  
}

.logo {
  width: 150px;
  height: auto; /* Keeps original aspect ratio */
  object-fit: contain;
  image-rendering: auto;
}


.logo-area .text h2 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.logo-area .text p {
  margin: 0;
  font-size: 20px;
  color: #bbb;
}

/* Default navbar style */
.navbar {
  display: flex;
  gap: 20px;
  align-items:center;
}
.navbar a {
  text-decoration: none !important;
  color: black; /* or your preferred color */
  font-weight: 600;
  border: none !important;
  box-shadow: none !important;
}


/* Hamburger menu icon hidden by default */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    color: #000;
  }

  .navbar {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #f6efef;
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }

  .navbar.active {
    display: flex;
  }

 

  .header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
}


.call-btn {
  background: linear-gradient(to right, #0f44a1, #249beb);
  color:  #f3f2f2;
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.call-btn:hover {
  opacity: 0.9;
}
@media (max-width: 768px) {
.header {
flex-wrap: wrap;
flex-direction: column;
align-items:flex-start;
padding: 15px 20px;
}
.right-area{
  width: 100%;
 
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.menu-toggle {
display: block;
color: #000;
font-size: 28px;
cursor: pointer;
align-self: flex-end;
}

.navbar {
display: none;
flex-direction: column;
width: 100%;
margin-top: 15px;
background: #f6efef;
padding: 10px 0;
border-radius: 10px;
z-index: 10;
}

.navbar.active {
display: flex;
}

.navbar a {
padding: 10px 20px;
width: 100%;
text-align: left;
border-bottom: 1px solid #ddd;
color: #000;
font-weight: 600;
text-decoration: none;
}

.call-btn {
width: 100%;
margin-top: 10px;
align-self: center;
}
}
/*aboutus*/
.about-section,
.expert-section,
.why-choose {
  padding: 60px 20px;
  text-align: center;
  /*background: #f9f9f9;*/
}

.about-section h2,
.expert-section h2,
.why-choose h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.about-section h2 span,
.expert-section h2 span,
.why-choose h2 span {
  color: #1e90ff;
}
.why-choose {
  padding: 60px 20px;
  background: #f8f8f8;
  text-align: center;
}

.why-choose h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.why-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.why-box {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 300px;
  min-width: 20px;
  transition: 0.3s ease;
}

.why-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.why-box h3 {
  color: #1e90ff;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.why-box p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.1;
}
@media(max-width:768px){
    .why-box{
        width: 90%;
    }
}

.container {
  max-width: 1000px;
  margin: auto;
}
.vision-mission-container {
  display: flex;
  justify-content: center;
  align-items:flex-start ;
  gap: 30px;
  padding: 40px 20px;
  flex-wrap: wrap; /* makes it responsive */
}

.vision-mission-container .card {
  background: #f1f1f1;
  padding: 25px;
  border-radius: 10px;
  width: 400px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
  flex: 1;
  width: 100%;
}

.vision-mission-container .card h2 {
  color: #007BFF;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.vision-mission-container .card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}




.expert-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.expert-card {
  /*background: white;*/
  padding: 25px;
  width: 200px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.expert-card img {
  width: 60px;
  margin-bottom: 10px;
}

.reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.reason-box {
  /*background: white;*/
  padding: 25px;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .vision-mission,
  .expert-cards,
  .reasons {
    flex-direction: column;
    align-items: center;
  }

  .card,
  .expert-card,
  .reason-box {
    width: 90%;
  }

  .about-section h2,
  .expert-section h2,
  .why-choose h2 {
    font-size: 1rem;
  }
}
.about-section {
  padding: 60px 40px;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

.about-section h1, .about-section h2 {
  color: #1e90ff;
  margin-bottom: 15px;
}

.about-section ul {
  margin-left: 20px;
  list-style: square;
}

.about-section li {
  margin-bottom: 10px;
}


  /*footer*/
.footer {
  background: #e6f0f8;
  color: rgb(12, 12, 12);
  padding: 40px 20px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
  padding: 20px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col p,
.footer-col li,
.footer-col a {
  font-size: 14px;
  line-height: 1.6;
  color: rgb(8, 8, 8);
  text-decoration: none;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.social-icons a {
  margin-right: 10px;
  display: inline-block;
  transition: transform 0.3s;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%);
}

.social-icons a:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
}

/* WhatsApp Floating Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
}

.whatsapp-btn img {
  width: 50px;
  height: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }

  .footer-col {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
/* review*/
.testimonial-slider {
  position: relative;
  max-width: 600px;
  margin: auto;
  min-height: 300px;
}

.testimonial-card {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(0.98);
  transition: all 0.4s ease;
  z-index: 0;
  pointer-events: none; /* prevents hidden card from blocking clicks */
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
  pointer-events: auto;
}

.testimonial-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 10; /* Make sure it's above cards */
  position: relative; /* ensure it stays in flow */
}
.testimonial-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.testimonial-heading {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #0066cc;
}

.testimonial-heading .highlight {
  color: #007bff;
}

.testimonial-slider {
  position: relative;
  max-width: 600px;
  margin: auto;
  min-height: 300px;
}

.testimonial-card {
  background-color: #f0f7ff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(0.98);
  transition: all 0.4s ease;
  z-index: 0;
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
  pointer-events: auto;
}

.testimonial-card h3 {
  color: #0057b8;
  text-align: left;
  margin-bottom: 10px;
}

.testimonial-card p {
  color: #333;
  text-align: left;
  font-size: 1rem;
}

.testimonial-card .author {
  margin-top: 20px;
  color: #444;
  text-align: left;
}

.testimonial-card .author span {
  font-size: 0.9rem;
  color: #777;
}

.testimonial-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial-buttons button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.testimonial-buttons button:hover {
  background-color: #0056b3;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonial-heading {
    font-size: 2rem;
  }

  .testimonial-slider {
    max-width: 100%;
    padding: 0 10px;
    min-height: 280px;
  }

  .testimonial-card {
    padding: 20px;
    border-radius: 12px;
  }

  .testimonial-card h3 {
    font-size: 1.2rem;
  }

  .testimonial-card p {
    font-size: 0.95rem;
  }

  .testimonial-card .author {
    font-size: 0.9rem;
  }

  .testimonial-buttons button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
