/* @import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

nav {
  position: sticky;
  /* or use fixed if you want it always at top even when scrolling past hero */
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
  margin-right: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-item {
  position: relative;
  padding: 15px;
}

.nav-item a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
}

.nav-item:hover>a {
  color: #0ca376;
}

.dropdown {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 100;
}

.dropdown a {
  display: block;
  padding: 10px;
  color: #333;
}

.dropdown a:hover {
  background: #06a381;
  color: white;
  transition: .7s ease-in-out;
}

.nav-item:hover .dropdown {
  display: block;
}

.contact-btn {
  background: linear-gradient(90deg, #079e64, #08ccbc);
  color: white;
  padding: 10px 20px;
  margin-left: 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.contact-btn:hover {
  opacity: 0.8;

}

/* Hide hamburger by default */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}


/* Mobile view styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
    z-index: 1101;
  }

  /* Overlay */
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .overlay.active {
    display: block;
  }

  /* Side menu */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 300px;
    background: #fff;
    flex-direction: column;
    padding-top: 2rem;
    transition: right 0.3s ease-in-out;
    z-index: 1100;
    text-decoration: none;
  }

  .nav-links.show-menu {
    right: 0;
  }

  .nav-item {
    padding: 15px;
    border-bottom: 1px solid #ddd;

  }

  .dropdown {
    display: none;
    background: #f9f9f9;
  }

  .dropdown.show-dropdown {
    display: block;
  }
}

/* ................. hero slide section start */
.hero-slider-section {
  position: relative;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
}

.slide {
  display: none;
  position: relative;
  width: 100%;
  height: 100vh;
  background: #ffffff;

}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: #fff;
}

.slide-caption h1 {
  font-size: 3rem;
  margin: 0 0 1rem;
  color: black;
}

.slide-caption p {
  font-size: 1.2rem;
  margin: 0 0 2rem;
  color: #3b3b3b;
}

.slide-btn {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(90deg, #058b75, #09a590);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1rem;
  transition: 0.3s;
}

.slide-btn:hover {
  opacity: 0.85;
}

.slider-nav {
  position: absolute;
  bottom: 10%;
  right: 10%;
  display: flex;
  gap: 0.5rem;
}

.nav-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
}

.nav-dot.active {
  background: #fff;
}

/* Mobile adjustments */
@media(max-width: 768px) {
  .slide-caption h1 {
    font-size: 2rem;
  }

  .slide-caption p {
    font-size: 1rem;
  }
}

/* ................. hero slide section end */
/* ............ abuot us section start */

.about-section {
  padding: 60px 5%;
  background: #fff;
}

.about-container {
  display: flex;
  align-items: center;
  /* gap: 0px; */
  flex-wrap: wrap;
}

.about-image img {
  max-width: 70%;
  height: 80%;
  ;
}

.about-content {
  flex: 1;
  min-width: 300px;
  height: 29rem;

}

.about-content h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.about-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.about-lists {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.about-lists ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-lists li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #333;
}

.about-lists li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0cb683;
  font-weight: bold;
}

.about-btn {
  display: inline-block;
  background: linear-gradient(90deg, #0aa396, #068a6d);
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  ;
}

.about-btn:hover {
  opacity: 0.85;
  background: #000;
}

@media(max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-lists {
    flex-direction: column;
    align-items: center;
  }
}


/* .........our services start */
.services-section {
  padding: 60px 5%;
  background: #fff;
}

.section-subtitle {
  color: #00b894;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.4rem;

}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;

}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  height: 310px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: flex-end;
  padding: 15px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: scale(1.05);
}

.service-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease;
}

.service-card:hover .overlay {
  background: rgba(0, 0, 0, 0.6);
}

.service-card h3 {
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  font-weight: bold;
}

/* Hide extra services initially */
.extra-services {
  display: none;
}

/* Button styling */
.services-button {
  text-align: center;
  margin-top: 20px;
}

#showMoreBtn {
  background: #00b894;
  color: white;
  padding: 10px 25px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#showMoreBtn:hover {
  background: #019870;
}

/* .................. 3rd */

.process-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 30px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
  border-radius: 16px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 20px;
  color: #00b2a9;
  font-weight: 00;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-size: 36px;
  color: #00b2a9;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

.section-description {
  font-size: 18px;
  color: #00b2a9;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.step {
  flex: 1;
  min-width: 280px;
  max-width: 320px;
  background: white;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 60px;
  font-weight: 800;
  color: rgba(6, 170, 102, 0.925);
  line-height: 1;
}

.step-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00b2a9 100%);
  color: white;
  font-size: 28px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.step-description {
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
}

.connector {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  color: #00b2a9;
  font-size: 24px;
}

@media (max-width: 992px) {
  .process-steps {
    gap: 20px;
  }

  .step {
    min-width: 250px;
  }
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 100%;
    width: 100%;
  }

  .connector {
    transform: rotate(90deg);
    margin: 10px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-description {
    font-size: 16px;
  }
}

