/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

section, div{
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
/* Header */
.header {
    display: flex;
    justify-content: space-between;
    background: #007bff;
    color: white;
    padding: 10px 20px;
}

.contact, .email {
    display: flex;
    align-items: center;
}

.contact i, .email i {
    margin-right: 5px;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0099ff;
    padding: 15px 20px;
    color: white;
    position: relative;
}

.navbar .logo img {
    width: 100%;
}

.navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.navbar ul li a:hover {
    color: rgb(255, 0, 0);
}

.social-icons i {
    justify-content: space-between;
    color: white;
    padding: 10px;
}

.header_img img {
    width: 90%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 2000;
}

.hamburger span {
    height: 4px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Parallax Section */
.parallax {
    position: relative;
    height: 500px;
    background: url('img/home\ page.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Moving Elements */
.cow {
    position: absolute;
    width: 60%;
    height: fit-content;
    transition: transform 0.5s ease-out;
}

.cow-left {
    right: 700px;
    bottom: -135px;
}

.cow-right {
    left: 750px;
    bottom: -135px;
}

.milk-glass {
    position: absolute;
    left: -350px;
    bottom: -50px;
    width: 800px;
    transition: transform 0.5s ease-out;
}

.milk-can {
    position: absolute;
    left: -250px;
    bottom: -50px;
    width: 600px;
    transition: transform 0.5s ease-out;
}

.grass {
    position: absolute;
    bottom: -50px;
    width: 100%;
    transition: transform 0.5s ease-out;
}

/* About Section */
.about {
    padding: 50px;
    text-align: center;
}

/* Footer */
footer {
    text-align: center;
    background: #007bff;
    color: white;
    padding: 10px 0;
}

/* Tablets (iPad) */
@media screen and (max-width: 1024px) {
    .navbar {
        flex-wrap: wrap;
    }

    .hamburger {
        display: flex;
    }

    .navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #007bff;
        position: absolute;
        top: 70px;
        left: 0;
        z-index: 1000;
    }

    .navbar ul.show {
        display: flex;
    }

    .navbar ul li {
        margin: 0;
        padding: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .parallax {
        font-size: 24px;
        height: 400px;
    }

    .cow-left, .cow-right, .milk-glass, .milk-can {
        width: 120px;
    }
}

/* Mobile Phones */
@media screen and (max-width: 768px) {
    .header {
        font-size: 12px;
        flex-direction: column;
        text-align: center;
    }

    .navbar {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    .navbar .logo {
        font-size: 20px;
    }

    .navbar ul {
        flex-direction: column;
        padding: 0;
    }

    .navbar ul li {
        margin: 5px 0;
    }

    .parallax {
        height: 300px;
        font-size: 20px;
        padding: 10px;
    }

    .cow-left, .cow-right {
        width: 100px;
        bottom: 30px;
    }

    .milk-glass, .milk-can {
        width: 90px;
        bottom: 50px;
    }

    .grass {
        bottom: -30px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 16px;
    }
}
.lex{
    color: yellow;
}
@media screen and (max-width: 1024px) {
    .parallax {
        font-size: 24px;
        height: 1207px;
    }
}

@media screen and (max-width: 768px) {
    .parallax {
        height: 660px;
        font-size: 20px;
        padding: 10px;
        /* width: 451px; */
    }
}