*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
}

:root {
    --darkBlue3: #1b2d48;
    --darkBlue2: #2c456b;
    --darkBlue1: #3c649f;
    --lightBlue2: #4779c4;
    --lightBlue1: #83aff0;
}

body {
    background-color: var(--darkBlue2);
    font-family: "Quicksand", Arial;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.4rem;
    color: white;
    background-color: var(--darkBlue3);
}

.logo h1 {
    font-size: 1.6rem;
}

.logo-image {
     width: 70px;
    height: 70px;
}


.logo-image img {
   width: 100%;
   border-radius: 1.5rem;
}


.desktop-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 2rem;
}



.desktop-menu ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: .5rem;
    border-radius: 1rem;
    font-weight: 600;
    transition: all 0.15s ease-in;
}



.desktop-menu ul li a:hover {
    background-color: var(--darkBlue1);
}

.logo span {
    background-color: var(--darkBlue1);
    padding:0.8rem;
    border-radius: 1rem;
}



.menu-icon {
    width: 35px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 100%;
    height: 5px;
    background: white;
    border-radius: 5rem;
    transition: 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--darkBlue3);
    transition: 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-menu ul li {
    padding: 15px;
}

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

.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.open .bar:nth-child(2) {
    opacity: 0;
}

.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.show {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}






/* MAIN SECTION */



main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    /* padding: 2rem; */
}




/* HERO SECTION */

.hero-section {
    width: 90%;
    margin: 1rem auto;
    border-radius: 1.2rem;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: linear-gradient(to top, rgba(27, 45, 72, 0.7), rgba(27, 45, 72, 0.7), rgba(60, 100, 159, 0.2)), 
              url('images/hero-section-image.jpg') center/cover no-repeat;
  height: 640px;
  padding: 1.2rem;
  text-align: center;
}

.hero-section h1 {
     text-shadow: 0px 1px 7px rgba(0, 0, 0, 0.7);
     font-size: 2.2rem;
}


.hero-section p {
    font-weight: 600;
    max-width: 80ch;
    line-height: 1.6rem;
    text-shadow: 0px 1px 7px rgba(0, 0, 0, 0.7);
}

.contact-us-sec button,
.hero-section button {
    padding: 1rem 1.4rem;
    font-family: "Quicksand", Arial;
    border: none;
    color: white;
    background-color: var(--darkBlue3);
    font-size: 1rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.15s ease-in;
}
.contact-us-sec button:hover,
.hero-section button:hover {
    background-color: var(--darkBlue1);
}

hr {
    width: 90%;
    border: 1px solid white;
    border-radius: 1rem;
}


/* ABOUT US SECTION */
.contact-us-sec,
.services-sec,
.about-us-sec {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    width: 90%;
    margin: 0 auto;
    gap: 3rem;
}


.contact-us-sec h2,
.services-sec h2,
.about-us-sec h2 {
    font-size: 2rem;
}


.about-container-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.about-container-1 p {
    width: 50%;
    line-height: 2rem;
    font-size: 1.2rem;
    padding: 1.4rem;
}

.about-container-1 img {
    width: 30%;
    border-radius: 1.5rem;
}


.whole-span {
    background-color: var(--darkBlue3);
    padding: 0.6rem;
    border-radius: 0.5rem;
}

.service-span {
    background-color:var(--darkBlue1);
    padding: 0.4rem;
    border-radius: 0.4rem;
}






/* SERVICES SECTION */


/* .services-sec,
.about-us-sec {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    width: 90%;
    margin: 0 auto;
    gap: 3rem;
} */





.services-sec p {
    font-size: 1.2rem;
}


.services-sec ul {
    list-style: none;
}

.services-sec ul li {
    padding: 1rem;
    line-height: 3rem;
}



.services-list-span {
    background-color: var(--darkBlue3);
    padding: 1rem;
    border-radius: 1rem;
    font-weight: 600;
}


.home-office-cleaning {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.6rem;
    gap: 3rem;
}

.home-office-cleaning img {
    width: 100%;
    border-radius: 1rem;
}


.home-office-cleaning div {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;

}


.home-office-cleaning div p {
    font-size: 1.5rem;
    font-weight: 600;
}






/* CONTACT US */


/* .contact-us-sec,
.services-sec,
.about-us-sec {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    width: 90%;
    margin: 0 auto;
    gap: 3rem;
} */



form {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 1.6rem;
width: 80%;
margin: 0 auto;
text-align: center;
}


form label {
    font-size: 1.3rem;
}

/* form input {
    border: none;
    outline-style: none;
    padding: 0.5rem;
    font-size: 1.2rem;
    width: 90%;
} */


.underline-input {
  border: none;
  border-bottom: 2px solid white; /* White underline */
  background: transparent;
  outline: none;
  color: white; /* Text color */
  font-size: 1.2rem;
  padding: 0.5rem;
  width: 90%;
  
}

.underline-input::placeholder {
  color: rgba(255, 255, 255, 0.7); /* Adjust placeholder color */
}


input::placeholder {
    color: white;
    opacity: 0.8;
    font-family: "Quicksand", Arial;
}



/* FOOTER */


footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem 1.4rem;
    color: white;
    background-color: var(--darkBlue3);
    gap: 1.6rem;
    width: 100%;
}


.contact-informations {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 3rem;
    row-gap: 1.6rem;
    margin: 0 auto;
    width: 90%;
}


.contact-informations > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
flex-wrap: wrap;
gap: 1rem;
}

.contact-informations p {
    text-decoration: underline;
}

.contact-informations div img {
    width: 25px;
    height: 25px;
}


.social-medias {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}


.social-medias div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}


.social-medias div img {
    width: 30px;
    height: 30px;
}


.social-medias div img:hover {
 
  filter: brightness(0) saturate(100%) invert(65%) sepia(18%) hue-rotate(185deg);

}




.author-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;

}


.author-copyright a {
    color: var(--lightBlue1);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease-in;
}


.author-copyright a:hover {
color: white;
}









































































@media (min-width: 600px) {
    .menu-icon {
        display: none;
    }

    .mobile-menu {
        display: none;
    }
}










/* MOBILE MEDIA QUERY */



@media (max-width: 600px) {
    .menu-icon {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }
        .logo-image,
      .desktop-menu {
        display: none;
    }

.logo h1 {
    font-size: 1.3rem;
}

.hero-section h1 {
    font-size: 1.875rem;
}

    
.about-container-1  {
    flex-direction: column;
}

.about-container-1 p {
    width: 100%;
    line-height: 2rem;
    font-size: 1.2rem;
    padding: 1.4rem;
}

.about-container-1 img {
    width: 100%;
    border-radius: 1.5rem;
}


.container-2-about p {
    order: 1;
}

.container-2-about img {
    order: 2;
}

.services-list-span {
    display: block;
}

.home-office-cleaning {
flex-direction: column;
}


.services-sec {
    text-align: center;
}

.author-copyright {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}


}