/* Default styles for mobile devices (up to 480px) */
@media only screen and (max-width: 480px) {
    .hero-section {
        position: relative;
        text-align: center;
    }
    .overlay-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 14px;
        width: 100%;
    }

    .services-container {
        display: flex;
        flex-wrap: wrap; /* Allow wrapping for responsiveness */
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
        width: 100%; /* Ensure full width */
    }

    .services-container img {
        margin: 10px auto; /* Add margin for spacing and center alignment */
        display: block; /* Ensure images are block-level for centering */
        width: 80%; /* Adjust width for smaller screens */
    }

    .projects-container img {
        height: 200px; /* Set a fixed height */
        width: auto; /* Maintain aspect ratio */
        object-fit: cover; /* Ensure the image fills the height */
        margin: 10px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
    }

    .customer-review-rating {
        transition: none; /* Disable transition for mobile view */
    }

    .customer-review-rating:hover {
        transition: none; /* Disable hover effect for mobile view */
    }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {

    .about-section {
        padding: 0;
        flex-direction: column;
        display: flex;
        align-items: center; /* Center child elements horizontally */
    }

    .about-img {
        width: 80%;
        height: auto;
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        margin-top: 80px;
    }

    .about-text-container {
        width: 90%;
        height: auto;
        font-size: 14px;
        padding-left: 0;
    }

    .about-title {
        font-size: 26px;
        padding-bottom: 10px;
    }

    .about-text span {
        font-size: 18px;
    }

    .services-container {
        justify-content: center;
        height: 100%;

    }

    .services-title {
        font-size: 26px;
    }

    .services-container img {
        width: 80%;
    }
    
    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 10px;
        width: 70%;
        bottom: 20px;
        left: 45px;
    }

    #service-div3 {
        bottom: 40px;   
    }

    .projects-section {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .projects-title {
        font-size: 26px;
    }

    .projects-text {
        width: 80%;
        padding: 0;
        margin: 0;
    }

    .projects-container {
        padding-top: 20px;
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .projects-container img {
        width: 85%; /* Set a fixed width */
        height: 180px; /* Maintain the fixed height */
        object-fit: cover; /* Ensure the image fills the dimensions */
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        transition: none; /* Disable transition for mobile view */
    }

    .projects-container img:hover {
        transform: scale(1.25/*1.05*/);
        filter: brightness(100%) sepia(0%);
        z-index: 1000;
    }

    .testimonials-section {
        height: auto;
    }

    .testimonials-title {
        font-size: 26px;
    }

    .testimonials-text {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
        font-size: 14px;
        padding-bottom: 5px;
    }

    .testimonials-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 20px;
    }

    .customer-review-rating {
        width: 80%;
        height: auto;
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating * {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating:hover {
        transition: none !important;
        transform: none !important;
        filter: none !important;
    }

    .contact-section {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact-title {
        font-size: 26px;
    }

    .contact-text {
        font-size: 14px;
        padding: 0;
        margin: 0 auto;
        width: 80%;
        padding-bottom: 20px;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
        padding-bottom: 40px;
        z-index: 2;
    }

    form {
        width: 80%;
        margin: 0 auto; /* Center the form horizontally */
    }

    .footer-logo {
        margin: 20px auto; /* Center the logo horizontally */
        margin-bottom: 10px;
        display: block; /* Ensure the logo is treated as a block element */
        width: 100%;
    }

    .footer-logo-container {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0;
    }

    .logo-subscribe-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .company-contact {
        width: 90%;
        margin: 0;
        font-size: 12px;
        text-align: center;
    }

    .subscribe-section {
        padding-top: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-left: 0;
        white-space: nowrap;
        padding-bottom: 40px;
        font-size: 14px;
    }

    .subscribe-section label {
        padding: 0;
    }

    .subscribe-section input[type="email"] {
        width: 80%;
        padding: 10px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-text {
        margin-bottom: 10px;
    }

    .social-media-icons {
        margin-bottom: 20px;
    }

    .footer-nav {
        width: 100%;
        justify-content: center;
        align-items: center;
        font-size: 8px;
    }

    .footer-nav li, a {
        margin: 3px;
    }

    .footer-accolades-section {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-accolade {
        max-width: 80%;
        width: 80%;
        margin: 20px auto;        
    }
    
    .footer-accolade i {
        font-size: 30px;
    }

    .footer-legal-section {
        font-size: 10px;
    }

    .footer-text-2 {
        margin-left: 5px;
        text-align: center;
    }

    .footer-legal-section a {
        white-space: nowrap;
    }

    .footer-legal-section span {
        font-size: 8px;
    }

}     


@media only screen and (min-width: 360px) and (max-width: 480px) {

    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 10px;
        width: 70%;
        bottom: 80px;
        left: 50px;
    }

    #service-div3 {
        bottom: 80px;   
    }

}

@media only screen and (min-width: 360px) and (max-width: 399px) {
    
    .hover-overlay-text, .hover-overlay-text2 {
        bottom: 40px;
    }

    #service-div3 {
        bottom: 60px;   
    }
}

@media only screen and (min-width: 400px) and (max-width: 429px) {
    
    .hover-overlay-text, .hover-overlay-text2 {
        bottom: 60px;
        left: 60px;
    }

    #service-div3 {
        bottom: 70px;   
    }
}

@media only screen and (min-width: 430px) and (max-width: 459px) {
        
        .hover-overlay-text, .hover-overlay-text2 {
            bottom: 70px;
            left: 65px;
        }
    
        #service-div3 {
            bottom: 70px;   
        }
}

@media only screen and (min-width: 460px) and (max-width: 480px) {
    
    .hover-overlay-text, .hover-overlay-text2 {
        bottom: 70px;
        left: 75px;
    }

    #service-div3 {
        bottom: 80px;   
    }
}


/* Extra small devices (phones, 481px and up) */
@media only screen and (min-width: 481px) and (max-width: /*576*/599px) {
    
    .overlay-text {
        font-size: 16px;
        width: 75%;
    }
    
    .about-section {
        padding: 0;
        flex-direction: column;
        display: flex;
        justify-content: center; /* Center child elements horizontally */
        align-items: center;
        height: 100%;
    }

    .about-img {
        width: 80%;
        height: auto;
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        margin-top: 60px;
    }

    .about-text-container {
        width: 80%;
        height: auto;
        font-size: 16px;
        padding-left: 0;    
        padding-bottom: 40px;
    }

    .services-container {
        justify-content: center;
        height: 100%;
        width: 100%;
        
    }

    .services-title {
        font-size: 26px;
    }

    
    .services-container img {
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        width: 80%;
    }
    
    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 14px;
        width: 70%;
        bottom: 100px;
        left: 80px;
    }

    #service-div3 {
        bottom: 100px;   
    }

    .projects-section {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .projects-title {
        font-size: 28px;
        padding-bottom: 10px;
    }

    .projects-text {
        width: 80%;
        padding: 0;
        margin: 0;
    }
    .projects-container {
        padding-top: 20px;
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .projects-container img {
        width: 85%; /* Set a fixed width */
        height: 220px; /* Maintain the fixed height */
        object-fit: cover; /* Ensure the image fills the dimensions */
        margin: 40px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        transition: none; /* Disable transition for mobile view */
    }
    .projects-container img:hover {
        transform: scale(1.25/*1.05*/);
        filter: brightness(100%) sepia(0%);
        z-index: 1000;
    }

    .testimonials-section {
        height: auto;
    }

    .testimonials-title {
        font-size: 26px;
    }

    .testimonials-text {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
        font-size: 16px;
        padding-bottom: 5px;
    }

    .testimonials-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 20px;
        
    }

    .customer-review-rating {
        width: 70%;
        height: 380px;
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating * {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating:hover {
        transition: none !important;
        transform: none !important;
        filter: none !important;
    }

    .contact-section {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact-title {
        font-size: 26px;
    }

    .contact-text {
        font-size: 14px;
        padding: 0;
        margin: 0 auto;
        width: 70%;
        padding-bottom: 20px;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
        padding-bottom: 40px;
        z-index: 2;
    }

    form {
        width: 80%;
        margin: 0 auto; /* Center the form horizontally */
    }

    .footer-logo {
        margin: 20px auto; /* Center the logo horizontally */
        margin-bottom: 10px;
        display: block; /* Ensure the logo is treated as a block element */
        width: 80%;
    }

    .footer-logo-container {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0;
    }

    .logo-subscribe-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .company-contact {
        width: 90%;
        margin: 0;
        font-size: 16px;
        text-align: center;
    }

    .subscribe-section {
        padding-top: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-left: 0;
        white-space: nowrap;
        padding-bottom: 50px;
        font-size: 16px;
    }

    .subscribe-section label {
        padding: 0;
    }

    .subscribe-section input[type="email"] {
        width: 70%;
        padding: 10px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-text {
        margin-bottom: 10px;
    }

    .social-media-icons {
        margin-bottom: 20px;
    }

    .footer-nav {
        width: 100%;
        justify-content: center;
        align-items: center;
        font-size: 12px;
    }

    .footer-nav li, a {
        margin: 5px;
    }

    .footer-accolades-section {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 20px;
    }

    .footer-accolade {
        max-width: 80%;
        width: 60%;
        margin: 20px auto;        
    }
    
    .footer-accolade i {
        font-size: 32px;
    }

    .footer-legal-section {
        font-size: 10px;
    }

    .footer-text-2 {
        margin-left: 5px;
        text-align: center;
    }

    .footer-legal-section a {
        white-space: nowrap;
    }

    .footer-legal-section span {
        font-size: 12px;
    }
}

@media only screen and (min-width: 524px) and (max-width: 539px) {
    
    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 14px;
        width: 70%;
        bottom: 100px;
        left: 85px;
    }

    #service-div3 {
        bottom: 100px;   
    }
}

@media only screen and (min-width: 540px) and (max-width: 600px) {
    
    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 14px;
        width: 70%;
        bottom: 120px;
        left: 90px;
    }

    #service-div3 {
        bottom: 120px;   
    }
}

