/* Slide-in animation for bg-image */
#bg-image.slide-in-bg {
    animation: slideInBg 1s cubic-bezier(0.23, 1, 0.32, 1);
}
@keyframes slideInBg {
    from {
        opacity: 0;
        transform: translateX(-100vw);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Slide-in animation for service images */
.service img {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.service img.slide-in {
    opacity: 1;
    transform: translateX(0);
}
   
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    /* background: linear-gradient(45deg, rgb(17, 17, 17), rgb(59, 59, 59), rgba(111,111,111), rgb(158, 158, 158), rgb(54, 54, 54), rgb(136, 136, 136)); */
    background-color: rgb(255, 255, 255);
    animation: fadein 1s ease-in-out;
}
@keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}
html {
    scroll-behavior: smooth;
}
#bg-image {
  position: relative;
  /* top: -60px; */
  left: 0;
  width: 100%;
  height: 50vh;
  min-height: 400px;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1s ease-in-out;
  opacity: 1;
}
.hamber-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1001;
    background-color: transparent;
}
.bar1, .bar2, .bar3{
    width: 25px;
    height: 3px;
    background-color: #da8a12;
    margin: 4px 0;
    transition: 0.4s;
    z-index: 11;
     animation: fadein 0.5s ease-in-out;
}
.mobile-nav-bar {
    display: none;
    position: fixed;
    top: 0px;
    right: 0;
    width: 100%;
    height: auto;
    background-color: #333333;
    z-index: 10;
     animation: fadein 0.5s ease-in-out;
}
.mobile-nav-bar ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: currentColor; /* Matches text color */
  margin: 9px 0;
}
.mobile-nav-bar ul li {
    margin: 10px 0;
}
.mobile-nav-bar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%; /* Position at the bottom left */
  background-repeat: no-repeat;
  background-size: 0% 2px; /* Initial width 0%, height 2px */
  transition: background-size 0.3s ease-in-out;
}
.mobile-nav-bar ul li a:hover {
   color: #da8a12;
    background-size: 100% 2px;
}

.nav-bar {
    height: 100px;
    color: #000000;
    border-bottom: 5px solid #d8d8d8;
    padding: 10px 0;
    animation: 2s fadein ease;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
}
.nav-bar ul {
    width: 40%;
    height: 50px;
    list-style: none;
    position: relative;
    left: 60%;
    top: 26px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    color: currentColor; /* Matches text color */
    margin: 9px 0;
    /* background-color: whitesmoke; */
    border-top: 2px solid #eeeeee;
    border-left: 1px solid #d8d8d8;
     border-right: 1px solid #c0c0c0;
     border-radius: 20px;
}
.nav-bar ul li {
    margin: 0 15px;
}
.nav-bar ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 18px;
  background-image: linear-gradient(#b35e05, #b35e05);
  background-position: 0% 100%; /* Position at the bottom left */
  background-repeat: no-repeat;
  background-size: 0% 2px; /* Initial width 0%, height 2px */
  transition: background-size 0.3s ease-in-out;
}
.logo-text {
    position: absolute;
    top: 0px;
    left: 45%;
    transform: translateX(-50%);
    color: #272727;
    font-family:'Times New Roman', Times, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
}
.logo-text span {
    font-family: "Condiment", cursive;
    font-weight: 400;
    font-style: normal;
    color: #888888;
    font-size: 35px;
}

.logo {
   position: absolute;
   top: 10px;
    left: 5%;
   border-radius: 100%;
        background-color: white;
        z-index: 1001;
        width: 80px;
        height: 80px;
        transition: transform 0.3s ease-in-out;
   /* box-shadow: 0px 0px 1px 1px #d67c07; */
   transform: rotate(-35deg);
}
.nav-bar a:hover {
    background-size: 100% 2px;
}
.drop-down {
    position: relative;
}
.drop-down-content {
    display: none;
    position: absolute;
    background-color: #da8a12;
    border-radius: 20px;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
.drop-down-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    
}
.drop-down-content a:hover {
    color: #ffffff;
     background-size: 0% 0px;
     cursor: pointer;
     transform: scale(1.1);
}
.drop-down:hover .drop-down-content {
    display: block;
    position: absolute;
     animation: fadein 0.5s ease-in-out;
}
.welcome-message {
    max-width: 600px;
    height: 300px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.507);
    border-radius: 50%;
}
.welcome-message h1 {
    font-size: 3rem;
    color: #464646;
    /* margin-bottom: 60px; */
    font-family: "Condiment", cursive;
  font-weight: 400;
  font-style: normal;
}
.welcome-message p {
    font-size: 20px;
    color: #464646;
    font-family: 'Times New Roman', Times, serif;
}
.welcome-message a {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #d67c07;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    text-decoration: none;
}
.welcome-message a:hover {
    background-color: #b35e05;
}
.call-us {
    margin-top: 20px;
}
.call-us a {
    font-size: 30px;
    color: #d67c07;
    text-decoration: none;
    font-weight: bold;
}
.more-about {
    max-width: 900px;
    height: 70vh;
    margin: 0 auto;
    /* padding: 20px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    /* top: -100px; */
    background-color: rgba(252, 251, 251, 0.507);
    border-radius: 30px;
}
.more-about h1 {
    font-size: 28px;
    color: #000000;
    margin-bottom: 20px;
    font-family: 'Times New Roman', Times, serif;
}
.more-about p {
    font-size: 20px;
    color: #000000;
     font-family: "Indie Flower", cursive;
  font-weight: 400;
  font-style: normal;
}
.more-about img {
    margin: 20px 0;
    width: 300px;
    height: 300px;
    border-radius: 20px;
}
.deck-staining {
    width: 100%;
    height: 120vh;
    display: flex;
    justify-content: center;
    position: relative;
    
    gap: 20px;
    margin: 0px 0;
    flex-direction: column;
    align-items: center;
}
.deck-staining h1 {
    font-size: 2.5rem;
    color: #0e0e0e;
    margin-bottom: 60px;
    max-width: 800px;
}
.deck-staining p {
    max-width: 700px;
    font-size: 21px;
    font-weight: bold;
    color: #161616;
}
.deck-staining img {
    width: 300px;
    height: 300px;
    border-radius: 20px;
}
.services {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-direction: column;
    align-items: center;
}
.services img {
    width: 400px;
    height: 400px;
    border-radius: 20px;
}
.reasons-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
   /* margin: 100px 0; */
   margin-top: 200px;
}
.reasons-container h1 {
    font-size: 2.5rem;
    color: #0f0f0f;
    margin-bottom: 60px;
    max-width: 800px;
}
.reasons-container p {
    max-width: 700px;
    font-size: 20px;
    color: #0e0e0e;
}
.reasons-container span {
    font-weight: bold;
    color: #0e0e0e;
}
.reasons-container img {
    margin: 20px 0;
}
.cabinet-image img {
    width: 800px;
    height: 400px;
    border-radius: 20px;
}
.why-paint {
    max-width: 700px;
    height: 720px;
    border-radius: 20px;
    padding: 20px;
    overflow-y: auto;
    line-height: 1.5;

}
.why-paint p {
    font-size: 19px;
    color: #535353;
     font-family: "Story Script", sans-serif;
  
}
.why-paint span {
    font-size: 25px;
    font-weight: bold;
    color: #000000;
    font-family:'Times New Roman', Times, serif;
  font-weight: 400;
  font-style: normal;

}
.why-paint a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    font-family: "Story Script", sans-serif;
    border-radius: 30px;
    padding: 10px 20px;
    position: relative;
    top: 10px;  
}


