.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slides {
  position: relative;
  height: 100%;
}

.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;
  z-index: 1;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 600px;
  color: #111;
  background: rgba(255, 255, 255, 0.75);
  padding: 30px;
  border-radius: 8px;
}

.badge {
  display: inline-block;
  background-color: #d7ebff;
  color: #03897b;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.slide-content h1 {
  font-size: 48px;
  margin: 0 0 15px;
}

.slide-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.read-more-btn {
  background-color: #e0f0ff;
  color: #038679;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  transition: background 0.3s;
}

.read-more-btn:hover {
  background-color: #cce4ff;
}


/* About page */

.about-section {
  background-color: #f5f8fc;
  padding: 80px 10%;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1;
  min-width: 400px;
}

.about-image img {
  width: 100%;
  max-width: 650px;
  height: 450px;
  border-radius: 8px;
  object-fit: cover;
}


.about-content {
  flex: 1;
  max-width: 600px;
}

.section-label {
  display: inline-block;
  background-color: #d7ebff;
  color: #03897b;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 14px;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.features-list li {
  margin-bottom: 10px;
  font-weight: 500;
  color: #222;
}

.read-more-btn {
  display: inline-block;
  background-color: #00a896;
  color: white;
  padding: 12px 25px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.read-more-btn:hover {
  background-color: #01564e;
}


/* Services*/

.services-section {
  background-color: #fff;
  padding: 80px 10%;
  text-align: center;
}

.section-label {
  display: inline-block;
  background-color: #d7ebff;
  color: #03897b;
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
  align-items: start;
}

.service-item img {
  height: 50px;
  margin-bottom: 15px;
}

.service-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.service-item a {
  color: #03897b;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
}

.service-item a:hover {
  text-decoration: underline;
}

.view-all-container {
  margin-top: 60px;
}

.view-all-btn {
  background-color: #03897b;
  color: #fff;
  padding: 12px 30px;
  font-weight: bold;
  font-size: 14px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.view-all-btn:hover {
  background-color: #00a896;
}

/* Responsive Fix for Tablets and Phones */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* COntact*/
.contact-section {
  padding: 80px 10%;
  background-color: #f8fcff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #444;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  margin-bottom: 15px;
  font-size: 15px;
  color: #333;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 15px;
  resize: none;
}

.contact-form button {
  background-color: #00a896;
  color: white;
  padding: 14px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #03897b;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Blogs*/

.blog-section {
  padding: 80px 20px;
  background-color: #f7f9fc;
  font-family: 'Segoe UI', sans-serif;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .subtitle {
  color: #03897b;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 10px;
  background-color: #d9ecff;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 14px;
}

.section-header h2 {
  font-size: 32px;
  color: #222;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img {
  position: relative;
}

.blog-img img {
  width: 100%;
  height: auto;
  display: block;
}

.date-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #03897b;
  color: white;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 3px;
}

.blog-content {
  padding: 20px;
}

.meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
  display: flex;
  gap: 15px;
}

.blog-content h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.read-more {
  color: #03897b;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.blog-btn-container {
  text-align: center;
  margin-top: 40px;
}

.view-all-btn {
  background-color: #00a896;
  color: white;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.view-all-btn:hover {
  background-color: #03897b;
}

/* Responsive */
@media screen and (max-width: 991px) {
  .blog-card {
    flex: 1 1 48%;
    max-width: 48%;
  }
}

@media screen and (max-width: 767px) {
  .blog-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.testimonial-section {
  padding: 80px 20px;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title .subtitle {
  background-color: #d9ecff;
  color: #03897b;
  padding: 5px 14px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 32px;
  color: #222;
}

.testimonial-slider {
  position: relative;
  display: flex;
  overflow: hidden;
  justify-content: center;
}

.testimonial-card {
  background-color: #f3f6fa;
  border-radius: 8px;
  padding: 30px;
  max-width: 600px;
  width: 100%;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s ease;
}

.testimonial-card.active {
  display: flex;
}

.testimonial-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 30px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.testimonial-footer img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-footer h4 {
  margin: 0;
  font-size: 18px;
  color: #111;
}

.testimonial-footer span {
  font-size: 14px;
  color: #03897b;
}

.testimonial-footer .quote {
  position: absolute;
  right: 0;
  font-size: 50px;
  color: #d8e6f6;
  font-weight: bold;
}

.dots {
  text-align: center;
  margin-top: 30px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background-color: #03897b;
}