@media only screen and (min-width: 600px) and (max-width: 766px) {
        
    .overlay-text {
        font-size: 16px;
        width: 75%;
    }
    
    .about-section {
        padding: 0;
        flex-direction: column;
        display: flex;
        justify-content: center; /* Center child elements horizontally */
        align-items: center;
        height: 100%;
    }

    .about-img {
        width: 80%;
        height: auto;
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        margin-top: 60px;
    }

    .about-text-container {
        width: 80%;
        height: auto;
        font-size: 16px;
        padding-left: 0;    
        padding-bottom: 40px;
    }

    .services-container {
        justify-content: center;
        height: 100%;
        width: 100%;
        
    }

    .services-title {
        font-size: 30px;
    }

    
    .services-container img {
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        width: 70%;
    }
    
    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 14px;
        width: 70%;
        bottom: 120px;
        left: 95px;
    }

    #service-div3 {
        bottom: 120px;   
    }

    .projects-section {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .projects-title {
        font-size: 30px;
        padding-bottom: 10px;
    }

    .projects-text {
        width: 70%;
        padding: 0;
        margin: 0;
    }
    .projects-container {
        padding-top: 20px;
        width: 90%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .projects-container img {
        width: 40%; /* Set a fixed width */
        height: 160px; /* Maintain the fixed height */
        object-fit: cover; /* Ensure the image fills the dimensions */
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        transition: none; /* Disable transition for mobile view */
    }
    .projects-container img:hover {
        transform: scale(1.40/*1.05*/);
        filter: brightness(100%) sepia(0%);
        z-index: 1000;
    }

    .testimonials-section {
        height: auto;
    }

    .testimonials-title {
        font-size: 26px;
    }

    .testimonials-text {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
        font-size: 18px;
        padding-bottom: 5px;
    }

    .testimonials-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 20px;
        
    }

    .customer-review-rating {
        width: 60%;
        height: 380px;
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating * {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating:hover {
        transition: none !important;
        transform: none !important;
        filter: none !important;
    }

    .contact-section {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact-title {
        font-size: 30px;
    }

    .contact-text {
        font-size: 14px;
        padding: 0;
        margin: 0 auto;
        width: 60%;
        padding-bottom: 20px;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
        padding-bottom: 40px;
        z-index: 2;
    }

    form {
        width: 70%;
        margin: 0 auto; /* Center the form horizontally */
    }

    .footer-logo {
        margin: 20px auto; /* Center the logo horizontally */
        margin-bottom: 10px;
        display: block; /* Ensure the logo is treated as a block element */
        width: 70%;
    }

    .footer-logo-container {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0;
    }

    .logo-subscribe-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .company-contact {
        width: 90%;
        margin: 0;
        font-size: 14px;
        text-align: center;
    }

    .subscribe-section {
        padding-top: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-left: 0;
        white-space: nowrap;
        padding-bottom: 50px;
        font-size: 16px;
    }

    .subscribe-section label {
        padding: 0;
    }

    .subscribe-section input[type="email"] {
        width: 60%;
        padding: 10px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-text {
        margin-bottom: 10px;
    }

    .social-media-icons {
        margin-bottom: 20px;
    }

    .footer-nav {
        width: 100%;
        justify-content: center;
        align-items: center;
        font-size: 14px;
    }

    .footer-nav li, a {
        margin: 7px;
    }

    .footer-accolades-section {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 20px;
    }

    .footer-accolade {
        max-width: 70%;
        width: 50%;
        margin: 20px auto;        
    }
    
    .footer-accolade i {
        font-size: 34px;
    }

    .footer-legal-section {
        font-size: 12px;
    }

    .footer-text-2 {
        margin-left: 5px;
        text-align: center;
    }

    .footer-legal-section a {
        white-space: nowrap;
    }

    .footer-legal-section span {
        font-size: 12px;
    }

}

@media only screen and (min-width: 631px) and (max-width: 670px) {

    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 14px;
        width: 65%;
        bottom: 120px;
        left: 115px;
    }

    #service-div3 {
        bottom: 120px;   
    }    

}

@media only screen and (min-width: 671px) and (max-width: 700px) {

    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 14px;
        width: 65%;
        bottom: 125px;
        left: 125px;
    }

    #service-div3 {
        bottom: 125px;   
    }    

}

@media only screen and (min-width: 705px) and (max-width: 766px) {

    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 14px;
        width: 65%;
        bottom: 130px;
        left: 135px;
    }

    #service-div3 {
        bottom: 130px;   
    }    

    .footer-logo {
        width: 60%;
    }

}

