/* Navbar Styles */
.logo {
    display: flex; /* Use Flexbox */
    align-items: center; /* Vertically center the items */
    gap: 10px; /* Add some spacing between the image and the text */
  }
  
  .logo img {
    max-width: 50px; /* Adjust the size as needed */
    height: auto; /* Maintain aspect ratio */
    border-radius: 5px; /* Optional: Add rounded corners */
    
  }
  
  .logo h3 {
    font-size: 1.2rem; /* Adjust text size for responsiveness */
    margin: 0;
  }
  

/* General Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background-color: skyblue;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

body{
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}



.navbar .logo h3 {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.menu ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.menu ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.menu ul li a:hover,
.menu ul li a.active {
    color: #333;
    font-weight: bold;
    text-decoration: underline;
}

/* Hamburger Icon */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.5rem;
}

.hamburger .bar {
    width: 3rem;
    height: 0.4rem;
    background-color: white;
    transition: all 0.3s ease;
}

/* Mobile View */
@media (max-width: 768px) {
    .menu ul {
        display: none;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: skyblue;
        gap: 2rem;
        padding: 2rem 0;
    }

    .menu ul.show {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}
/* copy nav here to all section */
/* Main Contact Form Section */
.contact-form {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

.contact-form button {
    width: 100%;
    padding: 0.8rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0056b3;
}

/* WhatsApp Link Section */
.whatsapp-link {
    margin-top: 2rem;
}

.whatsapp-button {
    padding: 0.8rem 2rem;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

/* Contact Info Section */
.contact-info {
    padding: 2rem;
    background-color: #f1f3f5;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-info h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-info p {
    font-size: 1rem;
    color: #555;
    margin: 0.5rem 0;
}

.contact-info .location,
.contact-info .phone-numbers,
.contact-info .social-media {
    margin-bottom: 2rem;
}

.contact-info .social-media {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    background-color: #555;
}

.social-icon:hover {
    opacity: 0.8;
}

.facebook {
    background-color: #0c55f3;
}

.twitter {
    background-color: #1df22b;
}

.instagram {
    background-color: #e13030;
}

.linkedin {
    background-color: #0077b5;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.6rem;
    }

    .contact-form button,
    .whatsapp-button {
        font-size: 1.1rem;
    }

    .contact-info h4 {
        font-size: 1.3rem;
    }

    .contact-info p {
        font-size: 1rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }
}


.social-media a{
color: black;
margin: 1rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 1.5rem; /* Adjust spacing from the bottom */
    right: 1.5rem; /* Adjust spacing from the right */
    z-index: 1000;
    background-color: #25D366; /* WhatsApp green */
    border-radius: 50%;
    width: 3.5rem; /* Size of the icon */
    height: 3.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
  }
  
  .whatsapp-icon {
    width: 60%;
    height: 60%;
  }
  
  /* Footer Section */
.footer {
    background-color: #e5e5e3;
    color: #ffffff;
    padding: 40px 20px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-about,
  .footer-links,
  .footer-contact {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
  }
  
  .footer-heading {
    font-size: 1.5rem;
    color: #020266;
    margin-bottom: 20px;
  }
  
  .footer-about p,
  .footer-contact p {
    font-size: 0.9rem;
    line-height: 1.6;
    font-size: 1.3rem;
    color: black;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: black;
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #ff2d2a;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    border-top: 1px solid #444444;
    padding-top: 20px;
    flex-wrap: wrap;
  }
  
  .footer-bottom p {
    font-size: 0.8rem;
    margin: 0;
    color: black;
  }
  
  .footer-socials a {
    margin-left: 10px;
    display: inline-block;
  }
  
  .footer-socials img {
    width: 20px;
    height: 20px;
    filter: invert(1);
    transition: transform 0.3s ease;
  }
  
  .footer-socials a:hover img {
    transform: scale(1.2);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-socials {
      margin-top: 10px;
    }
  }