/* General Styles */
body {
    margin: 0;
    font-family: emoji;
    background-color: white;
}

h2 {
    text-align: center;
    margin: 20px 0;
}

p {
    text-align: center;
}

/* Navbar */
.navbar {
    background-color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 101px 0px 60px;
}

.navbar .logo {
    font-size: 2.5em;
    font-weight: bold;
}

.navbar .logo a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}


.navbar .menu {
    display: flex;
    gap: 15px;
}

.navbar .menu a {
   color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 10px;
    font-size: 25px;
    font-weight: 500;
}

.navbar .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.navbar .hamburger span {
    background: white;
    height: 5px;
    margin: 4px 0;
    width: 40px;
    z-index: 100;
}

.menu.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #000000;
    z-index: 1;
}

.menu a {
    padding: 10px;
    border-bottom: 1px solid #e0a3a5;
}
/* Sections */
section {
    padding: 20px;
    margin: 20px 0;
    background-color: white;
}

/* Services Section */
.services-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-box {
    text-align: center;
    width: 30%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.service-box:hover {
    transform: scale(1.05);
}

.service-box h3 {
    margin: 10px 0;
    font-size: 1.2em;
}

/* Footer */
footer {
    background-color: #000000;
    color: white;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer-content .quick-links a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 5px 0;
}

.footer-content .quick-links a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
     .navbar .menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .navbar .hamburger {
        display: flex;
    }

    .menu.show {
        display: flex;
        top: 118px;
        text-align: center;
        gap: 30px;
        height: 650px;
    }

    .navbar .menu a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 10px;
    font-size: 30px;
    font-weight: 500;
}


    .service-box {
        width: 100%;
    }

    .navbar {
    /* background-color: #fab8ba; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 21px 0px 9px;
}
.footer-content{
    display: block !important;
    text-align: center;
    margin: 20px;
}
}
a{
    text-decoration: none;
        font-family: emoji;
}

.logo a img {
 width: 250px;
 border-radius: 20px;
}



header{
    top: 0;
    position: sticky;
    z-index: 999;
}


.logo a img {
 width: 250px;
 border-radius: 20px;
}