/* Hero Slider Styles */
.hero-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: right center;
  display: none;
  justify-content: flex-start;
  align-items: center;
}

.slide.active {
  display: flex;
}

.hero-content {
  margin-left: 60px;
  color: #333;
  background: rgba(255, 255, 255, 0.85);
  padding: 40px;
  border-radius: 10px;
  max-width: 500px;
}

.hero-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #666;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 38px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 15px;
  margin-bottom: 25px;
  line-height: 1.6;
  color: #444;
}

.cta-buttons a {
  padding: 12px 20px;
  margin-right: 10px;
  text-decoration: none;
  font-weight: 500;
  border-radius: 5px;
  font-size: 14px;
}

.btn-primary {
  background-color: #00addf;
  color: #fff;
}

.btn-secondary {
  background-color: #333;
  color: #fff;
}

/* about*/

/* Home - About Us Section */
.home-about {
  padding: 80px 20px;
  background-color: #f6f9fb;
}

.home-about .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.about-left {
  flex: 1;
  min-width: 280px;
}

.about-left h2 {
  font-size: 30px;
  color: #111;
  margin-bottom: 20px;
}

.about-left p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

.learn-more-btn {
  display: inline-block;
  margin-top: 10px;
  background-color: #00addf;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.about-right {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-right img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* services */

/* Services Section */
.services-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 50px;
  color: #111;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-items: center;
}

.service-box {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  max-width: 320px;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box i {
  font-size: 36px;
  color: #00addf;
  margin-bottom: 15px;
}

.service-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #222;
}

.service-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.service-btn {
  display: inline-block;
  padding: 10px 18px;
  background-color: #00addf;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.service-btn:hover {
  background-color: #008fbd;
}



/* Stats Section */
.stats-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #ffffff;
}

.stats-heading {
  font-size: 28px;
  color: #111;
  font-weight: 700;
  margin-bottom: 20px;
}

.stats-subheading {
  max-width: 800px;
  margin: auto;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  justify-items: center;
}

.stat-item h3 {
  font-size: 48px;
  color: #00addf;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 15px;
  color: #333;
}


/* contact */

/* ===== Scoped Callback Section ===== */
.callback-section {
  background-color: #2d3436;
  padding: 80px 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.callback-section .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.callback-section .callback-left {
  flex: 1;
  min-width: 280px;
}

.callback-section .callback-left h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.callback-section .callback-left p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
}

.callback-section .callback-form {
  flex: 1.2;
  min-width: 300px;
}

.callback-section .callback-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.callback-section .callback-form label {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 5px;
  color: #ccc;
}

.callback-section .callback-form select,
.callback-section .callback-form input,
.callback-section .callback-form textarea {
  background-color: #3b3f41;
  border: none;
  padding: 12px 14px;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  outline: none;
  transition: 0.3s ease;
}

.callback-section .callback-form select:focus,
.callback-section .callback-form input:focus,
.callback-section .callback-form textarea:focus {
  background-color: #444;
  border: 1px solid #00c6e0;
}

.callback-section .callback-form textarea {
  resize: vertical;
}

.callback-section .callback-form button {
  background-color: #00c6e0;
  border: none;
  color: #fff;
  padding: 12px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.callback-section .callback-form button:hover {
  background-color: #00a8c2;
}

.callback-section .success-message {
  background-color: #27ae60;
  color: #fff;
  padding: 12px;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 500;
  opacity: 0;
  animation: fadeIn 0.6s ease-in-out forwards;
}

.callback-section .hidden {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
  .callback-section .container {
    flex-direction: column;
  }

  .callback-section .callback-left,
  .callback-section .callback-form {
    width: 100%;
  }
}

/* testimonial */

/* Testimonials Section */
.testimonials-section {
  background-color: #f4f7f9;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.testimonial-container {
  max-width: 900px;
  margin: auto;
}

.testimonials-title {
  font-size: 28px;
  color: #111;
  margin-bottom: 40px;
  font-weight: 600;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  min-height: 250px;
}

.testimonial-slide {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  padding: 20px;
  box-sizing: border-box;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.testimonial-slide .testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #00addf;
}

.testimonial-slide p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 10px;
}

.testimonial-slide h4 {
  color: #00addf;
  font-size: 16px;
  margin-bottom: 3px;
}

.testimonial-slide span {
  font-size: 14px;
  color: #777;
}


/* Blogs Section */
.home-blogs {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.home-blogs .section-title {
  font-size: 28px;
  margin-bottom: 40px;
  color: #111;
}

.blogs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
}

.blog-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  text-align: left;
  flex-grow: 1;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #00c6e0;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  color: #0073b1;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #005880;
}

/* View All Blogs Button */
.all-blogs-btn {
  margin-top: 40px;
}

.view-all {
  padding: 12px 24px;
  background-color: #00c6e0;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.view-all:hover {
  background-color: #00a2bb;
}

/* Responsive */
@media (max-width: 900px) {
  .blogs-grid {
    flex-direction: column;
    align-items: center;
  }

  .blog-card {
    width: 100%;
    max-width: 500px;
  }
}