/* Services Page */

.services-intro {
   width: 100%;
    height: 100vh;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    text-align: center;
    position: relative;
    /* top: -100px; */
    background-color: rgba(255, 255, 255, 0.507);
    /* border-radius: 30px; */
}
.services-intro h1 {
    font-size: 28px;
    color: #000000;
    /* margin-bottom: 20px; */
     font-family: "Indie Flower", cursive;
  font-weight: 400;
  font-style: normal;
}
.services-intro-content {
    display: flex;
    justify-content: center;
    /* gap: 20px; */
    margin: 20px 0;
    flex-direction: column;
    align-items: center;
}
.services-intro p {
    max-width: 700px;
    font-size: 20px;
    color: #000000;
    position: relative;
    border-radius: 20px;
    padding: 20px;
    /* top: 100px; */
     font-family: "Indie Flower", cursive;
  font-weight: 400;
  font-style: normal;
}
.services-intro li {
    font-size: 18px;
    color: #000000;
    /* margin-bottom: 10px; */
}
.services-lists {
    width: 700px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin: 20px 0;
    background-color: rgba(245, 245, 245, 0.952);
    border-radius: 50px;
    padding: 20px;
    position: relative;
    /* top: 100px; */
}
.center-devider {
    width: 5px;
    height: 100%;
    background-color: #d67c07;
}
.services-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.services-list h2 {
    font-size: 24px;
    color: #d67c07;
    margin-bottom: 20px;
}
.services-list li {
    font-size: 18px;
    color: #000000;
    margin-bottom: 10px;
}
.service-welcome {
    max-width: 900px;
    height: auto;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    /* top: -100px; */
    background-color: rgb(247, 246, 246);
    border-radius: 30px;
}
.service-welcome h1 {
    font-size: 28px;
    color: #000000;
    margin-bottom: 20px;
}
.service-welcome p {
    font-size: 20px;
    color: #000000;
    font-family: "Indie Flower", cursive;
    font-weight: 400;
    font-style: normal;
}

.services-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    /* flex-direction: column; */
    align-items: center;
    margin: -50px 0;
    background-color: rgba(189, 189, 189, 0.507);
}
.service {
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 50px;
    flex-direction: column;
    align-items: center;
}
.service a {
    font-size: 20px;
    color: #e28b08;
    text-decoration: none;
    /* background-color: #d67c07; */;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 20px;
}
.service a:hover {
    text-decoration: underline;
    animation: 2s fadein ease;
}
.service img {
    border-radius: 20px;
    margin: 20px 0;
}.services-container h1 {
    font-size: 28px;
    color: #363636;
    margin-bottom: 60px;
    max-width: 800px;
}
.services-container p {
    max-width: 700px;
    font-size: 20px;
    color: #0e0e0e;
}
.process h1 {
    font-size: 2.5rem;
    color: #0e0e0e;
    text-align: center;
    margin-top: 20%;
}
.process p{
    text-align: center;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    flex-direction: column;
    align-items: center;
    color: rgb(10, 10, 10);
}
.process span {
    font-weight: bold;
    color: #242424;
}
.process-img {
    width: 350px;
    height: 300px;
    border-radius: 20px;

}
.process-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

/* interior painting section */

