* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: "Raleway", sans-serif;
    
}

.content {
    position: relative;
    z-index: 1;
}

nav {
    background-color: #a5b5b5;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-links a.active {
    border-bottom: 2px solid white;
}

/* New styles for hamburger menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    /* padding: 0.5rem; */
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #a5b5b5;
        flex-direction: column;
        align-items: center;
        padding-top: 4rem;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    /* Hamburger animation classes */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.logoSection {
    text-align: center;
    padding: 80px;
}

.logo {
    width: 250px;
    height: 250px;
    z-index: 1;
}


@keyframes fadeInAnimation {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.logo-tagline {
    display: flex;
    width: 60%;
    margin: auto;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo {
    transition: transform 0.5s ease;
}

#tagline {
    opacity: 0;
    font-size: 23px;
    position: absolute;
    left: 35%;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    transition: opacity 0.2s ease, left 0.7s ease;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#tagline:hover {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.logo-tagline:hover .logo {
    transform: translateX(-60%);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logo-tagline:hover #tagline {
    opacity: 1;
    left: 50%;
}

.contactUsSection {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.mainDiv {
    margin-top: 10px;
    display: flex;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(231, 230, 230, 98%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.waves {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg.webp');
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: -1;
}


.div1 {
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.div2 {
    margin: 20px;
    text-align: center;
}

.formgroup2 {
    margin-bottom: 20px;
}

.companyLogo {
    width: 250px;
}

.formgroup {
    margin-bottom: 10px;
}

.formgroup input[type="text"],
.formgroup input[type="email"],
.formgroup select,
.formgroup textarea {
    width: 280px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    outline: none;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.formgroup input[type="text"]:focus,
.formgroup input[type="email"]:focus,
.formgroup select:focus,
.formgroup textarea:focus {
    border-bottom: 2px solid #4CAF50;
}

.formgroup label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.formgroup input[type="button"] {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.formgroup input[type="button"]:hover {
    background-color: #45a049;
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

iframe {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

 /* footer */
 .footer {
    text-align: center;
    padding: 10px 0;
    background-color: #333;
    color: white;

    width: 100%;
    bottom: 0;
}

.footer-text {
    margin: 0;
}

@media (max-width: 500px) {
    .footer {
        font-size: 10px;
    }
}

@media screen and (max-width: 600px) {
    .header {
        padding: 0 10px;
    }

    .menu a {
        font-size: 15px;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    }

    .menu a:hover {
        transform: scale(1.1);
        transition: transform 0.5s ease;
    }

    #name {
        font-size: 10px;
    }

    #contactUs {
        font-size: 10px;
    }

    /* .logoSection{
        padding: 20px;
    } */

    .logo {
        width: 100px;
        height: 100px;
    }

    #tagline {
        font-size: 12px;
    }

    .logo-tagline:hover .logo {
        transform: translateX(-70%);
    }

    .logo-tagline:hover #tagline {
        left: 50%;
    }

    .contactUsSection {
        margin-bottom: 20px;
    }

    .companyLogo {
        width: 150px;
    }

    .mainDiv {
        display: flex;
        flex-direction: column;
        padding: 10px;
        margin: 20px;
        border-radius: 10px;
        background-color: rgba(231, 230, 230, 0.9);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .div1 {
        margin: 20px;
        padding: 20px;
    }

    .formgroup {
        margin: auto;
    }

    .map {
        width: 350px;
        height: 400px;
    }

    .waves {
        position: fixed;
        top: 400px;
    }

}