body {
    margin: 0;
    padding: 0;
    position: relative;
}

.content {
    position: relative;
    z-index: 1;
}

.header {
    padding: 0 20px;
    background-color: #eff5f3;
    display: flex;
    opacity: .95;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    color: black;
    font-size: 20px;
    text-shadow: 0px 4px 4px rgba(55, 55, 55, 0.5);
}

.menu a:hover {
    color: #0099ff;
    transform: scale(1.3);
    transition: transform 0.5s ease;
    text-shadow: 0px 2px 2px rgba(55, 55, 55, 0.3);
}

.logoSection {
    text-align: center;
    padding: 50px;
}

.logo {
    width: 250px;
    height: 250px;
    z-index: 1;
}

.random-logo {
    width: 50px;
    animation: fadeInAnimation 1s ease-in;
    transition: opacity 0.5s ease;
}

.random-logo.rotate {
    transition: transform 0.5s ease;
    transform: rotate(360deg);
}

.r1 {
    position: absolute;
    top: 150px;
    left: 250px;
}

.r2 {
    position: absolute;
    top: 300px;
    left: 100px;
}

.r3 {
    position: absolute;
    top: 450px;
    left: 250px;
}

.r4 {
    position: absolute;
    top: 600px;
    left: 100px;
}

.r5 {
    position: absolute;
    top: 750px;
    left: 250px;
}

.r6 {
    position: absolute;
    top: 900px;
    left: 100px;
}

.r7 {
    position: absolute;
    top: 1150px;
    left: 250px;
}

.r8 {
    position: absolute;
    top: 150px;
    right: 250px;
}

.r9 {
    position: absolute;
    top: 300px;
    right: 100px;
}

.r10 {
    position: absolute;
    top: 450px;
    right: 250px;
}

.r11 {
    position: absolute;
    top: 600px;
    right: 100px;
}

.r12 {
    position: absolute;
    top: 750px;
    right: 250px;
}

.r13 {
    position: absolute;
    top: 900px;
    right: 100px;
}

.r14 {
    position: absolute;
    top: 1150px;
    right: 250px;
}

@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: #0099ff;
    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 {
    display: flex;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(231, 230, 230, 0.5);
    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/waves.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 {
    margin: 0;
    padding: 20px;
    background-color: #eff5f3;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    z-index: 1;
}

.footer h2 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #0099ff;
}

@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(172, 171, 171, 0.5);
        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;
    }

    .r1 {
        position: absolute;
        top: 200px;
        left: 20px;
    }

    .r2 {
        position: absolute;
        top: 400px;
        left: 20px;
    }

    .r3 {
        position: absolute;
        top: 600px;
        left: 20px;
    }

    .r4 {
        position: absolute;
        top: 800px;
        left: 20px;
    }

    .r5 {
        position: absolute;
        top: 1000px;
        left: 20px;
    }

    .r6 {
        position: absolute;
        top: 1200px;
        left: 20px;
    }

    .r7 {
        position: absolute;
        top: 1400px;
        left: 20px;
    }

    .r8 {
        position: absolute;
        top: 200px;
        right: 20px;
    }

    .r9 {
        position: absolute;
        top: 400px;
        right: 20px;
    }

    .r10 {
        position: absolute;
        top: 600px;
        right: 20px;
    }

    .r11 {
        position: absolute;
        top: 800px;
        right: 20px;
    }

    .r12 {
        position: absolute;
        top: 1000px;
        right: 20px;
    }

    .r13 {
        position: absolute;
        top: 1200px;
        right: 20px;
    }

    .r14 {
        position: absolute;
        top: 1400px;
        right: 20px;
    }

    .waves {
        position: fixed;
        top: 400px;
    }

}