.interior_painting {
    width: 100%;
    height: 120vh;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0px 0;
    flex-direction: column;
    align-items: center;
}
.interior_painting h1 {
    font-size: 2.5rem;
    color: #111111;
    margin-bottom: 60px;
    padding: 10px 20px;
    max-width: 800px;
    /* background-color: #a8a8a8c7; */
    border-radius: 20px;
}
.interior_painting p {
    max-width: 700px;
    font-size: 21px;
    font-weight: bold;
    color: #000000;
}
.interior_painting a {
      color: #000000;
    text-decoration: none;
    font-weight: bold;
    text-shadow: #000000 1px 1px 2px;
     font-family: "Story Script", sans-serif;
     border: 2px solid #d67c07;
     border-radius: 30px;
      padding: 10px 20px;
}
.interior_painting a:hover {
    text-decoration: underline;
    background-color: #da8a12;
}
.interior_painting .interior-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}
.interior_painting img {
    width: 400px;
    height: 400px;
    border-radius: 20px;
}
.walls-ceilings {
    width: 100%;
    height: 120vh;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0px 0;
    flex-direction: column;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.walls-ceilings h1 {
    font-size: 2rem;
    color: #0a0a0a;
    margin-bottom: 60px;
    padding: 10px 20px;
    max-width: 800px;
    border-radius: 20px;
}
.walls-ceilings p {
    max-width: 700px;
    font-size: 21px;
    font-weight: bold;
    color: #000000;
}
.walls-ceilings img {
    width: 400px;
    height: 400px;
    border-radius: 20px;
}
.cabinet-section {
    width: 100%;
    height: 120vh;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0px 0;
    flex-direction: column;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.cabinet-section h1 {
    font-size: 2.5rem;
    color: #131313;
    margin-bottom: 60px;
    padding: 10px 20px;
    max-width: 800px;
    border-radius: 20px;
}
.cabinet-section p {
    max-width: 700px;
    font-size: 21px;
    font-weight: bold;
    color: #353535;
}

.cabinet-images img {
    width: 700px;
    height: 600px;
    border-radius: 20px;
    object-fit: cover;
    background-position: center;
    transition: opacity 1s ease;
    animation: fadein 1s ease-in-out;
}
.cabinet-section a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    text-shadow: #000000 1px 1px 2px;
     font-family: "Story Script", sans-serif;
     border: 2px solid #d67c07;
     border-radius: 30px;
      padding: 10px 20px;
}
.cabinet-section a:hover {
    text-decoration: underline;
    background-color: #da8a12;
}

.other-services {
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    flex-direction: column;
    align-items: center;
    background-color: rgba(240, 240, 240, 0.507);
}
.other-services h1 {
    font-size: 2.5rem;
    color: #0e0e0e;
    margin-bottom: 20px;
    padding: 10px 20px;
    max-width: 800px;
    border-radius: 20px;
}
.other-services p {
    max-width: 700px;
    font-size: 21px;
    font-weight: bold;
    color: #2e2e2e;
}

.other-services a:hover {
    text-decoration: underline;
    background-color: #da8a12;
}
.exterior-staining {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0px 0;
    flex-direction: column;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.exterior-staining h1 {
    font-size: 2.5rem;
    color: #0e0e0e;
    margin-bottom: 60px;
    padding: 10px 20px;
    max-width: 800px;
    border-radius: 20px;
}
.exterior-staining p {
    max-width: 700px;
    font-size: 21px;
    font-weight: bold;
    color: #0e0e0e;
}

.exterior-staining-content {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    flex-direction: row;
    align-items: center;
}
.devider-bar {
    width: 100%;
    height: 2px;
    background-color: #c0c0c0;
    margin: 20px 0;
}
.exterior-staining h2 {
    font-size: 24px;
    color: #d67c07;
    margin-bottom: 20px;
    width: 500px;
}

.exterior-images {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    /*gap: 20px;*/
    margin: 20px 0;
}
.exterior-cabin-staining-images{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.exterior-staining-content img {
    width: 500px;
    height: 500px;
    border-radius: 20px;
}
.exterior-painting {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    /*gap: 20px;*/
    margin: 20px 0;
    flex-direction: column;
    align-items: center;
    
}
/*.exterior-painting h1 {*/
/*    font-size: 2.5rem;*/
/*    color: #0e0e0e;*/
/*    margin-bottom: 60px;*/
/*    padding: 10px 20px;*/
/*    max-width: 800px;*/
/*    border-radius: 20px;*/
/*}*/
.exterior-painting p {
    max-width: 700px;
    font-size: 21px;
    font-weight: bold;
    color: #141414;
}
.exterior-painting a {
    color: #0c0c0c;
    text-decoration: none;
    font-weight: bold;
     font-family: "Story Script", sans-serif;
     border: 2px solid #d67c07;
     border-radius: 30px;
      padding: 10px 20px;
}
.exterior-painting a:hover {
    text-decoration: underline;
    background-color: #da8a12;
}
.exterior-painting .exterior-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}
.exterior-painting img {
    width: 300px;
    height: 300px;
    border-radius: 20px;
}
.about-exterior {
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    flex-direction: column;
    align-items: center;
}

.bar{
    width: 2px;
    height: 100%;
    background-color: #d67c07;
}
/* test html css */
.all-paint-needs {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    position: absolute;
    top: 20%;
     
}
.all-paint-needs h1 {
    font-size: 36px;
    color: #333333;
    /* margin-top: 100px; */
    text-shadow: #000000 1px 1px 2px;
    /* background-color: rgba(255, 255, 255, 0.507); */
    border-radius: 20px;
}
.mylogo {
    width: 400px;
    height: 400px;
    position: absolute;
    top: 30%;
    left: 20%;
    border-radius: 100%;
    z-index: 0;
    transform: translate(-50%, -50%);
    background-image: url('images/logoround_painting.png');
    background-size: cover;
    background-position: center;
}
.welcome-screen {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    /* background-color: rgba(0, 0, 0, 0.507); */
    position: relative;
    
     animation: fadein 1s ease-in-out;
        z-index: 3;
}
.welcome-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(rgba(92, 92, 92, 0.5), rgba(92, 92, 92, 0.5), rgba(92, 92, 92, 0.5)), url('images/cabinet_doors.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    animation: fadein 1s ease-in-out;
    z-index: 2;
}
.welcome-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
    padding: 10px 20px;
    
}
.welcome-text h2 {
    font-size: 2rem;
    margin: 10px 0;
   
}
.welcome-text ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.welcome-text ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 20px;
    background-color: #d67c07;
    border-radius: 5px;
    z-index: 2;
    cursor: pointer;
}
.welcome-text ul li a:hover {
    background-color: #b35e05;
    
}
.painting {
    width: 100%;
    height: auto;
    background-color: white;
    margin: 50px 0;
     animation: fadein 1s ease-in-out;
     z-index: 2;
}
.painting-index {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
    align-items: center;
}
.painting-index h1 {
    font-size: 36px;
    color: #0e0e0e;
    margin-top: 10px;
    border-radius: 20px;
    padding: 10px 20px;
}
.painting-index p {
    font-size: 20px;
    color: #0e0e0e;
    margin-top: 20px;
   
    width: 700px;
    font-weight: bold;
    font-family: "Times New Roman", Times, serif;
    border-radius: 20px;
    padding: 10px 20px;
}
.painting-index a {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ffe6c5;
    color: #0e0e0e;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    text-decoration: none;
}
.painting-index a:hover {
    background-color: #d67c07;
}
.weoffer{
    position: relative;
    top: 30%;
    z-index: 2;
}
.application-welcome-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
     animation: fadein 1s ease-in-out;
    z-index: 2;
}
.application-welcome-container h1 {
    font-size: 36px;
    color: #020202;
    margin-top: 100px;
    border-radius: 20px;
    padding: 10px 20px;
}
.application-welcome-container p {
    font-size: 20px;
    width: 700px;
     font-weight: bold;
     font-family: "Times New Roman", Times, serif;
    color: #0e0e0e;
    margin-top: 20px;
    border-radius: 20px;
    padding: 10px 20px;
}
.application-instructions{
    width: 50%;
    height: auto;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}
