/* Reset some basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




/* Hero Section */
.hero2 {
    background: #007BFF;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-btn {
    background-color: #ff6347;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.cta-btn:hover {
    background-color: #e0533a;
}

/* About Us Section */
.about {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.service-box {
    background-color: #fff;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 20px;
    width: 30%;
    display: inline-block;
    box-sizing: border-box;
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    text-align: center;
    background-color: #007BFF;
    color: white;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

form label {
    font-size: 1rem;
    margin-bottom: 8px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #ff6347;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

form button:hover {
    background-color: #e0533a;
}

/* Footer */
footer {
    background-color: #2d3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
/*/ Social Floating Buttons */
  .social-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .social-buttons a {
    background-color: #fff;
    border-radius: 50%;
    padding: 10px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
  }

  .social-buttons a:hover {
    transform: scale(1.1);
  }

  .social-buttons .whatsapp { background-color: #25D366; }
  .social-buttons .facebook { background-color: #3b5998; }
  .social-buttons .instagram { background-color: #E1306C; }

  .wave-separator {
    display: block;
    width: 100%;
    margin-bottom: -5px;
  }

  .nav-link {
    position: relative;
    color: #000; /* Default color */
  }

  .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #007BFF; /* Your custom underline color */
  }

  form label {
     color : white;
  }

  