
body, html{
    margin: 0 auto;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: #1b1a1a;
    color: #000;
    font-family: "DM Serif Display", serif;
    overflow-x: hidden;
    /* background: linear-gradient(to bottom, #000000 0%, #ffffff 100%); */
    
}

.headerWrapper{
    position: relative;
    width: 100%;
    height: 65vh;
}

@media (max-width:450px) {
    .headerWrapper{
        height: 90vh;
        margin-bottom: 65px;
    }
}

.mainHeader {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    background-color: #1b1a1a;
    color: #ffffff;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.mainHeader::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/bgImage.png'); 
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.05; 
    z-index: 1; 
}


 /* ipad pro Portrait */
 @media only screen and (min-device-width: 1024px) 
 and (max-device-height: 1366px) 
 and (-webkit-min-device-pixel-ratio: 2)  
 and (orientation: portrait){
    .headerWrapper{
        height: 45vh;
    }
    .mainHeader{
        height: 40vh;
    }
 }


.logo_text_btns{
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.mainLogo{
    width: 50%;
    margin:25px;
}


@media (max-width:450px) {
    .mainLogo{
        width: 75%;
    }
}

.mainBtnWrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    margin-top: 10px;
}

.headerText{
    text-align: center;
    margin: 25px;
    font-size: 1.5em;
    width: 60%;
    text-shadow: 2px 2px 4px #000000;
}

@media (max-width:850px) and (min-width:449px) {
    .mainHeader{
        flex-direction: column;
    }
}

@media (max-width:450px) {
    .mainLogo, .mainBtnWrapper, .headerText{
        width: 75%;
    }
    .mainHeader{
        flex-direction: column;
    }
    .mainBtnWrapper{
        z-index: 25;
        margin-bottom: 20px;
    }
}

