/* Custom Styles */
body {
  font-family: 'Arial', sans-serif;
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
}

.hero-section {
  padding: 150px 0;
  background: linear-gradient(135deg, #007bff, #00bcd4);
  color: white;
}

.navbar {
  width: 100%;
  display: flex;
  justify-content: space-around;
  position: fixed;
  top: 0;
  background-color: black;
  z-index:2;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
}

.feature-card {
  background: var(--bs-body-bg);
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-card i {
  color: #007bff;
}

.btn-primary {
  background: #007bff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #0056b3;
}

footer {
  margin-top: 50px;
  background: rgba(0, 0, 0, 0.8);
}
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    animation: slideDown 0.5s ease-out;
  }
 .wave-icon {
    width: 2em; /* Relative to the font size */
    height: 2em; /* Relative to the font size */
  }

  .contact-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
  }

  .contact-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
  }

  .contact-info {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }

  .info-box {
    flex: 1 1 45%;
    display: flex;
    align-items: center;
    padding: 10px 0;
  }

  .info-icon {
    font-size: 28px;
    color: #0077cc;
    margin-right: 16px;
  }
  .phone-icon {
    color: white;
    background-color: black; 
    border: 2px solid black;
    border-radius: 50%;
    padding: 10px;
    font-size: 18px;
  }

  .email-icon {
    color: white;
    background-color: black;
    border: 2px solid black;
    border-radius: 50%;
    padding: 10px;
    font-size: 18px;
  }

  .info-content {
    display: flex;
    flex-direction: column;
  }

  .info-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 4px;
  }

  .info-data a {
    color: #0077cc;
    text-decoration: none;
  }

  .info-data a:hover {
    text-decoration: underline;
  }

  .padd{
    padding-left: 150px;
  }
  
  @media (max-width: 600px) {
    .info-box {
      flex: 1 1 100%;
    }
  }

  .error-message {
    color: red;
    font-weight: bold;
    margin-bottom: 20px;
  }