* {
      margin: 0; padding: 0; box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background-color: #f5f9fc;
      color: #333;
    }

    html {
  scroll-behavior: smooth;
}

    /* Navbar */
    header {
      background-color: #007B8A;
      color: #fff;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
    }

    nav a {
      color: #fff;
      margin-left: 1.5rem;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    nav a:hover {
      color: #d3f2f7;
    }

    .about-section {
  background: linear-gradient(to bottom right, #f0f8ff, #ffffff);
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
}

.about-text h2 {
  font-size: 36px;
  color: #064e8c;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
}

.about-text span {
  color: #007acc;
  font-weight: 500;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.about-card {
  background-color: white;
  padding: 24px;
  border-left: 6px solid #007acc;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: scale(1.03);
}

.about-card h3 {
  font-size: 22px;
  color: #007acc;
  margin-bottom: 10px;
}

.about-card p {
  color: #555;
  font-size: 16px;
}

/* Responsive Design */
@media screen and (min-width: 768px) {
  .about-cards {
    grid-template-columns: 1fr 1fr;
  }

  .about-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}


    /* Contact Form */
    .contact-form {
      max-width: 600px;
      margin: 2rem auto;
      padding: 2rem;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .contact-form h2 {
      margin-bottom: 1rem;
      color: #007B8A;
    }

    .contact-form form {
      display: flex;
      flex-direction: column;
    }

    .contact-form input,
    .contact-form textarea {
      margin-bottom: 1rem;
      padding: 0.8rem;
      border: 1px solid #ccc;
      border-radius: 6px;
      resize: none;
    }

    .contact-form button {
      background-color: #007B8A;
      color: #fff;
      padding: 0.8rem;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .contact-form button:hover {
      background-color: #005f68;
    }

    /* Footer */
    footer {
      background-color: #004F55;
      color: #fff;
      text-align: center;
      padding: 1.5rem 1rem;
      margin-top: 3rem;
    }

    .social-icons {
      margin-top: 0.5rem;
    }

    .social-icons a {
      margin: 0 0.5rem;
      color: #fff;
      font-size: 1.2rem;
      transition: color 0.3s;
    }

    .social-icons a:hover {
      color: #7df1ff;
    }

    @media (max-width: 600px) {
      header {
        flex-direction: column;
        align-items: flex-start;
      }

      nav {
        margin-top: 1rem;
      }

      nav a {
        margin: 0.5rem 0;
        display: block;
      }
    }
    
    .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #007B8A;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  position: relative;
  flex-wrap: nowrap; 
}

.logo-container {
  flex-shrink: 0;
}

.logo {
  height: 70px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #d3f2f7;
}

.hamburger {
  display: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  margin-left: auto;
}


/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #007B8A;
    top: 70px;
    left: 0;
    padding: 1rem 2rem;
    opacity: 0;
  transition: all 0.3s ease-in-out
  }

  .nav-links a {
    margin-bottom: 1rem;
  }

.nav-links.show {
  display: flex;         /* Still needed for flex layout */
  flex-direction: column;
  max-height: 300px;     /* Enough to show all links */
  opacity: 1;
  padding: 1rem 0;
}
  .contact-form {
    flex-direction: column;
  }
}

/* Base slide-up animation */
@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(50px);
}

/* Will trigger the animation */
.animate-slide-up.visible {
  animation: slideUp 0.6s ease-out forwards;
}

/* Optional: Add delay using nth-child */
.about-card:nth-child(1).visible {
  animation-delay: 0.1s;
}
.about-card:nth-child(2).visible {
  animation-delay: 0.3s;
}


.our-team {
  background-color: #f9fcff;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
  box-shadow: 0 4px 16px rgba(0, 123, 138, 0.05);
}

.our-team h2 {
  text-align: center;
  color: #007B8A;
  margin-bottom: 1rem;
}

.our-team p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
  text-align: center;
}

.our-team ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: #333;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.our-team li strong {
  color: #007B8A;
}

.services-section {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #f9f9ff;
}

.services-section h2 {
  font-size: 2rem;
  color: #007B8A;
  margin-bottom: 0.5rem;
}

.section-intro {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 123, 138, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 123, 138, 0.1);
}

.service-card i {
  font-size: 2rem;
  color: #007B8A;
  margin-bottom: 1rem;
}

.value-card, .stat-box, .step-box {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  flex: 1 1 220px;
  max-width: 300px;
  transition: 0.3s ease;
}
.value-card:hover, .step-box:hover {
  transform: translateY(-5px);
}
.value-card i, .step-box i {
  font-size: 2rem;
  color: #007B8A;
  margin-bottom: 1rem;
}
.stat-box {
  text-align: center;
}
.stat-box .counter {
  font-size: 2.5rem;
  font-weight: bold;
  color: #007B8A;
}



.home-section {
  position: relative;
  background: url('images/home-bg.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.home-content h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
}

.typing-text {
  font-size: 1.5rem;
  color: #cfefff;
  min-height: 30px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  /* Remove this line below */
  /* border-right: 3px solid #fff; */
  animation: typing 3s steps(40, end);
}


@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}


.home-btn {
  margin-top: 2rem;
  padding: 14px 28px;
  background-color: #007B8A;
  color: white;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

.home-btn:hover {
  background-color: #009e86;
}