@media only screen and (min-width: 767px) and (max-width: 899px) {

    .overlay-text {
        font-size: 16px;
        width: 75%;
    }
    
    .about-section {
        padding: 0;
        flex-direction: column;
        display: flex;
        justify-content: center; /* Center child elements horizontally */
        align-items: center;
        height: 100%;
    }

    .about-img {
        width: 60%;
        height: auto;
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        margin-top: 60px;
    }

    .about-text-container {
        width: 60%;
        height: auto;
        font-size: 16px;
        padding-left: 0;    
        padding-bottom: 40px;
    }

    .services-container {
        justify-content: center;
        height: 100%;
        width: 100%;
        
    }

    .services-title {
        font-size: 32px;
    }

    
    .services-container img {
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        width: 60%;
       
    }
    
    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 14px;
        width: 60%;
        bottom: 120px;
        left: 160px;
    }

    #service-div3 {
        bottom: 120px;   
    }

    .projects-section {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .projects-title {
        font-size: 30px;
        padding-bottom: 10px;
    }

    .projects-text {
        width: 60%;
        padding: 0;
        margin: 0;
    }
    .projects-container {
        padding-top: 20px;
        width: 90%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .projects-container img {
        width: 40%; /* Set a fixed width */
        height: 180px; /* Maintain the fixed height */
        object-fit: cover; /* Ensure the image fills the dimensions */
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        transition: none; /* Disable transition for mobile view */
    }
    .projects-container img:hover {
        transform: scale(1.40/*1.05*/);
        filter: brightness(100%) sepia(0%);
        z-index: 1000;
    }

    .testimonials-section {
        height: auto;
    }

    .testimonials-title {
        font-size: 30px;
    }

    .testimonials-text {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
        font-size: 20px;
        padding-bottom: 5px;
    }

    .testimonials-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap; /* Allow wrapping for responsiveness */
        justify-content: center;
        align-items: center;
        padding-bottom: 20px;
        
    }

    .customer-review-rating {
        width: 42%;
        height: 380px;
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating * {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating:hover {
        transition: none !important;
        transform: none !important;
        filter: none !important;
    }

    .contact-section {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact-title {
        font-size: 30px;
    }

    .contact-text {
        font-size: 14px;
        padding: 0;
        margin: 0 auto;
        width: 50%;
        padding-bottom: 60px;
        padding-top: 20px;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
        padding-bottom: 40px;
        z-index: 2;
    }

    form {
        width: 70%;
        margin: 0 auto; /* Center the form horizontally */
    }

    .footer-logo {
        margin: 20px auto; /* Center the logo horizontally */
        margin-bottom: 10px;
        display: block; /* Ensure the logo is treated as a block element */
        width: 60%;
    }

    .footer-logo-container {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0;
    }

    .logo-subscribe-section {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-bottom: 40px;
    }

    .company-contact {
        width: 50%;
        margin: 0;
        font-size: 14px;
        text-align: left;
    }

    .subscribe-section {
        padding-top: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-left: 20px;
        white-space: nowrap;
        padding-bottom: 50px;
        font-size: 16px;
    }

    .subscribe-section label {
        padding: 0;
    }

    .subscribe-section input[type="email"] {
        width: 60%;
        padding: 10px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-text {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .social-media-icons {
        margin-bottom: 20px;
    }

    .footer-nav {
        width: 100%;
        justify-content: center;
        align-items: center;
        font-size: 16px;
    }

    .footer-nav li, a {
        margin: 10px;
    }

    .footer-accolades-section {
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 20px;
    }

    .footer-accolade {
        max-width: 70%;
        width: 40%;
        margin: 20px auto;  
        text-align: left;   
        padding-top: 20px;
        font-weight: 400;
        line-height: 1.3;
        height: 200px;
    }
    
    .footer-accolade i {
        font-size: 38px;
    }

    .footer-legal-section {
        font-size: 12px;
    }

    .footer-text-2 {
        margin-left: 5px;
        text-align: center;
    }

    .footer-legal-section a {
        white-space: nowrap;
    }

    .footer-legal-section span {
        font-size: 14px;
    }

}

@media only screen and (min-width: 805px) and (max-width: 859px) {

    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 14px;
        width: 60%;
        bottom: 140px;
        left: 170px;
    }

    #service-div3 {
        bottom: 140px;   
    }

}

@media only screen and (min-width: 860px) and (max-width: 899px) {

    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 14px;
        width: 60%;
        bottom: 150px;
        left: 180px;
    }

    #service-div3 {
        bottom: 150px;   
    }

}

@media only screen and (min-width: 900px) and (max-width: 1020px) {

    .overlay-text {
        font-size: 16px;
        width: 75%;
    }
    
    .about-section {
        padding: 0;
        flex-direction: column;
        display: flex;
        justify-content: center; /* Center child elements horizontally */
        align-items: center;
        height: 100%;
    }

    .about-img {
        width: 50%;
        height: auto;
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        margin-top: 60px;
    }

    .about-text-container {
        width: 50%;
        height: auto;
        font-size: 16px;
        padding-left: 0;    
        padding-bottom: 40px;
    }

    .services-container {
        justify-content: center;
        height: 100%;
        width: 100%;
        
    }

    .services-title {
        font-size: 32px;
    }

    
    .services-container img {
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        width: 60%;
       
    }
    
    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 14px;
        width: 50%;
        bottom: 160px;
        left: 230px;
    }

    #service-div3 {
        bottom: 160px;   
    }

    .projects-section {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .projects-title {
        font-size: 30px;
        padding-bottom: 10px;
    }

    .projects-text {
        width: 60%;
        padding: 0;
        margin: 0;
    }
    .projects-container {
        padding-top: 20px;
        width: 90%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .projects-container img {
        width: 40%; /* Set a fixed width */
        height: 220px; /* Maintain the fixed height */
        object-fit: cover; /* Ensure the image fills the dimensions */
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        transition: none; /* Disable transition for mobile view */
    }
    .projects-container img:hover {
        transform: scale(1.40/*1.05*/);
        filter: brightness(100%) sepia(0%);
        z-index: 1000;
    }

    .testimonials-section {
        height: auto;
    }

    .testimonials-title {
        font-size: 32px;
    }

    .testimonials-text {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
        font-size: 20px;
        padding-bottom: 5px;
    }

    .testimonials-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap; /* Allow wrapping for responsiveness */
        justify-content: center;
        align-items: center;
        padding-bottom: 20px;
        
    }

    .customer-review-rating {
        width: 42%;
        height: 380px;
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating * {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating:hover {
        transition: none !important;
        transform: none !important;
        filter: none !important;
    }

    .contact-section {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-text {
        font-size: 16px;
        padding: 0;
        margin: 0 auto;
        width: 50%;
        padding-bottom: 60px;
        padding-top: 20px;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
        padding-bottom: 40px;
        z-index: 2;
    }

    form {
        width: 80%;
        margin: 0 auto; /* Center the form horizontally */
    }

    .footer-logo {
        margin: 20px auto; /* Center the logo horizontally */
        margin-bottom: 10px;
        display: block; /* Ensure the logo is treated as a block element */
        width: 60%;
    }

    .footer-logo-container {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0;
    }

    .logo-subscribe-section {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-bottom: 40px;
    }

    .company-contact {
        width: 50%;
        margin: 0;
        font-size: 14px;
        text-align: left;
    }

    .subscribe-section {
        padding-top: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-left: 0px;
        white-space: nowrap;
        padding-bottom: 50px;
        font-size: 16px;
        padding-right: 10px;
    }

    .subscribe-section label {
        padding: 0;
    }

    .subscribe-section input[type="email"] {
        width: 70%;
        padding: 10px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-text {
        margin-bottom: 10px;
        font-size: 20px;
    }

    .social-media-icons {
        margin-bottom: 20px;
        font-size: 28px;
    }

    .footer-nav {
        width: 100%;
        justify-content: center;
        align-items: center;
        font-size: 18px;
    }

    .footer-nav li, a {
        margin: 15px;
    }

    .footer-accolades-section {
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 20px;
    }

    .footer-accolade {
        max-width: 70%;
        width: 40%;
        margin: 20px auto;  
        text-align: left;   
        padding-top: 20px;
        font-weight: bold;
        line-height: 1.3;
        height: 200px;
    }
    
    .footer-accolade i {
        font-size: 38px;
    }

    .footer-legal-section {
        font-size: 14px;
    }

    .footer-text-2 {
        margin-left: 5px;
        text-align: center;
    }

    .footer-legal-section a {
        white-space: nowrap;
    }

    .footer-legal-section span {
        font-size: 14px;
    }


}

@media only screen and (min-width: 949px) and (max-width: 982px) {
    
        .hover-overlay-text, .hover-overlay-text2 {
            flex-direction: column;
            font-size: 14px;
            width: 50%;
            bottom: 170px;
            left: 245px;
        }
    
        #service-div3 {
            bottom: 170px;   
        }
}

@media only screen and (min-width: 983px) and (max-width: 1020px) {
    
    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 14px;
        width: 50%;
        bottom: 180px;
        left: 255px;
    }

    #service-div3 {
        bottom: 180px;   
    }
}

@media only screen and (min-width: 1021px) and (max-width: 1279px) and (orientation: portrait) {

    .about-img {
        width: 40%;
        height: auto;
    }

    .about-text-container {
        width: 40%;
        height: auto;
        font-size: 14px;
        padding-left: 0;    
        padding-bottom: 40px;
    }

    .services-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        height: 100vh;
        width: 100%;
    }

    .services-title {
        font-size: 32px;
        padding-bottom: 20px;
    }

    
    .services-container img {
        /*margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */*/
        width: 40%;
        margin: 40px 40px;
       
    }
    
    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 12px;
        width: 70%;
        bottom: 280px;
        left: 70px;
    }

    #service-div3 {
        bottom: 280px;   
    }

    .projects-section {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .projects-title {
        font-size: 32px;
        padding-bottom: 10px;
    }

    .projects-text {
        width: 60%;
        padding: 0;
        margin: 0;
    }
    .projects-container {
        padding-top: 20px;
        width: 90%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .projects-container img {
        width: 27%; /* Set a fixed width */
        height: 200px; /* Maintain the fixed height */
        object-fit: cover; /* Ensure the image fills the dimensions */
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        transition: none; /* Disable transition for mobile view */
    }
    .projects-container img:hover {
        transform: scale(1.40/*1.05*/);
        filter: brightness(100%) sepia(0%);
        z-index: 1020;
    }
    
    .testimonials-section {
        height: auto;
    }

    .testimonials-title {
        font-size: 32px;
    }

    .testimonials-text {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
        font-size: 20px;
        padding-bottom: 5px;
    }

    .testimonials-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap; /* Allow wrapping for responsiveness */
        justify-content: center;
        align-items: center;
        padding-bottom: 20px;
        
    }

    .customer-review-rating {
        width: 42%;
        height: 380px;
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating * {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating:hover {
        transition: none !important;
        transform: none !important;
        filter: none !important;
    }

    .contact-section {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-text {
        font-size: 16px;
        padding: 0;
        margin: 0 auto;
        width: 70%;
        padding-bottom: 60px;
        padding-top: 20px;
    }

    .contact-container {
        display: flex;
        flex-direction: row;
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
        padding-bottom: 40px;
        z-index: 2;
    }

    form {
        width: 90%;
        margin: 20px 40px; /* Center the form horizontally */
    }

    .footer-logo {
        margin: 20px auto; /* Center the logo horizontally */
        margin-bottom: 10px;
        display: block; /* Ensure the logo is treated as a block element */
        width: 70%;
    }

    .footer-logo-container {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0;
    }

    .logo-subscribe-section {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-bottom: 40px;
    }

    .company-contact {
        width: 60%;
        margin: 0;
        font-size: 16px;
        text-align: left;
    }

    .subscribe-section {
        padding-top: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-left: 0px;
        white-space: nowrap;
        padding-bottom: 50px;
        font-size: 16px;
        padding-right: 90px;
    }

    .subscribe-section label {
        padding: 0;
    }

    .subscribe-section input[type="email"] {
        width: 70%;
        padding: 10px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-text {
        margin-bottom: 10px;
        font-size: 24px;
    }

    .social-media-icons {
        margin-bottom: 20px;
        font-size: 32px;
    }

    .footer-nav {
        width: 100%;
        justify-content: center;
        align-items: center;
        font-size: 18px;
    }

    .footer-nav li, a {
        margin: 20px;
    }

    .footer-accolades-section {
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 20px;
    }

    .footer-accolade {
        max-width: 70%;
        width: 20%;
        margin: 20px auto;  
        text-align: left;   
        padding-top: 20px;
        font-weight: bold;
        line-height: 1.3;
        height: 340px;
        margin-left: 35px;
    }
    
    .footer-accolade i {
        font-size: 38px;
    }

    .footer-legal-section {
        font-size: 14px;
    }

    .footer-text-2 {
        margin-left: 5px;
        text-align: center;
    }

    .footer-legal-section a {
        white-space: nowrap;
    }

    .footer-legal-section span {
        font-size: 14px;
    }


}

@media only screen and (min-width: 1130px) and (max-width: 1199px) {

        
    .about-img {
        width: 45%;
        height: auto;
    }

    .about-text-container {
        width: 37%;
        height: auto;
        font-size: 14px;
        padding-left: 0;    
        padding-bottom: 40px;
    }

        .hover-overlay-text, .hover-overlay-text2 {
            flex-direction: column;
            font-size: 14px;
            width: 70%;
            bottom: 290px;
            left: 75px;
        }
    
        #service-div3 {
            bottom: 290px;   
        }

        .customer-review-rating {
            width: 40%;
            height: 380px;
            transition: none !important;
            transform: none !important;
            animation: none !important;
        }
        
        .customer-review-rating * {
            transition: none !important;
            transform: none !important;
            animation: none !important;
        }
        
        .customer-review-rating:hover {
            transition: none !important;
            transform: none !important;
            filter: none !important;
        }

}

@media only screen and (min-width: 1200px) and (max-width: 1279px) {

        
    .about-img {
        width: 45%;
        height: auto;
    }

    .about-text-container {
        width: 37%;
        height: auto;
        font-size: 14px;
        padding-left: 0;    
        padding-bottom: 40px;
    }

        .hover-overlay-text, .hover-overlay-text2 {
            flex-direction: column;
            font-size: 14px;
            width: 70%;
            bottom: 290px;
            left: 75px;
        }
    
        #service-div3 {
            bottom: 290px;   
        }

        .customer-review-rating {
            width: 37%;
            height: 380px;
            transition: none !important;
            transform: none !important;
            animation: none !important;
        }
        
        .customer-review-rating * {
            transition: none !important;
            transform: none !important;
            animation: none !important;
        }
        
        .customer-review-rating:hover {
            transition: none !important;
            transform: none !important;
            filter: none !important;
        }

}

@media only screen and (min-width: 1280px) and (max-width: 1440px) {

    .about-img {
        width: 40%;
        height: auto;
    }

    .about-text-container {
        width: 40%;
        height: auto;
        font-size: 14px;
        padding-left: 0;    
        padding-bottom: 40px;
    }

    .services-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        height: 100vh;
        width: 100%;
    }

    .services-title {
        font-size: 32px;
        padding-bottom: 20px;
    }

    
    .services-container img {
        /*margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */*/
        width: 40%;
        margin: 40px 40px;
       
    }
    
    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 12px;
        width: 70%;
        bottom: 280px;
        left: 80px;
    }

    #service-div3 {
        bottom: 280px;   
    }

    .projects-section {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .projects-title {
        font-size: 32px;
        padding-bottom: 10px;
    }

    .projects-text {
        width: 60%;
        padding: 0;
        margin: 0;
    }
    .projects-container {
        padding-top: 20px;
        width: 90%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .projects-container img {
        width: 27%; /* Set a fixed width */
        height: 200px; /* Maintain the fixed height */
        object-fit: cover; /* Ensure the image fills the dimensions */
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        transition: none; /* Disable transition for mobile view */
    }
    .projects-container img:hover {
        transform: scale(1.40/*1.05*/);
        filter: brightness(100%) sepia(0%);
        z-index: 1020;
    }
    
    .testimonials-section {
        height: auto;
    }

    .testimonials-title {
        font-size: 32px;
    }

    .testimonials-text {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
        font-size: 20px;
        padding-bottom: 5px;
    }

    .testimonials-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap; /* Allow wrapping for responsiveness */
        justify-content: center;
        align-items: center;
        padding-bottom: 20px;
        
    }

    .customer-review-rating {
        width: 21%;
        height: 420px;
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating * {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating:hover {
        transition: none !important;
        transform: none !important;
        filter: none !important;
    }

    .contact-section {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-text {
        font-size: 16px;
        padding: 0;
        margin: 0 auto;
        width: 70%;
        padding-bottom: 60px;
        padding-top: 20px;
    }

    .contact-container {
        display: flex;
        flex-direction: row;
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
        padding-bottom: 40px;
        z-index: 2;
    }

    form {
        width: 100%;
        margin: 20px 40px; /* Center the form horizontally */
    }

    .footer-logo {
        margin: 20px auto; /* Center the logo horizontally */
        margin-bottom: 10px;
        display: block; /* Ensure the logo is treated as a block element */
        width: 70%;
    }

    .footer-logo-container {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0;
    }

    .logo-subscribe-section {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-bottom: 40px;
    }

    .company-contact {
        width: 60%;
        margin: 0;
        font-size: 16px;
        text-align: left;
    }

    .subscribe-section {
        padding-top: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-left: 0px;
        white-space: nowrap;
        padding-bottom: 50px;
        font-size: 16px;
        padding-right: 180px;
    }

    .subscribe-section label {
        padding: 0;
    }

    .subscribe-section input[type="email"] {
        width: 70%;
        padding: 10px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-text {
        margin-bottom: 10px;
        font-size: 24px;
    }

    .social-media-icons {
        margin-bottom: 20px;
        font-size: 32px;
    }

    .footer-nav {
        width: 100%;
        justify-content: center;
        align-items: center;
        font-size: 18px;
    }

    .footer-nav li, a {
        margin: 20px;
    }

    .footer-accolades-section {
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 0px;
    }

    .footer-accolade {
        max-width: 70%;
        width: 20%;
        margin: 20px auto;  
        text-align: left;   
        padding-top: 20px;
        font-weight: bold;
        line-height: 1.3;
        height: auto;
        margin-left: 35px;
    }
    
    .footer-accolade i {
        font-size: 38px;
    }

    .footer-legal-section {
        font-size: 14px;
    }

    .footer-text-2 {
        margin-left: 5px;
        text-align: center;
    }

    .footer-legal-section a {
        white-space: nowrap;
    }

    .footer-legal-section span {
        font-size: 18px;
    }

}

@media only screen and (min-width: 1360px) and (max-width: 1440px) {

    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 12px;
        width: 70%;
        bottom: 280px;
        left: 90px;
    }

    #service-div3 {
        bottom: 280px;   
    }

    .contact-section {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-text {
        font-size: 16px;
        padding: 0;
        margin: 0 auto;
        width: 70%;
        padding-bottom: 60px;
        padding-top: 20px;
    }

    .contact-container {
        display: flex;
        flex-direction: row;
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
        padding-bottom: 40px;
        z-index: 2;
    }

    form {
        width: 120%;
        margin: 20px 40px; /* Center the form horizontally */
    }

    .footer-accolades-section {
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-accolade {
        max-width: 70%;
        width: 20%;
        margin: 20px auto;  
        text-align: left;   
        padding-top: 20px;
        font-weight: bold;
        line-height: 1.3;
        height: 280px;
        margin-left: 35px;
    }

}

@media only screen and (min-width: 1441px) {

    .about-img {
        width: 45%;
        height: auto;
    }

    .about-text-container {
        width: 40%;
        height: auto;
        font-size: 14px;
        padding-left: 0;    
        padding-bottom: 40px;
    }

    .services-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        height: 100vh;
        width: 100%;
    }

    .services-title {
        font-size: 32px;
        padding-bottom: 20px;
    }

    
    .services-container img {
        /*margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */*/
        width: 40%;
        margin: 40px 40px;
       
    }
    
    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 12px;
        width: 70%;
        bottom: 280px;
        left: 90px;
    }

    #service-div3 {
        bottom: 280px;   
    }

    .projects-section {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .projects-title {
        font-size: 32px;
        padding-bottom: 10px;
    }

    .projects-text {
        width: 60%;
        padding: 0;
        margin: 0;
    }
    .projects-container {
        padding-top: 20px;
        width: 90%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .projects-container img {
        width: 27%; /* Set a fixed width */
        height: 260px; /* Maintain the fixed height */
        object-fit: cover; /* Ensure the image fills the dimensions */
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        transition: none; /* Disable transition for mobile view */
    }
    .projects-container img:hover {
        transform: scale(1.40/*1.05*/);
        filter: brightness(100%) sepia(0%);
        z-index: 1020;
    }
    
    .testimonials-section {
        height: auto;
    }

    .testimonials-title {
        font-size: 32px;
    }

    .testimonials-text {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
        font-size: 20px;
        padding-bottom: 5px;
    }

    .testimonials-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap; /* Allow wrapping for responsiveness */
        justify-content: center;
        align-items: center;
        padding-bottom: 20px;
        
    }

    .customer-review-rating {
        width: 21%;
        height: 420px;
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating * {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating:hover {
        transition: none !important;
        transform: none !important;
        filter: none !important;
    }

    .contact-section {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-text {
        font-size: 16px;
        padding: 0;
        margin: 0 auto;
        width: 70%;
        padding-bottom: 60px;
        padding-top: 20px;
    }

    .contact-container {
        display: flex;
        flex-direction: row;
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
        padding-bottom: 40px;
        z-index: 2;
    }

    form {
        width: 100%;
        margin: 20px 40px; /* Center the form horizontally */
    }

    .footer-logo {
        margin: 20px auto; /* Center the logo horizontally */
        margin-bottom: 10px;
        display: block; /* Ensure the logo is treated as a block element */
        width: 70%;
    }

    .footer-logo-container {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0;
    }

    .logo-subscribe-section {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-bottom: 40px;
    }

    .company-contact {
        width: 60%;
        margin: 0;
        font-size: 16px;
        text-align: left;
    }

    .subscribe-section {
        padding-top: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-left: 0px;
        white-space: nowrap;
        padding-bottom: 50px;
        font-size: 16px;
        padding-right: 200px;
    }

    .subscribe-section label {
        padding: 0;
    }

    .subscribe-section input[type="email"] {
        width: 70%;
        padding: 10px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-text {
        margin-bottom: 10px;
        font-size: 24px;
    }

    .social-media-icons {
        margin-bottom: 20px;
        font-size: 32px;
    }

    .footer-nav {
        width: 100%;
        justify-content: center;
        align-items: center;
        font-size: 18px;
    }

    .footer-nav li, a {
        margin: 20px;
    }

    .footer-accolades-section {
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 20px;
    }

    .footer-accolade {
        max-width: 70%;
        width: 20%;
        margin: 20px auto;  
        text-align: left;   
        padding-top: 20px;
        font-weight: bold;
        line-height: 1.3;
        height: auto;
        margin-left: 35px;
    }
    
    .footer-accolade i {
        font-size: 38px;
    }

    .footer-legal-section {
        font-size: 14px;
    }

    .footer-text-2 {
        margin-left: 5px;
        text-align: center;
    }

    .footer-legal-section a {
        white-space: nowrap;
    }

    .footer-legal-section span {
        font-size: 18px;
    }

}

@media only screen and (min-width: 1023px) and (min-height: 1365px) {

    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 12px;
        width: 70%;
        bottom: 460px;
        left: 75px;
    }

    #service-div3 {
        bottom: 460px;   
    }

    .customer-review-rating {
        width: 37%;
        height: 420px;
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating * {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating:hover {
        transition: none !important;
        transform: none !important;
        filter: none !important;
    }

}

@media only screen and (min-width: 1365px) and (min-height: 767px) {

    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 12px;
        width: 70%;
        bottom: 180px;
        left: 90px;
    }

    #service-div3 {
        bottom: 180px;   
    }

    .testimonials-section {
        height: auto;
    }

    .testimonials-container {
        padding-bottom: 0px;
    }
}

@media only screen and (max-width: 786px) and (orientation: landscape) {

    .contact-section {
        padding-top: 20px;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-text {
        font-size: 16px;
        padding: 0;
        margin: 0 auto;
        width: 70%;
        padding-bottom: 60px;
        padding-top: 20px;
    }

    .contact-container {
        display: flex;
        flex-direction: row;
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
        padding-bottom: 40px;
        z-index: 2;
    }

    form {
        width: 100%;
        height: 400px;
        margin: 20px 40px; /* Center the form horizontally */
    }

}

@media only screen and (max-width: 820px) and (orientation: landscape) {

    .about-img {
        width: 40%;
        height: auto;
    }

    .about-text-container {
        width: 40%;
        height: auto;
        font-size: 14px;
        padding-left: 0;    
        padding-bottom: 40px;
    }

    .services-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        height: 100vh;
        width: 100%;
    }

    .services-title {
        font-size: 32px;
        padding-bottom: 20px;
    }

    
    .services-container img {
        /*margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */*/
        width: 40%;
        margin: 40px 40px;
       
    }
    
    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 12px;
        width: 70%;
        bottom: 200px;
        left: 80px;
    }

    #service-div3 {
        bottom: 200px;   
    }

    .projects-section {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .projects-title {
        font-size: 32px;
        padding-bottom: 10px;
    }

    .projects-text {
        width: 60%;
        padding: 0;
        margin: 0;
    }
    .projects-container {
        padding-top: 20px;
        width: 90%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .projects-container img {
        width: 27%; /* Set a fixed width */
        height: 200px; /* Maintain the fixed height */
        object-fit: cover; /* Ensure the image fills the dimensions */
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        transition: none; /* Disable transition for mobile view */
    }
    .projects-container img:hover {
        transform: scale(1.40/*1.05*/);
        filter: brightness(100%) sepia(0%);
        z-index: 1020;
    }
    
    .testimonials-section {
        height: auto;
    }

    .testimonials-title {
        font-size: 32px;
    }

    .testimonials-text {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
        font-size: 20px;
        padding-bottom: 5px;
    }

    .testimonials-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap; /* Allow wrapping for responsiveness */
        justify-content: center;
        align-items: center;
        padding-bottom: 20px;
        
    }

    .customer-review-rating {
        width: 38%;
        height: 380px;
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating * {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating:hover {
        transition: none !important;
        transform: none !important;
        filter: none !important;
    }

    .contact-section {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-text {
        font-size: 16px;
        padding: 0;
        margin: 0 auto;
        width: 70%;
        padding-bottom: 60px;
        padding-top: 20px;
    }

    .contact-container {
        display: flex;
        flex-direction: row;
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
        padding-bottom: 40px;
        z-index: 2;
    }

    form {
        width: 90%;
        margin: 20px 40px; /* Center the form horizontally */
    }

    .footer-logo {
        margin: 20px auto; /* Center the logo horizontally */
        margin-bottom: 10px;
        display: block; /* Ensure the logo is treated as a block element */
        width: 70%;
    }

    .footer-logo-container {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0;
    }

    .logo-subscribe-section {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-bottom: 40px;
    }

    .company-contact {
        width: 60%;
        margin: 0;
        font-size: 16px;
        text-align: left;
    }

    .subscribe-section {
        padding-top: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-left: 0px;
        white-space: nowrap;
        padding-bottom: 50px;
        font-size: 16px;
        padding-right: 90px;
    }

    .subscribe-section label {
        padding: 0;
    }

    .subscribe-section input[type="email"] {
        width: 70%;
        padding: 10px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-text {
        margin-bottom: 10px;
        font-size: 24px;
    }

    .social-media-icons {
        margin-bottom: 20px;
        font-size: 32px;
    }

    .footer-nav {
        width: 100%;
        justify-content: center;
        align-items: center;
        font-size: 18px;
    }

    .footer-nav li, a {
        margin: 20px;
    }

    .footer-accolades-section {
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-accolade {
        max-width: 70%;
        width: 20%;
        margin: 20px auto;  
        text-align: left;   
        padding-top: 20px;
        font-weight: bold;
        line-height: 1.3;
        height: 340px;
        margin-left: 35px;
    }
    
    .footer-accolade i {
        font-size: 38px;
    }

    .footer-legal-section {
        font-size: 14px;
    }

    .footer-text-2 {
        margin-left: 5px;
        text-align: center;
    }

    .footer-legal-section a {
        white-space: nowrap;
    }

    .footer-legal-section span {
        font-size: 14px;
    }

} 

@media only screen and (min-width: 1365px) and (min-height: 1023px) and (orientation: landscape) {

    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 12px;
        width: 70%;
        bottom: 280px;
        left: 90px;
    }

    #service-div3 {
        bottom: 280px;   
    }

    .testimonials-section {
        height: auto;
    }

    .testimonials-container {
        padding-bottom: 0px;
    }
}

@media only screen and (max-width: 1194px) and (max-height: 834px) and (orientation: landscape) {

    .about-img {
        width: 40%;
        height: auto;
    }

    .about-text-container {
        width: 40%;
        height: auto;
        font-size: 14px;
        padding-left: 0;    
        padding-bottom: 40px;
    }

    .services-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        height: 100vh;
        width: 100%;
    }

    .services-title {
        font-size: 32px;
        padding-bottom: 20px;
    }

    
    .services-container img {
        /*margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */*/
        width: 40%;
        margin: 40px 40px;
       
    }
    
    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 12px;
        width: 70%;
        bottom: 200px;
        left: 70px;
    }

    #service-div3 {
        bottom: 200px;   
    }

    .projects-section {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .projects-title {
        font-size: 32px;
        padding-bottom: 10px;
    }

    .projects-text {
        width: 60%;
        padding: 0;
        margin: 0;
    }
    .projects-container {
        padding-top: 20px;
        width: 90%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .projects-container img {
        width: 27%; /* Set a fixed width */
        height: 200px; /* Maintain the fixed height */
        object-fit: cover; /* Ensure the image fills the dimensions */
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        transition: none; /* Disable transition for mobile view */
    }
    .projects-container img:hover {
        transform: scale(1.40/*1.05*/);
        filter: brightness(100%) sepia(0%);
        z-index: 1020;
    }
    
    .testimonials-section {
        height: auto;
    }

    .testimonials-title {
        font-size: 32px;
    }

    .testimonials-text {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
        font-size: 20px;
        padding-bottom: 5px;
    }

    .testimonials-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap; /* Allow wrapping for responsiveness */
        justify-content: center;
        align-items: center;
        padding-bottom: 20px;
        
    }

    .customer-review-rating {
        width: 42%;
        height: 380px;
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating * {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating:hover {
        transition: none !important;
        transform: none !important;
        filter: none !important;
    }

    .contact-section {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-text {
        font-size: 16px;
        padding: 0;
        margin: 0 auto;
        width: 70%;
        padding-bottom: 60px;
        padding-top: 20px;
    }

    .contact-container {
        display: flex;
        flex-direction: row;
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
        padding-bottom: 40px;
        z-index: 2;
    }

    form {
        width: 90%;
        margin: 20px 40px; /* Center the form horizontally */
    }

    .footer-logo {
        margin: 20px auto; /* Center the logo horizontally */
        margin-bottom: 10px;
        display: block; /* Ensure the logo is treated as a block element */
        width: 70%;
    }

    .footer-logo-container {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0;
    }

    .logo-subscribe-section {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-bottom: 40px;
    }

    .company-contact {
        width: 60%;
        margin: 0;
        font-size: 16px;
        text-align: left;
    }

    .subscribe-section {
        padding-top: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-left: 0px;
        white-space: nowrap;
        padding-bottom: 50px;
        font-size: 16px;
        padding-right: 90px;
    }

    .subscribe-section label {
        padding: 0;
    }

    .subscribe-section input[type="email"] {
        width: 70%;
        padding: 10px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-text {
        margin-bottom: 10px;
        font-size: 24px;
    }

    .social-media-icons {
        margin-bottom: 20px;
        font-size: 32px;
    }

    .footer-nav {
        width: 100%;
        justify-content: center;
        align-items: center;
        font-size: 18px;
    }

    .footer-nav li, a {
        margin: 20px;
    }

    .footer-accolades-section {
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-accolade {
        max-width: 70%;
        width: 20%;
        margin: 20px auto;  
        text-align: left;   
        padding-top: 20px;
        font-weight: bold;
        line-height: 1.3;
        height: 340px;
        margin-left: 35px;
    }
    
    .footer-accolade i {
        font-size: 38px;
    }

    .footer-legal-section {
        font-size: 14px;
    }

    .footer-text-2 {
        margin-left: 5px;
        text-align: center;
    }

    .footer-legal-section a {
        white-space: nowrap;
    }

    .footer-legal-section span {
        font-size: 14px;
    }


}

@media only screen and (max-width: 786px) and (orientation: landscape) {

    .contact-section {
        padding-top: 20px;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-text {
        font-size: 16px;
        padding: 0;
        margin: 0 auto;
        width: 70%;
        padding-bottom: 60px;
        padding-top: 20px;
    }

    .contact-container {
        display: flex;
        flex-direction: row;
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
        padding-bottom: 40px;
        z-index: 2;
    }

    form {
        width: 100%;
        height: 400px;
        margin: 20px 40px; /* Center the form horizontally */
    }

}

@media only screen and (max-width: 820px) and (orientation: landscape) {

    .about-img {
        width: 40%;
        height: auto;
    }

    .about-text-container {
        width: 40%;
        height: auto;
        font-size: 14px;
        padding-left: 0;    
        padding-bottom: 40px;
    }

    .services-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        height: 100vh;
        width: 100%;
    }

    .services-title {
        font-size: 32px;
        padding-bottom: 20px;
    }

    
    .services-container img {
        /*margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */*/
        width: 40%;
        margin: 40px 40px;
       
    }
    
    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 12px;
        width: 70%;
        bottom: 200px;
        left: 80px;
    }

    #service-div3 {
        bottom: 200px;   
    }

    .projects-section {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .projects-title {
        font-size: 32px;
        padding-bottom: 10px;
    }

    .projects-text {
        width: 60%;
        padding: 0;
        margin: 0;
    }
    .projects-container {
        padding-top: 20px;
        width: 90%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .projects-container img {
        width: 27%; /* Set a fixed width */
        height: 200px; /* Maintain the fixed height */
        object-fit: cover; /* Ensure the image fills the dimensions */
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        transition: none; /* Disable transition for mobile view */
    }
    .projects-container img:hover {
        transform: scale(1.40/*1.05*/);
        filter: brightness(100%) sepia(0%);
        z-index: 1020;
    }
    
    .testimonials-section {
        height: auto;
    }

    .testimonials-title {
        font-size: 32px;
    }

    .testimonials-text {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
        font-size: 20px;
        padding-bottom: 5px;
    }

    .testimonials-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap; /* Allow wrapping for responsiveness */
        justify-content: center;
        align-items: center;
        padding-bottom: 20px;
        
    }

    .customer-review-rating {
        width: 38%;
        height: 380px;
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating * {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating:hover {
        transition: none !important;
        transform: none !important;
        filter: none !important;
    }

    .contact-section {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-text {
        font-size: 16px;
        padding: 0;
        margin: 0 auto;
        width: 70%;
        padding-bottom: 60px;
        padding-top: 20px;
    }

    .contact-container {
        display: flex;
        flex-direction: row;
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
        padding-bottom: 40px;
        z-index: 2;
    }

    form {
        width: 90%;
        margin: 20px 40px; /* Center the form horizontally */
    }

    .footer-logo {
        margin: 20px auto; /* Center the logo horizontally */
        margin-bottom: 10px;
        display: block; /* Ensure the logo is treated as a block element */
        width: 70%;
    }

    .footer-logo-container {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0;
    }

    .logo-subscribe-section {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-bottom: 40px;
    }

    .company-contact {
        width: 60%;
        margin: 0;
        font-size: 16px;
        text-align: left;
    }

    .subscribe-section {
        padding-top: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-left: 0px;
        white-space: nowrap;
        padding-bottom: 50px;
        font-size: 16px;
        padding-right: 90px;
    }

    .subscribe-section label {
        padding: 0;
    }

    .subscribe-section input[type="email"] {
        width: 70%;
        padding: 10px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-text {
        margin-bottom: 10px;
        font-size: 24px;
    }

    .social-media-icons {
        margin-bottom: 20px;
        font-size: 32px;
    }

    .footer-nav {
        width: 100%;
        justify-content: center;
        align-items: center;
        font-size: 18px;
    }

    .footer-nav li, a {
        margin: 20px;
    }

    .footer-accolades-section {
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-accolade {
        max-width: 70%;
        width: 20%;
        margin: 20px auto;  
        text-align: left;   
        padding-top: 20px;
        font-weight: bold;
        line-height: 1.3;
        height: 340px;
        margin-left: 35px;
    }
    
    .footer-accolade i {
        font-size: 38px;
    }

    .footer-legal-section {
        font-size: 14px;
    }

    .footer-text-2 {
        margin-left: 5px;
        text-align: center;
    }

    .footer-legal-section a {
        white-space: nowrap;
    }

    .footer-legal-section span {
        font-size: 14px;
    }

} 

@media only screen and (max-width: 440px) and (orientation: landscape) {

    .overlay-text {
        font-size: 16px;
        width: 75%;
    }
    
    .about-section {
        padding: 0;
        flex-direction: row;
        display: flex;
        justify-content: center; /* Center child elements horizontally */
        align-items: center;
        height: 100%;
    }

    .about-img {
        width: 40%;
        height: auto;
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        margin-top: 60px;
    }

    .about-text-container {
        width: 40%;
        height: auto;
        font-size: 12px;
        padding-left: 0;    
        padding-bottom: 40px;
        padding-top: 20px;
        padding-right: 40px;
    }

    .services-container {
        justify-content: center;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: row;
    }

    .services-title {
        font-size: 32px;
    }

    
    .services-container img {
        /*margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        width: 40%;
        margin: 20px auto;
    }
    
    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 10px;
        width: 40%;
        bottom: 120px;
        left: 265px;
    }

    #service-div3 {
        bottom: 120px;   
    }

    .projects-section {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .projects-title {
        font-size: 30px;
        padding-bottom: 10px;
    }

    .projects-text {
        width: 60%;
        padding: 0;
        margin: 0;
    }
    .projects-container {
        padding-top: 20px;
        width: 90%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .projects-container img {
        width: 35%; /* Set a fixed width */
        height: 180px; /* Maintain the fixed height */
        object-fit: cover; /* Ensure the image fills the dimensions */
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        transition: none; /* Disable transition for mobile view */
    }
    .projects-container img:hover {
        transform: scale(1.40/*1.05*/);
        filter: brightness(100%) sepia(0%);
        z-index: 1000;
    }

    .testimonials-section {
        height: auto;
    }

    .testimonials-title {
        font-size: 30px;
    }

    .testimonials-text {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
        font-size: 20px;
        padding-bottom: 5px;
    }

    .testimonials-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap; /* Allow wrapping for responsiveness */
        justify-content: center;
        align-items: center;
        padding-bottom: 20px;
        
    }

    .customer-review-rating {
        width: 37%;
        height: 380px;
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating * {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating:hover {
        transition: none !important;
        transform: none !important;
        filter: none !important;
    }

    .contact-section {
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact-title {
        font-size: 30px;
    }

    .contact-text {
        font-size: 14px;
        padding: 0;
        margin: 0 auto;
        width: 50%;
        padding-bottom: 60px;
        padding-top: 20px;
    }

    .contact-container {
        display: flex;
        flex-direction: row;
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
        padding-bottom: 40px;
        z-index: 2;
        padding-top: 40px;
    }

    form {
        width: 90%;
        height: 400px;
        margin: 0 auto; /* Center the form horizontally */
    }

    .footer-logo {
        margin: 20px auto; /* Center the logo horizontally */
        margin-bottom: 10px;
        display: block; /* Ensure the logo is treated as a block element */
        width: 60%;
    }

    .footer-logo-container {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0;
    }

    .logo-subscribe-section {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-bottom: 40px;
    }

    .company-contact {
        width: 50%;
        margin: 0;
        font-size: 14px;
        text-align: left;
    }

    .subscribe-section {
        padding-top: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-left: 20px;
        white-space: nowrap;
        padding-bottom: 50px;
        font-size: 16px;
    }

    .subscribe-section label {
        padding: 0;
    }

    .subscribe-section input[type="email"] {
        width: 60%;
        padding: 10px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-text {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .social-media-icons {
        margin-bottom: 20px;
    }

    .footer-nav {
        width: 100%;
        justify-content: center;
        align-items: center;
        font-size: 16px;
    }

    .footer-nav li, a {
        margin: 10px;
    }

    .footer-accolades-section {
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 20px;
    }

    .footer-accolade {
        max-width: 70%;
        width: 20%;
        margin: 20px auto;  
        text-align: left;   
        padding-top: 20px;
        font-weight: 400;
        line-height: 1.3;
        height: 400px;
    }
    
    .footer-accolade i {
        font-size: 38px;
    }

    .footer-legal-section {
        font-size: 12px;
    }

    .footer-text-2 {
        margin-left: 5px;
        text-align: center;
    }

    .footer-legal-section a {
        white-space: nowrap;
    }

    .footer-legal-section span {
        font-size: 14px;
    }

}

@media only screen and (max-width: 360px) and (orientation: landscape) {

    .overlay-text {
        font-size: 16px;
        width: 75%;
    }
    
    .about-section {
        padding: 0;
        flex-direction: row;
        display: flex;
        justify-content: center; /* Center child elements horizontally */
        align-items: center;
        height: 100%;
    }

    .about-img {
        width: 40%;
        height: auto;
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        margin-top: 60px;
    }

    .about-text-container {
        width: 50%;
        height: auto;
        font-size: 10px;
        padding-left: 0;    
        padding-bottom: 40px;
        padding-top: 30px;
        padding-right: 40px;
    }

    .services-container {
        justify-content: center;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: row;
    }

    .services-title {
        font-size: 32px;
    }

    
    .services-container img {
        /*margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        width: 40%;
        margin: 20px auto;
    }
    
    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 10px;
        width: 40%;
        bottom: 80px;
        left: 220px;
    }

    #service-div3 {
        bottom: 80px;   
    }

    .projects-section {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .projects-title {
        font-size: 30px;
        padding-bottom: 10px;
    }

    .projects-text {
        width: 60%;
        padding: 0;
        margin: 0;
    }
    .projects-container {
        padding-top: 20px;
        width: 90%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .projects-container img {
        width: 35%; /* Set a fixed width */
        height: 160px; /* Maintain the fixed height */
        object-fit: cover; /* Ensure the image fills the dimensions */
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        transition: none; /* Disable transition for mobile view */
    }
    .projects-container img:hover {
        transform: scale(1.40/*1.05*/);
        filter: brightness(100%) sepia(0%);
        z-index: 1000;
    }

    .testimonials-section {
        height: auto;
    }

    .testimonials-title {
        font-size: 30px;
    }

    .testimonials-text {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
        font-size: 20px;
        padding-bottom: 5px;
    }

    .testimonials-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap; /* Allow wrapping for responsiveness */
        justify-content: center;
        align-items: center;
        padding-bottom: 20px;
        
    }

    .customer-review-rating {
        width: 37%;
        height: 420px;
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating * {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating:hover {
        transition: none !important;
        transform: none !important;
        filter: none !important;
    }

    .contact-section {
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact-title {
        font-size: 30px;
    }

    .contact-text {
        font-size: 14px;
        padding: 0;
        margin: 0 auto;
        width: 50%;
        padding-bottom: 60px;
        padding-top: 20px;
    }

    .contact-container {
        display: flex;
        flex-direction: row;
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
        padding-bottom: 40px;
        z-index: 2;
        padding-top: 30px;
        padding-right: 60px;
    }

    form {
        width: 70%;
        height: 400px;
        margin: 0 auto; /* Center the form horizontally */
    }

    .footer-logo {
        margin: 20px auto; /* Center the logo horizontally */
        margin-bottom: 10px;
        display: block; /* Ensure the logo is treated as a block element */
        width: 60%;
    }

    .footer-logo-container {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0;
    }

    .logo-subscribe-section {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-bottom: 40px;
    }

    .company-contact {
        width: 50%;
        margin: 0;
        font-size: 14px;
        text-align: left;
    }

    .subscribe-section {
        padding-top: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-left: 20px;
        white-space: nowrap;
        padding-bottom: 50px;
        font-size: 16px;
    }

    .subscribe-section label {
        padding: 0;
    }

    .subscribe-section input[type="email"] {
        width: 60%;
        padding: 10px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-text {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .social-media-icons {
        margin-bottom: 20px;
    }

    .footer-nav {
        width: 100%;
        justify-content: center;
        align-items: center;
        font-size: 16px;
    }

    .footer-nav li, a {
        margin: 10px;
    }

    .footer-accolades-section {
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 20px;
    }

    .footer-accolade {
        max-width: 70%;
        width: 20%;
        margin: 20px auto;  
        text-align: left;   
        padding-top: 20px;
        font-weight: 400;
        line-height: 1.3;
        height: 400px;
    }
    
    .footer-accolade i {
        font-size: 38px;
    }

    .footer-legal-section {
        font-size: 12px;
    }

    .footer-text-2 {
        margin-left: 5px;
        text-align: center;
    }

    .footer-legal-section a {
        white-space: nowrap;
    }

    .footer-legal-section span {
        font-size: 14px;
    }

}

@media only screen and (max-width: 640px) and (max-height: 360px) and (orientation: landscape) {

    .overlay-text {
        font-size: 16px;
        width: 75%;
    }
    
    .about-section {
        padding: 0;
        flex-direction: row;
        display: flex;
        justify-content: center; /* Center child elements horizontally */
        align-items: center;
        height: 100%;
    }

    .about-img {
        width: 40%;
        height: auto;
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        margin-top: 60px;
    }

    .about-text-container {
        width: 50%;
        height: auto;
        font-size: 10px;
        padding-left: 0;    
        padding-bottom: 40px;
        padding-top: 30px;
        padding-right: 40px;
    }

    .services-container {
        justify-content: center;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: row;
    }

    .services-title {
        font-size: 32px;
    }

    
    .services-container img {
        /*margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        width: 40%;
        margin: 20px auto;
    }
    
    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 10px;
        width: 40%;
        bottom: 40px;
        left: 195px;
    }

    #service-div3 {
        bottom: 40px;   
    }

    .projects-section {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .projects-title {
        font-size: 30px;
        padding-bottom: 10px;
    }

    .projects-text {
        width: 60%;
        padding: 0;
        margin: 0;
    }
    .projects-container {
        padding-top: 20px;
        width: 90%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .projects-container img {
        width: 35%; /* Set a fixed width */
        height: 160px; /* Maintain the fixed height */
        object-fit: cover; /* Ensure the image fills the dimensions */
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        transition: none; /* Disable transition for mobile view */
    }
    .projects-container img:hover {
        transform: scale(1.40/*1.05*/);
        filter: brightness(100%) sepia(0%);
        z-index: 1000;
    }

    .testimonials-section {
        height: auto;
    }

    .testimonials-title {
        font-size: 30px;
    }

    .testimonials-text {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
        font-size: 20px;
        padding-bottom: 5px;
    }

    .testimonials-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap; /* Allow wrapping for responsiveness */
        justify-content: center;
        align-items: center;
        padding-bottom: 20px;
        
    }

    .customer-review-rating {
        width: 42%;
        height: 400px;
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating * {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating:hover {
        transition: none !important;
        transform: none !important;
        filter: none !important;
    }

    .contact-section {
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact-title {
        font-size: 30px;
    }

    .contact-text {
        font-size: 14px;
        padding: 0;
        margin: 0 auto;
        width: 50%;
        padding-bottom: 60px;
        padding-top: 20px;
    }

    .contact-container {
        display: flex;
        flex-direction: row;
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
        padding-bottom: 40px;
        z-index: 2;
        padding-top: 30px;
        padding-right: 60px;
    }

    form {
        width: 70%;
        height: 400px;
        margin: 0 auto; /* Center the form horizontally */
    }

    .footer-logo {
        margin: 20px auto; /* Center the logo horizontally */
        margin-bottom: 10px;
        display: block; /* Ensure the logo is treated as a block element */
        width: 60%;
    }

    .footer-logo-container {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0;
    }

    .logo-subscribe-section {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-bottom: 40px;
    }

    .company-contact {
        width: 50%;
        margin: 0;
        font-size: 14px;
        text-align: left;
    }

    .subscribe-section {
        padding-top: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-left: 20px;
        white-space: nowrap;
        padding-bottom: 50px;
        font-size: 16px;
    }

    .subscribe-section label {
        padding: 0;
    }

    .subscribe-section input[type="email"] {
        width: 60%;
        padding: 10px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-text {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .social-media-icons {
        margin-bottom: 20px;
    }

    .footer-nav {
        width: 100%;
        justify-content: center;
        align-items: center;
        font-size: 16px;
    }

    .footer-nav li, a {
        margin: 10px;
    }

    .footer-accolades-section {
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 20px;
    }

    .footer-accolade {
        max-width: 70%;
        width: 40%;
        margin: 20px auto;  
        text-align: left;   
        padding-top: 20px;
        font-weight: 400;
        line-height: 1.3;
        height: auto;
    }
    
    .footer-accolade i {
        font-size: 38px;
    }

    .footer-legal-section {
        font-size: 12px;
    }

    .footer-text-2 {
        margin-left: 5px;
        text-align: center;
    }

    .footer-legal-section a {
        white-space: nowrap;
    }

    .footer-legal-section span {
        font-size: 14px;
    }

}

@media only screen and (max-width: 568px) and (max-height: /*576*/320px) and (orientation: landscape) {
    
    .overlay-text {
        font-size: 16px;
        width: 75%;
    }
    
    .about-section {
        padding: 0;
        flex-direction: row;
        display: flex;
        justify-content: center; /* Center child elements horizontally */
        align-items: center;
        height: 100%;
    }

    .about-img {
        width: 50%;
        height: auto;
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        margin-top: 60px;
    }

    .about-text-container {
        width: 40%;
        height: auto;
        font-size: 10px;
        padding-left: 0;    
        padding-bottom: 40px;
    }

    .services-container {
        justify-content: center;
        height: 100%;
        width: 100%;
        
    }

    .services-title {
        font-size: 26px;
    }

    
    .services-container img {
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        width: 60%;
    }
    
    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 14px;
        width: 50%;
        bottom: 60px;
        left: 150px;
    }

    #service-div3 {
        bottom: 60px;   
    }

    .projects-section {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .projects-title {
        font-size: 28px;
        padding-bottom: 10px;
    }

    .projects-text {
        width: 80%;
        padding: 0;
        margin: 0;
    }
    .projects-container {
        padding-top: 20px;
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .projects-container img {
        width: 65%; /* Set a fixed width */
        height: 220px; /* Maintain the fixed height */
        object-fit: cover; /* Ensure the image fills the dimensions */
        margin: 40px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        transition: none; /* Disable transition for mobile view */
    }
    .projects-container img:hover {
        transform: scale(1.25/*1.05*/);
        filter: brightness(100%) sepia(0%);
        z-index: 1000;
    }

    .testimonials-section {
        height: auto;
    }

    .testimonials-title {
        font-size: 26px;
    }

    .testimonials-text {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
        font-size: 16px;
        padding-bottom: 5px;
    }

    .testimonials-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 20px;
        
    }

    .customer-review-rating {
        width: 60%;
        height: 380px;
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating * {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating:hover {
        transition: none !important;
        transform: none !important;
        filter: none !important;
    }

    .contact-section {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .contact-title {
        font-size: 26px;
    }

    .contact-text {
        font-size: 14px;
        padding: 0;
        margin: 0 auto;
        width: 70%;
        padding-bottom: 20px;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
        padding-bottom: 40px;
        z-index: 2;
        padding-left: 60px;
    }

    form {
        width: 80%;
        margin: 0 auto; /* Center the form horizontally */
    }

    .footer-logo {
        margin: 20px auto; /* Center the logo horizontally */
        margin-bottom: 10px;
        display: block; /* Ensure the logo is treated as a block element */
        width: 80%;
    }

    .footer-logo-container {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0;
    }

    .logo-subscribe-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .company-contact {
        width: 90%;
        margin: 0;
        font-size: 16px;
        text-align: center;
    }

    .subscribe-section {
        padding-top: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-left: 0;
        white-space: nowrap;
        padding-bottom: 50px;
        font-size: 16px;
        margin-left: 100px;
    }

    .subscribe-section label {
        padding: 0;
    }

    .subscribe-section input[type="email"] {
        width: 70%;
        padding: 10px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-text {
        margin-bottom: 10px;
    }

    .social-media-icons {
        margin-bottom: 20px;
    }

    .footer-nav {
        width: 100%;
        justify-content: center;
        align-items: center;
        font-size: 12px;
    }

    .footer-nav li, a {
        margin: 5px;
    }

    .footer-accolades-section {
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 20px;
    }

    .footer-accolade {
        max-width: 80%;
        width: 40%;
        margin: 20px auto;        
    }
    
    .footer-accolade i {
        font-size: 32px;
    }

    .footer-legal-section {
        font-size: 10px;
    }

    .footer-text-2 {
        margin-left: 5px;
        text-align: center;
    }

    .footer-legal-section a {
        white-space: nowrap;
    }

    .footer-legal-section span {
        font-size: 12px;
    }
}

@media only screen and (max-width: 320px) and (max-height: 568px) and (orientation: portrait) {

    .about-section {
        padding: 0;
        flex-direction: column;
        display: flex;
        justify-content: center; /* Center child elements horizontally */
        align-items: center;
        height: 100%;
    }

    .about-img {
        width: 80%;
        height: auto;
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        margin-top: 60px;
    }

    .about-text-container {
        width: 80%;
        height: auto;
        font-size: 10px;
        padding-left: 0;    
        padding-bottom: 40px;
    }

    form {
        width: 90%;
        margin: 0 auto; /* Center the form horizontally */
        height: 400px;
    }

}

@media only screen and (max-width: 932px) and (max-height: 430px) and (orientation: landscape) {

    .services-container {
        justify-content: center;
        height: 100%;
        width: 100%;
        
    }

    .services-title {
        font-size: 26px;
    }

    
    .services-container img {
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        width: 40%;
    }
    
    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 14px;
        width: 40%;
        bottom: 90px;
        left: 270px;
    }

    #service-div3 {
        bottom: 90px;   
    }

    .contact-section {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact-container {
        padding-top: 40px;
        padding-right: 40px;
    }

    form {
        width: 70%;
        margin: 0 auto; /* Center the form horizontally */
        height: 400px;
    }

    .footer-nav li, a {
        margin: 10px;
    }

}

@media only screen and (max-width: 1600px) and (max-height: 773px) {

    .services-section {
        height: auto;
    }

    .services-container {
        height: auto;
    }

    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 14px;
        width: 70%;
        bottom: 160px;
        left: 100px;
    }

    #service-div3 {
        bottom: 160px;   
    }

    .testimonials-container {
        padding-bottom: 20px;
    }

    .contact-container {
        padding-top: 40px;
    }

    form {
        width: 100%;
        margin: 0 auto; /* Center the form horizontally */
        height: 600px;
    }
}

@media only screen and (max-width: 1920px) and (max-height: 1020px) {

    .services-section {
        height: auto;
    }

    .services-container {
        height: auto;
    }

    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 14px;
        width: 70%;
        bottom: 220px;
        left: 120px;
    }

    #service-div3 {
        bottom: 220px;   
    }

    .testimonials-container {
        padding-bottom: 20px;
    }

    .contact-container {
        padding-top: 40px;
    }

    .contact-text-container {
        margin-right: 200px;
    }

    form {
        width: 100%;
        margin: 0 auto; /* Center the form horizontally */
        height: 600px;
    }
}

@media only screen and (max-width: 1140px) and (max-height: 640px) and (orientation: landscape) {

    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 14px;
        width: 70%;
        bottom: 100px;
        left: 80px;
    }

    #service-div3 {
        bottom: 100px;   
    }

    .customer-review-rating {
        width: 30%;
        height: 380px;
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating * {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating:hover {
        transition: none !important;
        transform: none !important;
        filter: none !important;
    }

}

@media only screen and (max-width: 414px) and (max-height: 870px) {

    .hover-overlay-text, .hover-overlay-text2 {
        bottom: 40px;
        left: 70px;
    }

    #service-div3 {
        bottom: 60px;   
    }

    .contact-section {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact-title {
        font-size: 26px;
    }

    .contact-text {
        font-size: 14px;
        padding: 0;
        margin: 0 auto;
        width: 70%;
        padding-bottom: 20px;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
        padding-bottom: 40px;
        z-index: 2;
        padding-top: 0;
    }

    .contact-text-container {
        margin: 20px auto;
    }

    form {
        width: 80%;
        margin: 0 auto; /* Center the form horizontally */
        height: auto;
    }

    .footer-logo {
        margin: 20px auto; /* Center the logo horizontally */
        margin-bottom: 10px;
        display: block; /* Ensure the logo is treated as a block element */
        width: 80%;
    }
}

@media only screen and (max-width: 870px) and (max-height: 414px) and (orientation: landscape) {

    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 14px;
        width: 40%;
        bottom: 80px;
        left: 270px;
    }

    #service-div3 {
        bottom: 80px;   
    }

    .customer-review-rating {
        width: 40%;
        height: 420px;
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating * {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating:hover {
        transition: none !important;
        transform: none !important;
        filter: none !important;
    }

    .contact-section {
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .contact-title {
        font-size: 26px;
    }

    .contact-text {
        font-size: 14px;
        padding: 0;
        margin: 0 auto;
        width: 50%;
        padding-bottom: 20px;
    }

    .contact-text-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .contact-container {
        display: flex;
        flex-direction: row;
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
        padding-bottom: 40px;
        z-index: 2;
        margin-left: 20px;
    }
 
    form {
        width: 80%;
        margin: 0 auto; /* Center the form horizontally */
        padding: 0;
        margin: 0;
    }
}

@media only screen and (max-width: 440px) and (max-height: 800px) {
   
    .about-section {
        height: 100%;
        padding: 0;
        flex-direction: column;
        display: flex;
        align-items: center; /* Center child elements horizontally */
    }

    .about-img {
        width: 80%;
        height: auto;
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        margin-top: 40px;
    }

    .about-text-container {
        width: 80%;
        height: auto;
        font-size: 14px;
        padding-left: 0;
        display: flex;
        flex-direction: column;
        padding-bottom: 40px;
    }

    .about-title {
        font-size: 26px;
        padding-bottom: 10px;
    }

    .about-text {
        font-size: 10px;
    }

    .about-text span {
        font-size: 14px;
    }

    .services-container {
        justify-content: center;
        height: 100%;

    }

    .services-title {
        font-size: 26px;
    }

    .services-container img {
        width: 80%;
    }
    
    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 10px;
        width: 70%;
        bottom: 40px;
        left: 45px;
    }

    .hover-overlay-text2 span {
        font-size: 16px;
    }

    #service-div3 {
        bottom: 40px;   
    }

    .projects-section {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .projects-title {
        font-size: 26px;
    }

    .projects-text {
        width: 70%;
        padding: 0;
        margin: 0;
        font-size: 12px;
    }

    .projects-container {
        padding-top: 20px;
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .projects-container img {
        width: 85%; /* Set a fixed width */
        height: 180px; /* Maintain the fixed height */
        object-fit: cover; /* Ensure the image fills the dimensions */
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        transition: none; /* Disable transition for mobile view */
    }

    .projects-container img:hover {
        transform: scale(1.25/*1.05*/);
        filter: brightness(100%) sepia(0%);
        z-index: 1000;
    }

    .testimonials-section {
        height: auto;
    }

    .testimonials-title {
        font-size: 26px;
    }

    .testimonials-text {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
        font-size: 14px;
        padding-bottom: 5px;
    }

    .testimonials-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 20px;
    }

    .customer-review-rating {
        width: 80%;
        height: 400px;
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating * {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating:hover {
        transition: none !important;
        transform: none !important;
        filter: none !important;
    }

    .customer-review-rating img {
        width: 200px;
        height: auto;
    }

    .contact-section {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact-title {
        font-size: 26px;
    }

    .contact-text {
        font-size: 14px;
        padding: 0;
        margin: 0 auto;
        width: 80%;
        padding-bottom: 20px;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
        padding-bottom: 40px;
        z-index: 2;
    }

    form {
        width: 80%;
        margin: 0 auto; /* Center the form horizontally */
    }

    .footer-logo {
        margin: 20px auto; /* Center the logo horizontally */
        margin-bottom: 10px;
        display: block; /* Ensure the logo is treated as a block element */
        width: 100%;
    }

    .footer-logo-container {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0;
    }

    .logo-subscribe-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .company-contact {
        width: 90%;
        margin: 0;
        font-size: 12px;
        text-align: center;
    }

    .subscribe-section {
        padding-top: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-left: 0;
        white-space: nowrap;
        padding-bottom: 40px;
        font-size: 14px;
    }

    .subscribe-section label {
        padding: 0;
    }

    .subscribe-section input[type="email"] {
        width: 80%;
        padding: 10px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-text {
        margin-bottom: 10px;
    }

    .social-media-icons {
        margin-bottom: 20px;
    }

    .footer-nav {
        width: 100%;
        justify-content: center;
        align-items: center;
        font-size: 8px;
    }

    .footer-nav li, a {
        margin: 2px;
    }

    .footer-accolades-section {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .accolade-title {
        font-size: 14px;
    }

    .footer-accolade {
        max-width: 80%;
        width: 60%;
        margin: 20px auto;    
        font-size: 12px;    
    }
    
    .footer-accolade i {
        font-size: 20px;
    }

    .footer-legal-section {
        font-size: 8px;
    }

    .footer-text-2 {
        margin-left: 5px;
        text-align: center;
    }

    .footer-legal-section a {
        white-space: nowrap;
    }

    .footer-legal-section span {
        font-size: 8px;
    }

}

@media only screen and (min-width: 360px) and (max-width: 440px) and (min-height: 640px) and (max-height: 800px) {

    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 10px;
        width: 70%;
        bottom: 80px;
        left: 60px;
    }

    .hover-overlay-text2 span {
        font-size: 16px;
    }

    #service-div3 {
        bottom: 80px;   
    }
}

@media only screen and (min-width: 640px) and (max-width: 980px) and (min-height: 300px) and (max-height: 440px) and (orientation: landscape) {

    .overlay-text {
        font-size: 16px;
        width: 75%;
    }
    
    .about-section {
        padding: 0;
        flex-direction: row;
        display: flex;
        justify-content: center; /* Center child elements horizontally */
        align-items: center;
        height: 100%;
    }

    .about-img {
        width: 40%;
        height: auto;
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        margin-top: 60px;
    }

    .about-text-container {
        width: 50%;
        height: auto;
        font-size: 10px;
        padding-left: 0;    
        padding-bottom: 40px;
        padding-top: 30px;
        padding-right: 40px;
    }

    .services-container {
        justify-content: center;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: row;
    }

    .services-title {
        font-size: 32px;
    }

    
    .services-container img {
        /*margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        width: 40%;
        margin: 20px auto;
    }
    
    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 10px;
        width: 40%;
        bottom: 80px;
        left: 230px;
    }

    #service-div3 {
        bottom: 80px;   
    }

    .projects-section {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .projects-title {
        font-size: 30px;
        padding-bottom: 10px;
    }

    .projects-text {
        width: 60%;
        padding: 0;
        margin: 0;
    }
    .projects-container {
        padding-top: 20px;
        width: 90%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .projects-container img {
        width: 35%; /* Set a fixed width */
        height: 160px; /* Maintain the fixed height */
        object-fit: cover; /* Ensure the image fills the dimensions */
        margin: 20px auto; /* Center the image horizontally */
        display: block; /* Ensure the image is treated as a block element */
        transition: none; /* Disable transition for mobile view */
    }
    .projects-container img:hover {
        transform: scale(1.40/*1.05*/);
        filter: brightness(100%) sepia(0%);
        z-index: 1000;
    }

    .testimonials-section {
        height: auto;
    }

    .testimonials-title {
        font-size: 30px;
    }

    .testimonials-text {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
        font-size: 20px;
        padding-bottom: 5px;
    }

    .testimonials-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap; /* Allow wrapping for responsiveness */
        justify-content: center;
        align-items: center;
        padding-bottom: 20px;
        
    }

    .customer-review-rating {
        width: 42%;
        height: 400px;
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating * {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .customer-review-rating:hover {
        transition: none !important;
        transform: none !important;
        filter: none !important;
    }

    .contact-section {
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact-title {
        font-size: 26px;
    }

    .contact-text {
        font-size: 14px;
        padding: 0;
        margin: 0 auto;
        width: 50%;
        padding-bottom: 60px;
        padding-top: 20px;
    }

    .contact-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
        padding-bottom: 40px;
        z-index: 2;
    }

    .contact-text-container {
        margin: 20px auto;
    }

    form {
        width: 100%;
        height: 400px;
        margin: 0 auto; /* Center the form horizontally */
    }

    .footer-logo {
        margin: 20px auto; /* Center the logo horizontally */
        margin-bottom: 10px;
        display: block; /* Ensure the logo is treated as a block element */
        width: 60%;
    }

    .footer-logo-container {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0;
    }

    .logo-subscribe-section {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-bottom: 40px;
    }

    .company-contact {
        width: 50%;
        margin: 0;
        font-size: 14px;
        text-align: left;
    }

    .subscribe-section {
        padding-top: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-left: 20px;
        white-space: nowrap;
        padding-bottom: 50px;
        font-size: 16px;
    }

    .subscribe-section label {
        padding: 0;
    }

    .subscribe-section input[type="email"] {
        width: 60%;
        padding: 10px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-text {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .social-media-icons {
        margin-bottom: 20px;
    }

    .footer-nav {
        width: 100%;
        justify-content: center;
        align-items: center;
        font-size: 16px;
    }

    .footer-nav li, a {
        margin: 10px;
    }

    .footer-accolades-section {
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 20px;
    }

    .footer-accolade {
        max-width: 70%;
        width: 40%;
        margin: 20px auto;  
        text-align: left;   
        padding-top: 20px;
        font-weight: 400;
        line-height: 1.3;
        height: auto;
    }
    
    .footer-accolade i {
        font-size: 38px;
    }

    .footer-legal-section {
        font-size: 12px;
    }

    .footer-text-2 {
        margin-left: 5px;
        text-align: center;
    }

    .footer-legal-section a {
        white-space: nowrap;
    }

    .footer-legal-section span {
        font-size: 14px;
    }

}

@media only screen and (max-width: 980px) and (max-height: 412px) and (orientation: landscape) {

    .about-section {
        padding-bottom: 40px;
    }

    .hover-overlay-text, .hover-overlay-text2 {
        flex-direction: column;
        font-size: 10px;
        width: 35%;
        bottom: 120px;
        left: 320px;
    }

    #service-div3 {
        bottom: 120px;   
    }

    .contact-section {
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact-title {
        font-size: 26px;
    }

    .contact-text {
        font-size: 14px;
        padding: 0;
        margin: 0 auto;
        width: 50%;
        padding-bottom: 60px;
        padding-top: 20px;
    }

    .contact-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
        padding-bottom: 40px;
        z-index: 2;
        padding-right: 60px;
    }

    .contact-text-container {
        margin: 20px auto;
    }

    form {
        width: 50%;
        height: 400px;
        margin: 0 auto; /* Center the form horizontally */
    }


}

/* Extra small devices (phones, 481px to 768px) */
@media only screen and (min-width: 481px) and (max-width: 768px) {
    .overlay-text {
        font-size: 18px;
        width: 70%;
    }
}

/* Small devices (tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .overlay-text {
        font-size: 20px;
        width: 65%;
    }
}

/* Small devices (tablets, 768px to 991px) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .overlay-text {
        font-size: 22px;
        width: 60%;
    }
}

/* Medium devices (laptops, 992px and up) */
@media only screen and (min-width: 992px) {
    .overlay-text {
        font-size: 24px;
        width: 55%;
    }
}

/* Large devices (desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .overlay-text {
        font-size: 26px;
        width: 50%;
    }
}

/* Extra large devices (large desktops, 1400px and up) */
@media only screen and (min-width: 1400px) {
    .overlay-text {
        font-size: 28px;
        width: 45%;
    }
}

/* Laptop devices (769px to 1024px) */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .overlay-text {
        font-size: 20px;
        width: 60%;
    }
}

/* Large desktop devices (1025px and up) */
@media only screen and (min-width: 1025px) {
    .overlay-text {
        font-size: 24px;
        width: 50%;
    }
}

/* Landscape orientation for mobile devices */
@media only screen and (max-width: 768px) and (orientation: landscape) {
    .overlay-text {
        font-size: 16px;
        width: 70%;
    }
}

/* Print styles */
@media print {
    .overlay-text {
        font-size: 14px;
        width: 80%;
    }
}