.l2 {
  font-size: 3rem;
  text-align: center;
  margin: 20px 0;
  color: #00b2a9;

}

/* ................ 4th */
.services-container {
  max-width: 1200px;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
  padding: 20px;
  margin: 40px auto;
  padding: 40px 30px;
  background: white;
  border-radius: 16px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
}

.services-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-item-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border-top: 4px solid #00b2a9;
}

.service-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon-container {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00b2a9 100%);
  color: white;
  font-size: 24px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.service-heading {
  font-size: 24px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.service-description-text {
  font-size: 16px;
  color: #718096;
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-read-more-link {
  display: inline-flex;
  align-items: center;
  color: #4e54c8;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-read-more-link:hover {
  color: #8f94fb;
  transform: translateX(5px);
}

.service-read-more-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.service-read-more-link:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .services-grid-layout {
    grid-template-columns: 1fr;
  }

  .service-item-card {
    padding: 25px;
  }

  .service-heading {
    font-size: 22px;
  }
}

/* ................ indutry we serv  */
.industries {
  text-align: center;
  padding: 40px 20px;
  background: #f8fbff;
}

.sub-heading {
  color: #00b894;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.main-heading {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #00b894;
}

.divider {
  width: 60px;
  height: 4px;
  margin: 0 auto 30px;
  background: linear-gradient(to right, #00b894);
  border-radius: 2px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.industry-card {
  background: #fff;
  padding: 30px 15px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.icon {
  font-size: 35px;
  margin-bottom: 10px;
  color: #333;
}

.industry-card p {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

/* ............... cutom hero  */
.custom-hero-section {
  background: #123466;
  /* navy blue bg */
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.custom-sub-text {
  color: #16e9f8;
  font-weight: 500;
  margin-bottom: 15px;
}

.custom-hero-title {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.3;
}

.custom-hero-desc {
  font-size: 16px;
  color: #d9e2f0;
  margin-bottom: 30px;
}

.custom-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(to right, #023a3a, #04ad5e);
  color: white;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s;
}

.custom-btn:hover {
  background: linear-gradient(to right, #027269, #02634e);
}

/* ........... testimonial section start  */
.testimonials-container {
  max-width: 1200px;
  width: 100%;

  background-color: #f8f9fa;
  color: #333;
  margin: 40px auto;
  padding: 60px 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-subtitle {
  font-size: 30px;
  color: #06a381;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.testimonials-title {
  font-size: 36px;
  color: #06a381;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

.testimonials-description {
  font-size: 18px;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin: 0 auto;
  width: 100%;
  padding: 10px 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.testimonial-slide {
  flex: 0 0 calc(33.333% - 20px);
  margin: 0 10px;
  padding: 25px;
  box-sizing: border-box;
}

.testimonial-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
  font-size: 22px;
  color: #4e54c8;
  margin-bottom: 20px;
}

.testimonial-content {
  font-size: 16px;
  color: #2d3748;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.testimonial-author {
  font-size: 16px;
  color: #4e54c8;
  font-weight: 600;
  font-style: italic;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 15px;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(78, 84, 200, 0.3);
}

.carousel-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(78, 84, 200, 0.4);
}

.carousel-btn:disabled {
  background: #cbd5e0;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #cbd5e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #4e54c8;
  transform: scale(1.2);
}

@media (max-width: 1024px) {
  .testimonial-slide {
    flex: 0 0 calc(50% - 20px);
    /* Show 2 cards at a time on tablets */
  }
}

@media (max-width: 768px) {
  .testimonials-container {
    padding: 40px 25px;
  }

  .testimonials-title {
    font-size: 28px;
  }

  .testimonials-description {
    font-size: 16px;
  }

  .testimonial-slide {
    flex: 0 0 calc(100% - 20px);
    /* Show 1 card at a time on mobile */
  }

  .testimonial-card {
    padding: 25px 20px;
  }

  .testimonial-quote {
    font-size: 20px;
  }

  .testimonial-content {
    font-size: 15px;
  }
}

/* ........... footer section start  */



.content {
  flex: 1;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: white;
  padding: 60px 0 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo h2 {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #00b894 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo p {
  color: #cbd5e0;
  margin-top: 15px;
  line-height: 1.6;
  max-width: 300px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg,#00b894 100%);
  border-radius: 3px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cbd5e0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #e9eaf1;
  transform: translateX(5px);
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  color: #cbd5e0;
}

.footer-contact i {
  margin-right: 12px;
  color: #00b894;
  font-size: 18px;
  margin-top: 3px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #00b894 100%);
  transform: translateY(-3px);
}

.footer-newsletter p {
  color: #cbd5e0;
  margin-bottom: 20px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.newsletter-input::placeholder {
  color: #a0aec0;
}

.newsletter-btn {
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  background: linear-gradient(135deg, #00b894 0%, #8f94fb 100%);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(78, 84, 200, 0.4);
}

.footer-bottom {
  max-width: 1200px;
  margin: 50px auto 0;
  padding: 25px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: #cbd5e0;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  color: #cbd5e0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #8f94fb;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
  }
}