.button1{
    border: none;
    background-image: linear-gradient(to right, #F6ED9B, #95662C 50%, #F6ED9B);
    padding: 10px;
    margin: 10px;
    width: 50%;
    color: #1b1a1a;
    font-weight: bold;
    box-shadow: 2px 2px 4px #000000;
}

.button2{
    padding: 10px;
    margin: 10px;
    border: 1px solid #e3b931;
    color: #e3b931;
    background-color: rgba(0, 0, 0, 0.702);
    width: 50%;
    font-weight: bold;
    box-shadow: 2px 2px 4px #000000;
}

.mainCutoutCrane{
    position: absolute;
    height: 100%;
    top: 0;
    left:40%;
    z-index: 1;
}

 /* ipad pro Portrait */
 @media only screen and (min-device-width: 1024px) 
 and (max-device-height: 1366px) 
 and (-webkit-min-device-pixel-ratio: 2)  
 and (orientation: portrait){
    .mainLogo, .headerText,  .mainBtnWrapper{
        width: 80%;
     }
     .logo_text_btns{
         width: 50%;
     }

     .mainCutoutCrane{
        position: absolute;
        height: 70%;
        top: 35%;
        left:45%;
        z-index: 2;
    }

 }

/* ipad landscape */
@media only screen and (max-height:770px) and (orientation : landscape) {
    .mainLogo, .headerText,  .mainBtnWrapper{
       width: 80%;
    }
    .logo_text_btns{
        width: 50%;
    }

    .mainCutoutCrane{
        position: absolute;
        height: 70%;
        top: 20%;
        left:50%;
        z-index: 2;
    }

}

@media (max-width:850px) and (min-width:449px) {
    .mainCutoutCrane{
        top: 75%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        height: auto;
        z-index: 1;
     }
}

@media (max-width:450px) {
    .mainCutoutCrane{
       top: 55%;
       left: -15%;
       width: 110%;
       height: auto;
       z-index: 1;
    }
}



.squares_wrapper {
    display: flex;
    align-items: center;
    justify-content: center; 
    flex-wrap: nowrap; 
    overflow-x: auto; 
    width: 100%;
    margin: 30px auto;
    height: fit-content;
    -webkit-overflow-scrolling: touch; 
}
@media (max-width:450px) {
    .squares_wrapper {
        justify-content: flex-start; 
        animation: bounceScroll 1s ease-out forwards;
        animation-delay: 1s; /* Delay the animation to draw attention */
    }
}


.highlightSquare {
    width: 30%;
    flex: 0 0 auto; 
    margin: 0 10px;
    position: relative;
    overflow: hidden;

}

@media (max-width:450px) {
    .highlightSquare {
        width: 90%;
    }
}



@keyframes bounceScroll {
    0% { transform: translateX(0); }
    50% { transform: translateX(-20px); }
    100% { transform: translateX(0); }
}


.highlightImgs{
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0 auto;
}
.highlightText{
    position: absolute;
    background-image: linear-gradient(to right, #F6ED9B, #95662C 50%, #F6ED9B);
    padding: 10px 0px 10px 0px;
    font-size: 2em;
    width: 100%;
    color: #1b1a1a;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family:Impact, 'Arial Narrow Bold', sans-serif;
    margin:0
}

@media (max-width:450px) {
    .highlightText {
        font-size: 1.6em;
        padding: 5px 0px 5px 0px;
    }
}

.bookingSection {
    width: 100%;
    height: 80vh;
    min-height: fit-content;
    display: flex;
    align-items: center;
    background-color: #1b1a1a;
    color: #ffffff;
    justify-content: space-evenly;
    position: relative;
    overflow: hidden;
}

.bookingSection::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/bgImage.png'); 
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.05; 
    z-index: 1; 
}


 /* ipad pro Portrait */
 @media only screen and (min-device-width: 1024px) 
 and (max-device-height: 1366px) 
 and (-webkit-min-device-pixel-ratio: 2)  
 and (orientation: portrait){
    .bookingSection{
        height: 45vh;
    }

 }



@media (max-width:850px) and (min-width:449px) {
    .bookingSection{
        flex-direction: column;
        height: fit-content;
    }
}

@media (max-width:450px) {
    .bookingSection{
        flex-direction: column;
        height: fit-content;
    }
}

.booktext_section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Final state: fully visible */
.booktext_section.visible {
    opacity: 1;
    transform: translateY(0);
}

.bookWithWrapper{
    display:flex ;
    flex-direction: column;
    align-items: flex-start;
    margin: 20px;
}

.contact_subText{
    font-size: 2em;
    margin: 0%;
    padding: 0;
}

.contact_mainText{
    font-size: 3.5em;
    margin: 0%;
    padding: 0;
}



 /* ipad pro Portrait */
 @media only screen and (min-device-width: 1024px) 
 and (max-device-height: 1366px) 
 and (-webkit-min-device-pixel-ratio: 2)  
 and (orientation: portrait){
    .contact_mainText{
        font-size: 2.8em;
    }

 }

/* ipad landscape */
@media only screen and (max-height:770px) and (orientation : landscape) {
    .contact_mainText{
        font-size: 2.8em;
    }
 
 }

@media (max-width:450px) {
    .contact_subText{
        font-size: 1.5em;
        margin: 0%;
        padding: 0;
    }
    .contact_mainText {
        font-size: 2.6em;
    }
}


.contactSection_img{
    height: 60%;
    margin: 20px;
    box-shadow: 2px 2px 4px #000000;
}

@media (max-width:850px) and (min-width:449px) {
    .contactSection_img{
        height: auto;
        width: 70%;
     }
}


@media (max-width:450px) {
    .contactSection_img{
       height: auto;
       width: 90%;
    }
}


.icon_info{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 10px auto;
}

.icon{
    height: 40px;
    margin-left: 20px;
    margin-right: 20px;
}
.contactInfo{
    font-size: 1.5em;
    position: relative;
    z-index: 2;
}

.freeEstimates{
    margin: 0;
    margin-left: 20px;
    margin-top: 30px;
    font-style: italic;
    font-family: sans-serif;
}

.ContactUsToday{
    font-size: 3em;
    color: #e3b931;
    margin: 0;
    margin-left: 20px;
}

@media (max-width:450px) {
    .ContactUsToday{
        font-size: 2em;
    }
}

.quickFAQs{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: 50px auto;
}

/* Initial state */
.quickFAQs {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Final state */
.quickFAQs.visible {
    opacity: 1;
    transform: translateY(0);
}


.answers{
    font-size: 2em;
    margin: 10px;
}
.questions{
    font-size: 1.5em;
    margin: 10px;  
    color: #715d18;
    margin-top: 0;
}

@media (max-width:450px) {

    .quickFAQs{
        text-align: center;
    }

    .answers{
        font-size: 1.5em;
    }
    .questions{
        font-size: 1em;
    }
}

.rightForYou_wrapper{
    background-color: #1b1a1a;
    width: 50%;
    height: fit-content;
    border-radius: 10px;
    color: #ffffff;
    margin: auto;
    padding: 20px;
    box-shadow: 2px 2px 4px #7a7a7a;
}

.rightForYou_title{
    color: #e3b931;
    font-size: 1.7em;
    margin: 5px;
    margin-bottom: 20px;
    margin-top: 20px;
}
.rightForYou_text{
    font-size: 1.2em;
    width: 80%;
    display: block;
    margin: auto;
    margin-bottom: 20px;
}


.standoutContactUs{
    font-weight: bold;
    color: #e3b931;
    cursor: pointer;
}


 /* ipad pro Portrait */
 @media only screen and (min-device-width: 1024px) 
 and (max-device-height: 1366px) 
 and (-webkit-min-device-pixel-ratio: 2)  
 and (orientation: portrait){
    .rightForYou_wrapper{
        height: auto;
        width: 75%;
     }

 }

@media (max-width:850px) and (min-width:449px) {
    .rightForYou_wrapper{
        height: auto;
        width: 70%;
     }
}

@media (max-width:450px) {
    .rightForYou_wrapper{
        width: 80%;
    }
}
.footer {
    width: 100%;
    height: 20vh;
    min-height: fit-content;
    display: flex;
    align-items: center;
    background-color: #1b1a1a;
    color: #ffffff;
    justify-content: space-evenly;
    position: relative;
    overflow: hidden;

    margin-top: 100px;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/bgImage.png'); 
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.05; 
    z-index: 1; 
}

.footerLogo{
    height: 90%;
    z-index: 2;
}