.application-instructions h1 {
    font-size: 28px;
    color: #363636;
    margin-bottom: 20px;
}
.application-instructions p {
    font-size: 20px;
    color: #0e0e0e;
    margin-bottom: 20px;
}
#transtion-video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    /* display: none; */
    top: 0;
    left: 0;
    z-index: -2;
}
.estimate-section {
    width: 100%;
    height: auto;
    display: flex;
    padding: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 253, 253);
}
.estimate-section p {
    font-size: 21px;
    color: #0e0e0e;
    margin-bottom: 20px;
    width: 700px;
    text-align: center;
}
 .estimate-form{
    width: 40%;
    height: auto;
    border-radius: 5px;
    display: flex ;
    flex-direction: column;
   border-top: 10px solid #b35e05;
    border-bottom: 10px solid #b35e05;
    border-left: 1px solid #b35e05;
    border-right: 1px solid #b35e05;
    padding: 20px;
}

.name-groups{
    display: flex;
    gap: 10px;
    margin: 40px 0;
    flex-direction: row;
    
}
.name-group {
    display: flex;
    /* justify-content: center; */
    gap: 10px;
    margin: 0px 0;
    flex-direction: column;
    align-items: center;
}
.name-group input {
    width: 300px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.address-groups {
    display: flex;
    gap: 0px;
    margin: 0px 0;
    flex-direction: column;
}
 .address-group {
     display: flex;
    gap: 10px;
    margin: 0px 0;
    flex-direction: column;
} 
.address-group input {
    width: 630px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.city-state-zips{
    display: flex;
    gap: 20px;
    margin: 0px 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.city input, .state input, .zip-code input {
    width: 150px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
  
}
.city, .state, .zip-code {
    display: flex;
    gap: 10px;
    margin: 0px 0;
    flex-direction: column;
    align-items: center;
}
.contact-groups {
    display: flex;
    gap: 20px;
    margin: 0px 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;

}
.contact-group {
    display: flex;
    gap: 10px;
    margin: 0px 0;
    flex-direction: column;
    align-items: center;
}
.contact-group input {
    width: 200px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.project-details {
    display: flex;
    gap: 10px;
    margin: 0px 0;
    flex-direction: column;
    width: 100%;
    align-items: center;
}
.project-detail {
    display: flex;
    gap: 10px;
    margin: 0px 0;
    flex-direction: column;
    align-items: center;
}
.project-details label {
    font-size: 18px;
    color: #0e0e0e;
    margin-bottom: 10px;
}
.project-details select {
    width: 300px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #050505;
    border-radius: 5px;
}
.pro-description {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pro-description textarea {
    width: 630px;
    height: 150px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.estimate-form button {
    padding: 10px 20px;
    background-color: #d67c07;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.estimate-form button:hover {
    background-color: #b35e05;
}

/* Job Application */

.painting-experience {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px 0;
}
.painting-experience label {
    font-size: 18px;
    color: #0e0e0e;
    margin-bottom: 10px;
}
.painting-experience select {
    width: 300px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #050505;
    border-radius: 5px;
}
.painting-experience options {
    font-size: 18px;
    color: #0e0e0e;
}
.additional-info{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px 0;
}
.additional-info label {
    font-size: 18px;
    color: #0e0e0e;
    margin-bottom: 10px;
}
.additional-info textarea {
    width: 630px;
    height: 150px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.rate-your-skills {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px 0;
}
.rate-your-skills label {
    font-size: 18px;
    color: #0e0e0e;
    margin-bottom: 10px;
}
.rate-your-skills select {
    width: 300px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #050505;
    border-radius: 5px;
}
.rate-your-skills option {
    font-size: 18px;
    color: #0e0e0e;
}
.availability{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px 0;
}
.availability label {
    font-size: 18px;
    color: #0e0e0e;
    margin-bottom: 10px;
}
.availability select {
    width: 300px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #050505;
    border-radius: 5px;
}
.availability option {
    font-size: 18px;
    color: #0e0e0e;
}
.past-employer {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px 0;
}
.past-employer label {
    font-size: 18px;
    color: #0e0e0e;
    margin-bottom: 10px;
}
.past-employer textarea {
    width: 630px;
    height: 150px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.faq-popup {
    width: 75%;
    height: 70vh;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    border: 2px solid #d67c07;
    padding: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
     z-index: 2;
}
.faq-popup h1 {
    font-size: 28px;
    color: #363636;
    margin-bottom: 20px;
}
.faq-popup p {
    font-size: 20px;
    color: #0e0e0e;
    margin-bottom: 20px;
}
.faq-popup button {
    padding: 10px 20px;
    background-color: #d67c07;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.faq-popup button:hover {
    background-color: #b35e05;
}

.footer-estimate {
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    flex-direction: row;
    align-items: center;
    background-color: rgba(77, 76, 76, 0.87);
}
.calendar {
    width: 400px;
    height: 400px;
    background-color: rgb(138, 138, 138);
    border-radius: 5px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.calendar-header {
    font-size: 24px;
    color: #d6d6d6;
    
}
.calendar-body {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    width: 100%;
    height: 100%;
}
.calendar-weekdays {
    display: flex;
    gap: 2px;
    width: 100%;
    height: 25px;
    border: 1px solid #818181;
    color: #cacaca;
}
.calendar-weekdays div {
    width: 15.28%;
    text-align: center;
}
.calendar-days {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    width: 100%;
    height: 100%;
}
.calendar-days div {
    width: 16.43%;
    height: 50px;
    text-align: center;
    line-height: 40px;
    border: 1px solid #818181;
    color: #e9e9e9;
    cursor: pointer;
}
.calendar-days div:hover {
    background-color: #d67c07;
    color: #fff;
}
.service-info {
    width: 400px;
    height: 350px;
    background-color: rgb(138, 138, 138);
    border-radius: 5px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.service-area-map-list {
    width: 100%;
    height: 100%;
    gap: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.service-area-list {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.service-area-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.service-area-list ul li {
    font-size: 18px;
    color: #e9e9e9;
}
.paint-estimater {
    width: 400px;
    height: 250px;
    background-color: rgb(138, 138, 138);
    border-radius: 5px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
} 
.paint-estimater button {
    padding: 10px 20px;
    background-color: #d67c07;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.paint-estimater button:hover {
    background-color: #b35e05;
}
.paint-result {
    font-size: 24px;
    color: #000000;
    width: 200px;
    height: 300px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgb(185, 185, 185);
    margin-top: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.close-button {
    padding: 10px 20px;
    background-color: #d67c07;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}
.close-button:hover {
    background-color: #b35e05;
}
.interior-staining {
    width: 100%;
    height: 75vh;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0px 0;
    flex-direction: column;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.interior-staining h1 {
    font-size: 2.5rem;
    color: #0e0e0e;
    margin-bottom: 60px;
    padding: 10px 20px;
    max-width: 800px;
    border-radius: 20px;
}
.interior-staining p {
    max-width: 700px;
    font-size: 21px;
    font-weight: bold;
    color: #0e0e0e;
}
.interior-staining-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}
.interior-staining-images img {
    width: 300px;
    height: 300px;
    border-radius: 20px;
}
.faq {
    width: 80%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 50px 0;
    flex-direction: column;
    align-items: center;
    background-color: rgba(189, 189, 189, 0.507);
}
.footer-main {
    width: 100%;
    height: auto;
    background-color: #333333;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top: 5px solid #d67c07;

}
.footer-main p {
    font-size: 14px;
}
.footer-main ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.footer-main ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
}
.footer-main ul li a:hover {
    text-decoration: underline;
}
.footer-service-list {
    width: 60%;
    height: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    margin: 20px 0;
    /* background-color: rgba(189, 189, 189, 0.507); */
}
.footer-services {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer-services ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
.footer-services ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}
.footer-services ul li a:hover {
    text-decoration: underline;
}
.footer-services h3 {
    font-size: 24px;
    color: #d67c07;
    margin-bottom: 20px;
}


@media  (max-width: 1000px) {
    .exterior-images {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 20px 0;
        flex-direction: column;
        align-items: center;
    }
     /* .walls-ceilings img {
        width: 300px;
        height: 300px;
     }
      .cabinet-images img {
        width: 400px;
        height: 200px;
     }
       .process-images img {
        width: 300px;
        height: 300px; 
     }*/
       .exterior-staining-content img {
        width: 300px;
        height: 300px;
     }
    }
    

@media (min-width: 768px) and (max-width: 1524px) {
    #bg-image {
        width: 100%;
        height: 50vh;
    }
    
    .nav-bar {
        display: none;
    }
    .hamber-menu {
        display: block;
        position: fixed;
    }
    /* .welcome-message {*/
    /*    width: 500px;*/
    /*    height: 400px;*/
    /*    padding: 20px;*/
    /*    top: 0%;*/
    /*}*/
    .welcome-message {
        width: 400px;
        height: 350px;
        padding: 20px;
        top: 5%;
    }
     .mylogo {
        width: 150px;
        height: 150px;
        top: 10%;
        left: 50%;
     }
     .welcome-text h1 {
        font-size: 28px;
     }
    #bg-image {
        width: 100%;
        height: 50vh;
    }
    .service-welcome {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
     .reasons-container {
        width: 100%;
        height: auto;
        margin: 0 auto;
     }
     .process-images {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 20px 0;
        flex-direction: column;
        align-items: center;
     }
     .cabinet-image img {
        width: 400px;
        height: 200px;
     }
      .process-images img {
        width: 300px;
        height: 300px;
     }
      .why-paint {
        width: 100%;
        height: auto;
        margin: 0 auto;
     }
      .why-paint p {
        font-size: 18px;
     }
      .why-paint span {
        font-size: 18px;
     }
     .more-about {
        width: 100%;
        height: auto;
        margin: 0 auto;
     }
      .more-about p {
        font-size: 18px;
     }
       .more-about span {
        font-size: 18px;
     }
     .interior_painting {
        width: 100%;
        height: auto;
        margin: 0 auto;
     }
      .interior_painting h1 {
        font-size: 2rem;
        /* max-width: 300px; */
     }
      .interior_painting p {
        font-size: 1.2rem;
        width: 90%;
     }
     .interior-images {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 20px 0;
        flex-direction: column;
        align-items: center;
     }
     .walls-ceilings img {
        width: 300px;
        height: 300px;
     }
     .exterior-images img {
        width: 300px;
        height: 300px;
     }
     .exterior-staining {
        width: 100%;
        height: auto;
        margin: 10px auto;
     }
      .exterior-staining h1 {
        font-size: 2rem;
        /* max-width: 750px; */
     }
     .exterior-staining h3 {
        font-size: 1.2rem;
        max-width: 750px;
     }
        .exterior-staining p {
            font-size: 1.2rem;
            width: 100%;
        }
      .exterior-staining-images {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 20px 0;
        flex-direction: column;
        align-items: center;
     }
     .estimate-section {
        padding: 20px;
     }
     .estimate-section p {
        font-size: 18px;
     }
     .estimate-form {
        width: 100%;
        height: auto;
        border-radius: 5px;
        display: flex ;
        flex-direction: column;
        border-top: 10px solid #b35e05;
        border-bottom: 10px solid #b35e05;
        border-left: 1px solid #b35e05;
        border-right: 1px solid #b35e05;
        padding: 20px;
     }
        .name-groups {
            display: flex;
            gap: 10px;
            margin: 40px 0;
            flex-direction: row;
            justify-content: center;
        }
        .name-group {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 0px 0;
            flex-direction: column;
            align-items: center;

        }
        .name-group input {
            width: 300px;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 5px;
            justify-content: center;
        }
         .address-groups {
             display: flex;
            gap: 0px;
            margin: 0px 0;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
         .address-group {
             display: flex;
            gap: 10px;
            margin: 0px 0;
            flex-direction: column;
            justify-content: center;
        }
        .address-group input {
            display: flex;
            width: 630px;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 5px;
            flex-direction: column;
            justify-content: center;
        }
         .city-state-zips {
            display: flex;
            gap: 20px;
            margin: 0px 0;
            flex-direction: row;
            align-items: center;
            justify-content: center;
        }
        .city input, .state input, .zip-code input {
            width: 150px;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .city, .state, .zip-code {
            display: flex;
            gap: 10px;
            margin: 0px 0;
            flex-direction: column;
            align-items: center;
        }
        .contact-groups {
            display: flex;
            gap: 20px;
            margin: 0px 0;
            flex-direction: row;
            align-items: center;
            justify-content: center;
        }
        .contact-group {
            display: flex;
            gap: 10px;
            margin: 0px 0;
            flex-direction: column;
            align-items: center;
        }
        .contact-group input {
            width: 200px;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
         .project-details {
            display: flex;
            gap: 10px;
            margin: 0px 0;
            flex-direction: column;
            width: 100%;
            align-items: center;
        }
        .project-detail {
            display: flex;
            gap: 10px;
            margin: 0px 0;
            flex-direction: column;
            align-items: center;
        }
        .project-details label {
            font-size: 18px;
            color: #0e0e0e;
            margin-bottom: 10px;
        }
        .project-details select {
            width: 300px;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #050505;
            border-radius: 5px;
        }
        .pro-description {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .pro-description textarea {
            width: 630px;
            height: 150px;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .estimate-form button {
            width: 150px;
            height: 40px;
            margin-left: 50%;
             transform: translateX(-50%);
            padding: 10px 20px;
            background-color: #d67c07;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            }
        .estimate-form button:hover {                
            background-color: #b35e05;
            }
            .footer-estimate {
                display: flex;
                flex-wrap: wrap;
                height: auto;
            }
             .footer-nav {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .footer-main {
                height: auto;
                padding: 20px;
            }
        }
        
@media (min-width: 647px) and (max-width: 729px) {
   .welcome-text ul li a {
        font-size: 14px;
        padding: 8px 16px;
        
    }
}

@media (min-width: 647px) and (max-width: 768px) {
    #bg-image {
        width: 100%;
        height: 50vh;
    }
    .nav-bar {
        display: none;
    }
    .hamber-menu {
        display: block;
        position: fixed;
    }
     .welcome-message {
        width: 400px;
        height: 350px;
        padding: 10px;
        top: 5%;
    }
     .mylogo {
        width: 150px;
        height: 150px;
        top: 10%;
        left: 50%;
     }
     .welcome-text h1 {
        font-size: 28px;
     }
     
     .services-container {
        flex-direction: column;
     }
      .service-welcome {
        width: 100%;
        height: auto;
        margin: 0 auto;
     }
     
     .painting-index p {
        font-size: 18px;
        width: 90%;
    }
    .process-images {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 20px 0;
        flex-direction: column;
        align-items: center;
     }
     .cabinet-image img {
        width: 400px;
        height: 200px;
     }
     .process-images img {
        width: 300px;
        height: 300px;
     }
      .why-paint {
        width: 100%;
        height: auto;
        margin: 0 auto;
     }
      .why-paint p {
        font-size: 18px;
     }
      .why-paint span {
        font-size: 18px;
    }
    .more-about {
        width: 100%;
        height: auto;
        margin: 0 auto;
     }
      .more-about p {
        font-size: 18px;
     }
       .more-about span {
        font-size: 18px;
     }
     .interior_painting {
        width: 100%;
        height: auto;
        margin: 0 auto;
     }
      .interior_painting h1 {
        font-size: 2rem;
        /* max-width: 300px; */
     }
      .interior_painting p {
        font-size: 1.2rem;
        width: 90%;
     }
    .interior-images {
       display: flex;
       justify-content: center;
       gap: 20px;
       margin: 20px 0;
       flex-direction: column;
       align-items: center;
    }
    .walls-ceilings img {
        width: 300px;
        height: 300px;
     }
     .footer-main {
        height: auto;
        padding: 20px;
     }
     .footer-nav {
        display: flex;
        flex-direction: column;
     }
     .estimate-section {
        padding: 20px;
     }
        .estimate-section p {
            font-size: 18px;
        }
        .estimate-form {
            width: 100%;
            height: auto;
            border-radius: 5px;
            display: flex ;
            flex-direction: column;
            border-top: 10px solid #b35e05;
            border-bottom: 10px solid #b35e05;
            border-left: 1px solid #b35e05;
            border-right: 1px solid #b35e05;
            padding: 20px;
        }
        .footer-estimate {
                display: flex;
                flex-wrap: wrap;
                height: auto;
            }
            .estimate-form button {
                width: 150px;
                height: 40px;
                margin-left: 50%;
                 transform: translateX(-50%);
                padding: 10px 20px;
                background-color: #d67c07;
                color: #fff;
                border: none;
                border-radius: 5px;
                cursor: pointer;
            }
            .estimate-form button:hover {                
                background-color: #b35e05;
            }
             .footer-nav {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
             .footer-main {
                height: auto;
                padding: 20px;
            }
            .map {
                width: 100%;
                height: auto;
                margin: 0 auto;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }
                
        .exterior-staining-content {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 20px 0;
        flex-direction: column;
        align-items: center;
        }
        .exterior-staining h3 {
            font-size: 1.2rem;
            max-width: 630px;
        }
              
}
@media (min-width: 330px) and (max-width: 647px) {
    #bg-image {
        width: 100%;
        height: 50vh;
    }
    .hamber-menu {
        display: block;
        position: fixed;
    }
    .mylogo {
        width: 150px;
        height: 150px;
        top: 10%;
        left: 50%;
    }
    .welcome-message {
        width: 300px;
        height: 350px;
        padding: 10px;
        top: 5%;
    }
    .welcome-message p {
        font-size: 18px;
    }
    .welcome-text {
        position: relative;
        top: 30%;
    }
   .welcome-text h1 {
        font-size: 20px;
    }
     .welcome-text h2 {
        font-size: 18px;
    }
     .welcome-text ul li a {
        font-size: 14px;
        padding: 8px 16px;
        
    }
    .call-us {
        margin-top: 100px;
     }
     .call-us a {
        font-size: 30px;
        color: #d67c07;
        text-decoration: none;
        font-weight: bold;
     }
    .nav-bar {
        display: none;
        z-index: 299;
    }
    .application-welcome-container {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
     .application-welcome-container h1 {
        font-size: 28px;
        color: #363636;
        margin-bottom: 20px;
        text-align: center;
    }
    .application-welcome-container p {
        font-size: 18px;
        color: #0e0e0e;
        margin-bottom: 20px;
        max-width: 330px;
    }
     .services-container {
        flex-direction: column;
     }
      .service-welcome {
        width: 100%;
        height: auto;
        margin: 0 auto;
     }
     .painting {
        display: flex;
     }
     .painting-index p {
        font-size: 18px;
        width: 90%;
    }
    .cabinet-image img {
        width: 300px;
        height: 200px;
    }
     .process-images img {
        width: 300px;
        height: 300px;
     }
    .weoffer {
        display: none;
    }
    .welcome-message {
        width: 300px;
        height: 350px;
        padding: 20px;
        
    }
    .welcome-message h1 {
        font-size: 2rem;
        /* max-width: 300px; */
    }
    .welcome-screen {
        display: flex;
        flex-direction: column
    }
    .welcome-screen ul{
        flex-direction: column;
        gap: 30px;
        position: relative;
        top: 10%;
    }
    
     .welcome-screen ul li a {
        font-size: 14px;
        padding: 8px 16px;
    }
     .painting-index h1 {
        font-size: 24px;
    }
    .painting-index p {
        font-size: 18px;
        width: 90%;
    }
    .deck-staining h1 {
        font-size: 2rem;
        /* max-width: 300px; */
    }
    .deck-staining p {
        font-size: 1.2rem;
        width: 90%;
    }
    .deck-staining img {
        width: 300px;
        height: 300px;
    }
    .reasons {
        width: 90%;
        height: auto;
        margin: 0 auto;
    }
    .exterior_painting {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    .exterior_painting h1 {
        font-size: 2rem;
        /* max-width: 300px; */
    }
    .exterior_painting p {
        font-size: 1.2rem;
        width: 90%;
    }
  .exterior-images {
       display: flex;
       flex-direction: column;
    }
    .exterior-images img {
        width: 300px;
        height: 300px;
    }
    .reasons h1 {
        font-size: 24px;

    }
    .reasons p {
        font-size: 18px;
    }
    .why-paint {
        height: auto;
    }
    .why-paint p {
        font-size: 18px;
    }
    .why-paint span {
        font-size: 18px;
    }
    .more-about {
        width: 90%;
        height: auto;
        margin: 0 auto;
    }
    .more-about p {
        font-size: 18px;
    }
    .cabinet-images {
        display: flex;
        flex-direction: column;
    }
    .cabinet-section h1 {
        font-size: 24px;
    }
    .cabinet-section p {
        font-size: 18px;
        width: 90%;
        margin: 0 auto;
     }
     .cabinet-section img {
        width: 300px;
        height: 300px;
     }
     .process-images {
        display: flex;
        flex-direction: column;
    }
     .process-images img {
        width: 300px;
        height: 300px;
     }
     .interior_painting {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    .interior_painting h1 {
        font-size: 1.5rem;
        /* max-width: 300px; */
    }
    .interior_painting p {
        font-size: 1rem;
        width: 90%;
    }
    .interior-images {
        display: flex;
        flex-direction: column;
    }
    .interior-images img {
        width: 300px;
        height: 300px;
    }
    .interior-staining h1 {
        font-size: 1.5rem;
        /* max-width: 300px; */
    }
    .interior-staining p {
        font-size: 1rem;
        width: 90%;
    }
    .walls-ceilings
        {
            width: 100%;
            height: auto;
            margin: 0 auto;
        }
    .walls-ceilings h1 {
        font-size: 24px;
    }
    .walls-ceilings p {
        font-size: 18px;
        width: 90%;
    }
    .walls-ceilings-images {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
        .walls-ceilings img {
            width: 300px;
            height: 300px;
        }
        .interior-staining {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    .interior-staining-images {
        display: flex;
        flex-direction: column;
    }    
    .footer-main {
        height: auto;
        padding: 20px;
    }
    .footer-nav ul {
        flex-direction: column;
        gap: 10px;
    }
    .footer-socials ul {
        flex-direction: column;
        gap: 10px;
    }
    .bar {
        display: none;
    }

    /* services */

    .service-welcome {
        width: 90%;
        height: auto;
        margin: 0 auto;
    }
    .reasons-container {
        width: 90%;
        height: auto;
        margin: 0 auto;
    }
    .reasons-container h1 {
        font-size: 24px;
    }
    .services-container {
        flex-direction: column;
    }
    .process {
        height: auto;
            width: 90%;
            margin: 0 auto;
    }
    .process h1 {
        font-size: 24px;
    }
    .process p {
        font-size: 18px;
    }
    .why-paint {
        width: 90%;
        height: auto;
        margin: 0 auto;
    }
    .why-paint span {
        font-size: 18px;
    }
    .why-paint p {
        font-size: 12px;
    }
    .process-images {
        flex-direction: column;
    }
    .process-images img {
        width: 300px;
        height: 300px;
    }
    .service img {
        width: 300px;
        height: 300px;
    }
    .other-services {
        width: 90%;
        height: auto;
        margin: 0 auto;
    }
    .other-services h1 {
        font-size: 24px;
    }
    .other-services p {
        font-size: 18px;
    }
    
    .estimate-section{
        max-width: 100%;
    }
        .estimate-section p {
            font-size: 12px;
            max-width: 95%;
             margin: 0 auto;
        }
        .estimate-form {
            width: 100%;
            height: auto;
            border-radius: 5px;
            display: flex ;
            flex-direction: column;
            border-top: 10px solid #b35e05;
            border-bottom: 10px solid #b35e05;
            border-left: 1px solid #b35e05;
            border-right: 1px solid #b35e05;
            padding: 5px;
        }
        .estimate-form .name-groups {
            display: flex;
            gap: 10px;
            margin: 40px 0;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .estimate-form .name-group {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 5px 0;
            flex-direction: column;
            align-items: center;

        }
        .estimate-form .name-group input {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 5px;
            justify-content: center;
        }
         .estimate-form .address-groups {
             display: flex;
            gap: 0px;
            margin: 0px 0;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
         .estimate-form .address-group {
             display: flex;
            gap: 10px;
            margin: 0px 0;
            flex-direction: column;
            justify-content: center;
        }
        .estimate-form .address-group input {
            display: flex;
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 5px;
            flex-direction: column;
            justify-content: center;
        }
         .estimate-form .city-state-zips {
            display: flex;
            gap: 20px;
            margin: 0px 0;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .estimate-form .city input, .estimate-form .state input, .estimate-form .zip-code input {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .estimate-form .city, .estimate-form .state, .estimate-form .zip-code {
            display: flex;
            gap: 10px;
            margin: 0px 0;
            flex-direction: column;
            align-items: center;
        }
        .estimate-form .contact-groups {
            display: flex;
            gap: 20px;
            margin: 0px 0;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .estimate-form .contact-group {
            display: flex;
            gap: 10px;
            margin: 0px 0;
            flex-direction: column;
            align-items: center;
        }
        .estimate-form .contact-group input {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
         .estimate-form .project-details {
            display: flex;
            gap: 10px;
            margin: 0px 0;
            flex-direction: column;
            width: 100%;
            align-items: center;
        }
        .estimate-form .project-detail {
            display: flex;
            gap: 10px;
            margin: 0px 0;
            flex-direction: column;
            align-items: center;
        }
        .estimate-form .project-details label {
            font-size: 18px;
            color: #0e0e0e;
            margin-bottom: 10px;
        }
        .estimate-form .project-details select {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #050505;
            border-radius: 5px;
        }
        .estimate-form .pro-description {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .estimate-form .pro-description textarea {
            width: 100%;
            height: 150px;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        .estimate-form button {
            width: 150px;
            height: 40px;
            margin-left: 50%;
             transform: translateX(-50%);
            padding: 10px 20px;
            background-color: #d67c07;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            }
        .estimate-form button:hover {                
            background-color: #b35e05;
            }
    .footer-estimate {
        display: flex;
        flex-wrap: wrap;
        height: auto;
        justify-content: center;
        margin: 10px 0;
    }
    .paint-estimater{
        width: 100%;
            height: auto;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            animation: fadein 0.5s ease-in-out;
            padding: 10px;
    }
    .additional-info {
        width: 90%;
        height: auto;
        margin: 0 auto;
     }
     .additional-info label {
        font-size: 18px;
        color: #0e0e0e;
        margin-bottom: 10px;
     }
     .additional-info textarea {
        width: 100%;
        height: 150px;
        padding: 10px;
        margin-bottom: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
     }
     .past-employer {
        width: 100%;
        height: auto;
        margin: 0 auto;
     }
        .past-employer label {
            font-size: 18px;
            color: #0e0e0e;
            margin-bottom: 10px;
        }
        .past-employer textarea {
            width: 100%;
            height: 150px;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .map {
            width: 100%;
            height: auto;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            animation: fadein 0.5s ease-in-out;
            padding: 10px;
        }
        .map h1 {
            font-size: 24px;
            color: #0e0e0e;
            margin-bottom: 20px;
            text-align: center;
        }
        .map iframe {
            width: 300px;
            height: 400px;
            border: none;
            border-radius: 5px;
        }
        .service-info{
            width: 100%;
            height: auto;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            animation: fadein 0.5s ease-in-out;
            padding: 10px;
        }
        .footer-service-list {
            display: none;
        }
        .exterior-staining{
        width: 100%;
        height: auto;
        margin: 10px auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        }
        .exterior-staining h3 {
            font-size: 1.2rem;
            max-width: 330px;
        }
        .exterior-staining h1 {
            font-size: 2rem;
            /* max-width: 300px; */
        }
         .exterior-staining p {
            font-size: 1.2rem;
            width: 90%;
            margin: 0 auto;
        }
        .exterior-staining-content {
            width: 100%;
            height: auto;
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 20px 0;
        flex-direction: column;
        align-items: center;
        }
        .exterior-painting {
        width: 100%;
        height: auto;
        margin: 10px auto;
        }
        .exterior-painting h1 {
            font-size: 2rem;
            max-width: 300px;
        }
        .exterior-painting p {
            font-size: 1.2rem;
            width: 90%;
            margin: 0 auto;
        }
        .exterior-staining-content img {
            width: 300px;
            height: 300px;
        }
        
}
        @media (max-height: 726px) {
    .welcome-text {
        height: auto;
        min-height: 100vh;
        justify-content: flex-start;
        padding: 110px 16px 32px;
    }

    .mylogo {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 140px;
        height: 140px;
        margin: 0 auto 16px;
    }
    .call-us {
        margin-top: 20px;
    }

    .all-paint-needs {
        position: relative;
        top: auto;
    }

    .all-paint-needs h1 {
        font-size: clamp(1.4rem, 4vh, 2.2rem);
        margin-bottom: 10px;
    }

    .welcome-text h2 {
        margin: 20px 0;
        font-size: clamp(1.2rem, 3vh, 1.8rem);
    }

    .welcome-text ul {
        flex-wrap: wrap;
        gap: 20px;
    }

    .weoffer {
        top: auto;
        margin-top: 20px;
    }

    .weoffer ul {
        flex-wrap: wrap;
        gap: 10px;
    }

    .more-about,
    .deck-staining,
    .services,
    .services-intro,
    .interior_painting,
    .walls-ceilings,
    .cabinet-section,
    .other-services,
    .about-exterior,
    .interior-staining {
        height: auto;
        min-height: 0;
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .reasons-container {
        margin-top: 48px;
    }

    

    .faq-popup {
        height: auto;
        max-height: 85vh;
    }

    .footer-estimate {
        height: auto;
        flex-wrap: wrap;
        padding: 24px 0;
    }
}



