*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
      background-color: #f0f8ff;
      font-family: 'Roboto', sans-serif;
      color: #111;
      font-size: 17px;
    }

    
    .hero-inner {
  text-align: center;
  max-width: 800px;
  padding: 20px;
  animation: fadeIn 1s ease-in-out forwards;
}

.animate-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.4s;
}
.delay-2 {
  animation-delay: 0.8s;
}
.delay-3 {
  animation-delay: 1.2s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-btn {
  margin-top: 25px;
  display: inline-block;
  padding: 12px 30px;
  background-color: #FFA500;
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #ffbb33;
}


    .hero-about {
      height: 60vh;
      background: linear-gradient(to right, #000000dd, #11111173), url('/home image/about us.jpg')  top center / cover no-repeat;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      padding: 20px;
    }

    .hero-about h1 {
      font-size: 3.2rem;
      color: #FFA500;
      font-weight: 700;
      text-shadow: 2px 2px 6px #000;
    }

    .hero-about p {
      font-size: 1.25rem;
      max-width: 800px;
      margin-top: 12px;
      color: #ccc;
    }

    .about-content {
      max-width: 1100px;
      margin: 60px auto;
      padding: 0 20px;
      line-height: 1.8;
    }

    .about-content h2 {
      font-size: 2.2rem;
      color: #FFA500;
      margin-bottom: 20px;
    }

    .about-content p {
      font-size: 1.08rem;
      color: #111;
      margin-bottom: 20px;
    }

    .image-section {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 30px;
    }

    .image-box {
      flex: 1 1 300px;
      background-color: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      text-align: center;
    }

    .image-box img {
      max-width: 100%;
      border-radius: 8px;
      margin-bottom: 15px;
    }

    .image-box h3 {
      color: #000;
      margin-bottom: 10px;
      font-size: 1.3rem;
    }

    .image-box p {
      color: #444;
      font-size: 1.05rem;
    }

    .highlight-section {
      background-color: #fff;
      padding: 60px 20px;
    }

    .highlight-container {
      max-width: 1100px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: space-between;
    }

    .highlight-box {
      background-color: #f9f9f9;
      padding: 30px;
      border-radius: 8px;
      flex: 1 1 250px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .highlight-box:hover {
      transform: translateY(-5px);
    }

    .highlight-box i {
      font-size: 2rem;
      color: #FFA500;
      margin-bottom: 15px;
    }

    .highlight-box h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      color: #000;
    }

    .highlight-box p {
      font-size: 1.05rem;
      color: #333;
    }

    @media (max-width: 768px) {
      .hero-about h1 {
        font-size: 2.4rem;
      }

      .hero-about p {
        font-size: 1rem;
      }

      .highlight-container {
        flex-direction: column;
      }
    }

    .presence-section {
  background-color: #fff;
  padding: 60px 20px;
}

.presence-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.presence-container h2 {
  font-size: 2.2rem;
  color: #FFA500;
  margin-bottom: 10px;
}

.presence-subheading {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
}

.presence-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.presence-box {
  flex: 1 1 250px;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.presence-box:hover {
  transform: translateY(-5px);
}

.presence-box i {
  font-size: 2rem;
  color: #FFA500;
  margin-bottom: 15px;
}

.presence-box h3 {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 10px;
}

.presence-box p {
  font-size: 1.05rem;
  color: #444;
}

@media (max-width: 768px) {
  .presence-grid {
    flex-direction: column;
  }
}
