*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    outline-style: none;
}

html {
    font-size: 12px;
    color: #000;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root{
    --txtaccent: #fff;
    --txtaccent1: #9D9D9F;
    --textaccent2: #73757E;
    --textaccent3: #484848;
    --txtaccent4: #000;
    --txtaccent5: #E5E5E5;
    --haccent: #FFCB0F;
    --haccent_withOpacity: rgba(255, 203, 15,0.6);
    --haccent2: #C79E23;
    --bgaccent: #1A1C27;
    --bgaccent_withOpacity: rgba(26, 28, 39,0.96);
    --contact: #28a745;
    --contact_hover: #218838;
}
.container{
    width: 95%;
    margin: 0px auto;
    padding: 0px;
}

.logo{
    width: 60px;
    height: 60px;
}

.logo-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px;
    padding: 0px;
    gap: 10px;
}

.logo-footer{
    width: 100px;
    height: 100px;
}

/* SECTION ZERO = LANDING VIEW */
#sec-0{
    background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)), url(../Images/banner.jpg) no-repeat top center/cover;
}
#sec-0 header.top {
    background-color: var(--haccent);
    font-size: 0.85rem;
    color: var(--txtaccent4);
    padding-top: 6px;
}
#sec-0 header.top .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
#sec-0 header.top p {
    display: flex;
    width: 45%;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0px;
}
#sec-0 header.top p:nth-of-type(2) {
    justify-content: flex-end;
}
#sec-0 .top p::before{
    font-family: fontAwesome;
    display: inline-flex;
    width: 2em;
    justify-content: center;
    font-size: 1.2em;
}
#sec-0 .top p:first-of-type::before{
    content: "\f3cd";
}
#sec-0 .top p:nth-of-type(2)::before{
    content: "\f0e0";
}

#sec-0 .top .social {
    display: flex;
    width: 45%;
    justify-content: flex-end;
    gap: 5px;
}
#sec-0 .top .social a{
    font-size: 1.2rem;
    display: inline-block;
    padding: 5px 0px 5px 5px;
    color: inherit;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}
#sec-0 .top .social a:hover{
    transform: scale(1.15);
}
#sec-0 .top .social a img{
    height: 1.2em;
    margin-top: -5px;
}
#sec-0 header:last-of-type{
    background-color: var(--bgaccent);
    position: relative;
}
#sec-0 header:last-of-type .container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0px;
    position: relative;
}
#sec-0 header:last-of-type h1{
    font-size: 1.5rem;
    font-style: italic;
    font-weight: bold;
    color: var(--haccent);
    padding: 0px;
    margin: 0px;
}
#sec-0 header:last-of-type h1>span{
    color: var(--txtaccent);
}
#sec-0 header:last-of-type h1 p{
    font-size: 0.85rem;
    font-style: normal;
    color: var(--textaccent2);
    margin: 0px;
}
#sec-0 header label{
    color: var(--haccent);
    font-size: 2rem;
}
#sec-0 header nav a {
    display: block;
    text-decoration: none;
    color: var(--txtaccent1);
    text-align: center;
    padding: 10px;
    transition: background-color 0.6s ease;
    border-bottom: solid 1px var(--txtaccent1);
}
#sec-0 header nav a:hover{
    background-color: var(--haccent_withOpacity);
    color: var(--txtaccent);
}
#sec-0 header nav i {
    display: flex;
    text-decoration: none;
    color: var(--haccent);
    text-align: center;
    align-items: center;
    padding: 10px;
    font-size: 1.2em;
    transition: transform 0.3s ease-in-out;
    width: fit-content;
    margin: 0px auto;
}
#sec-0 header nav i:hover {
    transform: scale(1.3);
    cursor:pointer;
}
#sec-0 #searchBar {
    justify-content: center;
    align-items: flex-start;
    background: linear-gradient(rgba(0,0,0,0.9),rgba(0,0,0,0.9));
    backdrop-filter: blur(4px);
    position: absolute;
    width: 100%;
    height: 110vh;
    top: 100%;
}
#sec-0 #searchBox {
    display: block;
    min-width: 45%;
    padding: 10px 15px;
    text-align: center;
    border-radius: 30px;
    border-style: none;
    transform: translateY(25px);
}
#sec-0 #searchBox:focus {
    box-shadow: inset 0px 0px 25px var(--haccent2);
}
.show{
    display: flex;
}
.hide{
    display: none;
}

#sec-0 header input {
    display: none;
}
#sec-0 input + nav {
    display: none;
    width: 100%;
}
#sec-0 input:checked + nav {
    display: block;
}
#sec-0 article{
    display: flex;
    align-items: center;
    text-align: center;
    padding: 3rem 0px;
}
#sec-0 article h1{
    font-weight: normal;
    font-size: 1.25rem;
    color: var(--txtaccent);
    margin-bottom: 10px;
}
#sec-0 article h2{
    text-transform: uppercase;
    font-size: 1.85rem;
    color: var(--txtaccent);
    line-height: 1em;
    margin-bottom: 15px;
    font-weight: 700;
}
#sec-0 article h2 span{
    color: var(--haccent);
}
#sec-0 article p{
    color: var(--txtaccent);
    margin-bottom: 3rem;
    padding-left: 4rem;
    padding-right: 4rem;
}
#sec-0 article a{
    color: var(--haccent2);
    background-color: var(--txtaccent4);
    display: inline-block;
    padding: 8px 15px;
    margin-left: 5px;
    border: solid 1px var(--haccent2);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}
#sec-0 article a:hover{
    background-color: var(--haccent2);
    color: var(--txtaccent);
}

/* Add the dropdown container and styles for the "Services" menu */
#sec-0 header nav .dropdown {
    position: relative;
    display: inline-block;
}

#sec-0 header nav .dropdown .dropdown-btn {
    text-decoration: none;
    color: var(--txtaccent1);
    padding: 10px;
    transition: background-color 0.6s ease;
}

#sec-0 header nav .dropdown .dropdown-btn:hover {
    background-color: var(--haccent_withOpacity);
    color: var(--txtaccent);
}

#sec-0 header nav .dropdown .dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--bgaccent);
    min-width: 160px;
    z-index: 1;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

#sec-0 header nav .dropdown .dropdown-content a {
    color: var(--txtaccent1);
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    text-align: left;
    transition: background-color 0.3s ease;
}

#sec-0 header nav .dropdown .dropdown-content a:hover {
    background-color: var(--haccent_withOpacity);
    color: var(--txtaccent);
}

#sec-0 header nav .dropdown:hover .dropdown-content {
    display: block;
}

/* ================================================================================================================= */

/* SECTION ONE */
#sec-1 {
    background-color: var(--txtaccent);
    padding: 50px;
}

#sec-1 article {
    padding-top: 20px;
    text-align: center;
}

#sec-1 article h1 {
    font-size: 1.85rem;
    color: var(--haccent); /* Main heading color */
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    overflow: hidden; 
    white-space: nowrap; 
    border-right: 2px solid var(--haccent); 
    animation: typing 5s steps(20, end) infinite
}

/* Typing effect */
@keyframes typing {
    0% {
        width: 0;
    }
    50% {
        width: 65%;
    }
    55% {
        width: 65%;
    }
    100% {
        width: 0;
    }
}

#sec-1 article h2 {
    
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--textaccent3); /* Subheading color from root */
}

#sec-1 article p {
    font-size: 0.85rem;
    text-align: justify;
    margin: 1.3rem 0px 1.1rem;
    color: var(--textaccent2); /* Paragraph text color from root */
}

#sec-1 article a {
    color: var(--bgaccent);
    background-color: var(--haccent);
    text-transform: uppercase;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 5px;
    display: inline-block;
    width: fit-content;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#sec-1 article a:hover {
    background-color: var(--haccent_withOpacity); /* Hover background color */
    color: var(--txtaccent1); /* Hover text color */
}

#sec-1 aside {
    width: 95%;
    margin: 25px auto 0px;
}

#sec-1 aside img {
    max-width: 100%;
    border-radius: 5px; /* Optional for a softer look */
}



/* SECTION 2 */
#sec-2 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../Images/bg4.jpg) no-repeat center center/cover;
    text-align: center;
    padding: 3rem 0px 1.8rem;
    overflow: hidden; /* Prevents overflow */
}

#sec-2 .container > h1 {
    color: var(--haccent);
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

#sec-2 .container > p {
    color: var(--txtaccent);
    margin-bottom: 80px;
    justify-self: center;
    width: 60%;
}



#sec-2 article {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; /* Adds space between cards */
}

#sec-2 article figure {
    text-align: center;
    width: 250px; /* Fix card size */
    margin-top: 20px;
    position: relative;
}

#sec-2 article .icon-container {
    position: absolute;
    top: -50px; /* Adjust to position the image above the card */
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background-color: var(--haccent2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2; /* Ensure it stays above the card */
}

#sec-2 article .icon-container img {
    max-width: 60%;
    height: auto;
}

/* Flip Card */
#sec-2 article figure .flip-card {
    width: 100%;
    height: 300px;
    position: relative;
    transform-style: preserve-3d; /* Enables 3D transformations */
    transition: transform 1.5s ease-in-out; /* Smooth flipping */
}

#sec-2 article figure .flip-card.is-visible {
    transform: rotateY(180deg); /* Flip the card */
}

/* Front Side */
#sec-2 article figure .flip-card .front,
#sec-2 article figure .flip-card .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; /* Ensures only front or back is visible */
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    border-radius: 10px;
}

#sec-2 article figure .flip-card .back {
    transform: rotateY(180deg); /* Start rotated for back side */
}

/* Content Styling */
#sec-2 article figure .flip-card .cont h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--haccent2);
    padding: 0px 15px;
}

#sec-2 article figure .flip-card .cont p {
    color: var(--txtaccent);
    font-size: 0.88rem;
    text-shadow: 1px 1px #73757E;
    text-align: center;
    padding: 0px 15px;
}


#sec-3 h1 {
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 30px;
    margin-top: 30px;
    text-align: center;
    color: var(--haccent);
    font-weight: 900;
}

/* Ensure custom width for cards in Section 3 */
#sec-3 .custom-width {
    flex: 0 0 auto; /* Prevent Bootstrap's column shrinking behavior */
    width: 30%;
    max-width: 100%; /* Adjust width to make both cards fit in a single row */
}

/* Flip Card Styling */
.flip-card {
    perspective: 1000px;
    position: relative;
    width: 100%; /* Allow width to be controlled by the parent container */
    height: 300px;
    margin: 0 auto;
    border-radius: 10px;
}

.flip-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s ease-in-out;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
}

.flip-card-front {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.flip-card-back {
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--txtaccent);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.card-img-top {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.caption {
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--txtaccent);
    text-align: center;
    padding: 10px;
    font-weight: 600;
    width: 100%;
    position: absolute;
    bottom: 0;
}


/* SECTION 4 */
#sec-4{
    background: linear-gradient(rgba(78, 76, 70, 0.8),rgba(78, 76, 70, 0.8)), url(../Images/bg2.jpg) no-repeat center center/cover;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 4rem;
}
#sec-4 h1{
    text-transform: uppercase;
    font-size: 1.7rem;
    margin-bottom: 1.6rem;
    color: var(--haccent);
    font-weight: 800;
}
#sec-4 p{
    color: var(--txtaccent);
    font-size: 0.9rem;
    padding: 0px 6rem;
    margin-bottom: 2rem;
}
#sec-4 .filter{
    margin-bottom: 2rem;
    padding: 0px 6rem;
}
#sec-4 .filter a{
    display: inline-block;
    padding: 3px 20px 5px;
    border-radius: 15px;
    color: var(--txtaccent);
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.65s ease;
    font-size: 0.85rem;
}
#sec-4 .filter a:hover{
    background-color: var(--bgaccent);
}
#sec-4 .cont{
    width: 90%;
    margin: 0px auto;
}
#sec-4 .cont>img{
    width: 100%;
    display: block;
    margin: 0px auto 20px;
}
#sec-4 aside{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
#sec-4 aside img{
    margin-bottom: 10px;
    width: 48%;
}

/* SECTION 5 */
#sec-5 {
    background: url(../Images/bg3.jpg) no-repeat center center/cover;
    text-align: center;
    padding-top: 2rem;
    font-size: 0.9rem;
}
#sec-5 h1 {
    text-transform: uppercase;
    font-size: 1.7rem;
    margin-bottom: 1.6rem;
    color: var(--haccent);
    font-weight: 800;
}
#sec-5 h1+p {
    color: var(--txtaccent4);
    padding: 0px 2rem;
    margin-bottom: 4rem;
}
#sec-5 .cont {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    gap: 5vh;
}
#sec-5 article {
    width: 70%;
}

#sec-5 article:nth-of-type(2) div.quotetxt {
    color: var(--bgaccent);
    background-color: var(--haccent);
}

#sec-5 .quotetxt {
    display: flex;
    align-items: stretch;
    padding: 1.8em 1.7em 2em 1em;
    background-color: var(--txtaccent5);
    text-align: justify;
    word-break: break-all;    
    position: relative;
}
#sec-5 .quotetxt p:first-child {
    padding-right: 0.7em;
}
#sec-5 .quotetxt p:first-child img {
    min-width: 100%;
}
#sec-5 .quotetxt p:last-child {
    padding-top: 3px;
}
#sec-5 .arrow:after {
    content: '';
    position: absolute;
    border: 15px solid transparent;
    border-top-color: var(--txtaccent5);
    left: calc(50% - 15px);
    top: 100%;
}

#sec-5 article:nth-child(2) .arrow:after {
    content: '';
    position: absolute;
    border: 15px solid transparent;
    border-top-color: var(--haccent);
    left: calc(50% - 15px);
    top: 100%;
}

#sec-5 figure {
    margin-top: 1.85rem;
}
#sec-5 .customer {
    display: block;
    margin: 0px auto;
    border-radius: 50%;
    width: 70px;
    height: 80px;
}
#sec-5 figcaption {
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 1px 1px #73757E;
}
/* Animation styles */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}




/* SECTION SIX */
#sec-6{
    background: linear-gradient(rgba(0, 0, 0,0.9),rgba(0, 0, 0,0.9)), url(../Images/rascacielos-nueva-york.jpg) no-repeat center center/cover;
    padding-top: 2rem;
    padding-bottom: 4rem;
    font-size: 0.8rem;
}
#sec-6 .container{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    row-gap: 15px;
    color: var(--txtaccent5);
}
#sec-6 h1{
    font-weight: 400;
    font-size: 1.25rem;
    margin-bottom: 1.1rem;
}
#sec-6 .about h2{
    font-size: 1.3rem;
    font-weight: 800;
    font-style: italic;
    color: var(--haccent);
    padding-bottom: 5px;
    margin-bottom: 1rem;
}
#sec-6 .about h2 p{
    color: var(--txtaccent1);
    font-size: 0.8rem;
    font-weight: 400;
    margin-bottom: 0px;
}
#sec-6 .about>p{
    margin-bottom: 1.5rem;
}
#sec-6 .about a{
    display: inline-flex;
    padding: 5px;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    border-radius: 50%;
    background-color: var(--haccent);
    font-size: 1.25rem;
    color: var(--bgaccent);
    justify-content: center;
    align-items: center;
    transition: background-color ease-in;
    margin-top: 5px;
    text-decoration: none;
}
#sec-6 .about i{
    vertical-align: baseline;
}
#sec-6 .about a:hover{
    background-color: var(--txtaccent5);
}
#sec-6 .links a{
    color: inherit;
    text-decoration: none;
    display: block;
}
#sec-6 .links a{
    position: relative;
    padding: 0.2em;
    padding-left: 25px;
}
#sec-6 .links a::before{
    content: '';
    position: absolute;
    border: 0.35em solid transparent;
    border-left-color: var(--txtaccent5);
    left: 0px;
    top: 0.8em;
}
#sec-6 .links a:hover{
    text-decoration: underline;
}
#sec-6 .posts a{
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 1.1em;
    transition: background-color 0.7s ease-out;
    margin-left: -5px;
}
#sec-6 .posts a:hover{
    background-color: var(--haccent_withOpacity);
    color: var(--txtaccent);
}
#sec-6 .posts a span{
    display: inline-flex;
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    border: solid 2px var(--txtaccent5);
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 25px;
    margin-right: 10px;
}
#sec-6 .contact p{
    margin-bottom: 15px;
    display: flex;
    margin-left: -1em;
}
#sec-6 .contact p::before{
    font-family: fontAwesome;
    display: inline-flex;
    min-width: 2em;
    justify-content: center;
    font-size: 1.2em;
}
#sec-6 .contact p:first-of-type::before{
    content: "\f3c5";
}
#sec-6 .contact p:nth-of-type(2)::before{
    content: "\f0e0";
}
#sec-6 .contact p:last-of-type::before{
    content: "\f3cd";
}
/* SECTION SEVEN */
#sec-7 {
    background-color: var(--bgaccent);
    padding: 20px 0px 10px;
    text-align: center;
    font-size: 0.7rem;
}
#sec-7 p{
    color: var(--txtaccent5);
}
#sec-7 p span{
    color: var(--haccent);
}

/*MEDIA QUERRIES*/
/*Smart phones */
@media (min-width: 576px) {
    html{
        font-size: 13px;
    }
    .container {
        width: 520px;
    }
    #sec-0 header nav a {
        background-color: transparent;
    }
    #sec-0 input + nav {
        background-color: var(--bgaccent_withOpacity);
        position: absolute;
        top: 100%;
        right: 0%;
        width: 35%;
        border-bottom-left-radius: 10px;
    }
    #sec-0 #searchBox {
        transform: translateY(25px);
    }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    html{
        font-size: 14px;
    }
    .container {
        width: 720px;
    }
    #sec-0 header.top {
        padding-top: 0px;
    }
    #sec-0{
        background-position: center center;
    }
    #sec-0 header.top .container {
        justify-content: flex-start;
    }
    #sec-0 header.top p {
        width: fit-content;
        margin-right: 10px;
    }
    #sec-0 .top .social {
        width: fit-content;
        flex-grow: 1;
    }
    #sec-0 header label{
        display: none;
    }
    #sec-0 header nav a {
        border-style: none;
    }
    #sec-0 input + nav {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-end;
        width: fit-content;
        position: static;
        border-radius: none;
        font-size: 0.8rem;
    }
    #sec-0 input:checked + nav {
        display: flex;
    }
    #sec-0 article{
        padding: 5rem 0px;
    }
    #sec-0 article h1{
        font-size: 2rem;
    }
    #sec-0 article h2{
        font-size: 3.5rem;
    }
    #sec-0 #searchBox {
        min-width: 35%;
    }
    #sec-1 .container{ 
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #sec-1 article{
        padding: 0px;
        text-align: left;
        width:51%;
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
    }
    #sec-1 article p{
        padding-right: 1rem;
    }
    #sec-1 aside {
        width: 48%;
        margin: 0px;
        text-align: right;
    }
    #sec-2{
        padding: 4rem 0px 2.5rem;
    }
    #sec-2 article{
        justify-content: space-between;
    }
    #sec-2 article figure{
        max-width: 40%;
    }
    #sec-2 article figure img{
        max-width: 55%;
    }


    #sec-4 .cont{
        width: 100%;
        margin: 0px;
    }
    #sec-4 aside img{
        margin-bottom: 15px;
        width: 48%;
    }
    #sec-5 h1+p{
        padding: 0px 6rem;
    }
    #sec-5 .cont{
        gap: 5vw;
    }
    #sec-5 article{
        width: 43%;
    }
    #sec-5 .contactUs form input+p{
        bottom: 4px;
    }
    #sec-6 .container{
        justify-content: space-between;
        row-gap: 25px;
    }
    #sec-6 .about{
        width: 65%;
    }
    #sec-6 .links{
        width: 20%;
    }
    #sec-6 .posts {
        width: 65%;
    }
    #sec-6 .contact {
        width: 20%;
    }
}
/* Standard PC screens */
@media (min-width: 1200px) {
    html{
        font-size: 15px;
    }
    .container {
        width: 1140px;
    }
    #sec-0 .top .social {
        gap: 10px ;
    }
    #sec-0 header:last-of-type .container{
        padding: 0.95rem 0px;
    }
    #sec-0 header nav a {
        margin-right: 10px;
        font-size: 0.92rem;
    }
    #sec-0 article p{
        padding-left: 14rem;
        padding-right: 14rem;
    }
    #sec-1 article h1{
        font-size: 2.7rem;
    }
    #sec-1 article h2{
        font-size: 1.8rem;
    }
    #sec-2{
        background-position: center top;
    }
    #sec-2 article{
        justify-content: space-evenly;
    }
    #sec-2 article figure{
        max-width: 21%;
    }

    #sec-4 .cont{
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
    }
    #sec-4 .cont>img{
        width: 50%;
        margin: 0px;
    }
    #sec-4 aside{
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        width: 49%;
        gap: 10px;
    }
    #sec-4 aside img{
        width: 49%;
        margin: 0px;
    }
    #sec-5{
        background-position: right center;
    }
    #sec-5 .cont{
        justify-content: space-between;
        gap: 0px;
        padding-bottom: 25px;
    }
    #sec-5 article{
        width: 30%;
    }
    #sec-5 .contactUs>.container {
        display: flex;
        justify-content: space-between;
    }
    #sec-5 .contactUs aside{
        width: 45%;
        text-align: left;
    }
    #sec-5 .contactUs form {
        width: 45%;
        padding-top: 0px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #sec-5 .contactUs form input {
        margin-right: 15px;
    }
    #sec-5 .contactUs form input:not(input[type=submit]) {
        flex-grow: 1;
    }
    #sec-5 .contactUs form input+p{
        text-align: left;
    }
    #sec-6 .container{
        justify-content: space-between;
        row-gap: 25px;
    }
    #sec-6 .about{
        width: 30%;
    }
    #sec-6 .links{
        width: 15%;
    }
    #sec-6 .posts {
        width: 20%;
    }
    #sec-6 .contact {
        width: 18%;
    }
}
@media (min-width: 1400px) {
    html{
        font-size: 17px;
    }
    .container {
        width: 1340px;
    }
}


/* SCROLL TO TOP BUTTON */
/* Scroll-to-Top Button */
.scroll-top {
    position: fixed;
    bottom: 10px;
    right: 50px;
    width: 80px;
    height: 80px;
    background-color: var(--haccent); /* Button color */
    color: var(--txtaccent4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.scroll-top:hover {
    background-color: var(--haccent2); /* Hover effect */
    color: var(--txtaccent);
}

/* When user scrolls down, show the button */
.scroll-top.active {
    opacity: 1;
    visibility: visible;
}


/* Contact Us Button */
.contact-us {
    position: fixed;
    bottom: 100px; /* Place it above the scroll-top button */
    right: 20px;
    width: 150px;
    height: 60px;
    background-color: var(--contact); /* Button color (green) */
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    opacity: 0;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.contact-us i {
    margin-right: 8px; /* Add space between icon and text */
}

.contact-us:hover {
    background-color: var(--contact_hover); /* Hover effect */
}

/* When user scrolls down, show the button */
.contact-us.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--txtaccent);
    border-radius: 15px;
    padding: 30px;
}

.modal-header .modal-title {
    color: var(--haccent);
}

.form-label {
    color: var(--txtaccent1);
}

.btn-success {
    background-color: var(--contact);
    border: none;
}



/* ============================================================================================ */
/* construction.html */
#animated-home-icon {
    animation: pulse 2s infinite;
}

/* Keyframes for a pulsing effect */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* Construction and Maintenance Sections */
#commercial, #residential {
    padding: 50px 0;
    background-color: var(#f0f0f0);
    border-bottom: 1px solid var(--haccent);
    border-top: 1px solid var(--haccent);
    border-radius: 100px;
    margin: 10px;
}

#commercial h1, #residential h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--haccent);
}

/* Service Section */
.service {
    margin-bottom: 100px;
}

.service h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--haccent), var(--bgaccent), var(--haccent), var(--bgaccent), var(--haccent));
    -webkit-background-clip: text; 
    color: transparent; 
}

.service p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--textaccent2);
}

/* Layout for Service Sections */
.service .row {
    display: flex;
    align-items: center;
}

.service .col-md-6 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Odd subsections (left-aligned text) */
.service:nth-child(odd) .col-md-6.text-side h2,
.service:nth-child(odd) .col-md-6.text-side p {
    text-align: right;
    align-items: flex-end; /* Align text to the left */
}

/* Even subsections (right-aligned text) */
.service:nth-child(even) .col-md-6.text-side h2,
.service:nth-child(even) .col-md-6.text-side p {
    text-align: left;
    align-items: flex-start; /* Align text to the right */
}

/* Image and Text Layout */
.service .col-md-6.text-side {
    flex: 1;
    order: 0;
}

.service .col-md-6.image-side {
    flex: 1;
    order: 1;
}

.service .col-md-6 img {
    width: 80%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.5s ease-in-out;
}

/* Animation for Images */
.wow.fadeInLeft,
.wow.fadeInRight {
    visibility: hidden;
}

.wow.fadeInLeft.wow, .wow.fadeInRight.wow {
    visibility: visible;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Layout */
@media (max-width: 768px) {
    .service .row {
        flex-direction: column;
    }

    .service .col-md-6 {
        width: 100%;
        margin-bottom: 20px;
    }

    .service .col-md-6.text-side,
    .service .col-md-6.image-side {
        order: 0; /* Reset order for mobile */
    }

    .service h2 {
        font-size: 1.8rem;
    }

    .service p {
        font-size: 1rem;
    }
}



/* ============================================================================================================ */
/* maintenance.html */
/* Maintenance Section Styles */
#maintenance {
    padding: 50px 0;
    background-color: #f9f9f9;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    border-radius: 10px;
    margin: 10px 0;
}

#maintenance h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--haccent);
}

/* Service Styles */
.service {
    margin-bottom: 50px;
}

.service h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--haccent), var(--bgaccent));
    -webkit-background-clip: text;
    color: transparent;
}

.service ul {
    padding-left: 20px;
    list-style: none;
}

.service ul li {
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--textaccent2);
    margin-bottom: 10px;
}

.service ul li i {
    color: var(--haccent);
    margin-right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service .row {
        flex-direction: column;
    }

    .service .col-md-6 {
        width: 100%;
        margin-bottom: 20px;
    }
}



/* ============================================================================================================ */
/* about.html */
/* Services Section */
#services {
    padding: 60px 0;
    background-color: #fff; /* Changed background color to white */
    border-radius: 15px; /* Added border-radius */
}

#services h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 3rem;
    color: var(--haccent);
}

#services .row .col-md-4 {
    padding: 20px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
    animation: zoomIn 1s ease-out; /* Updated animation */
}

#services .row .col-md-4 h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

#services .row .col-md-4 p {
    font-size: 1rem;
    color: #666;
}

/* Map Section */
#location {
    padding: 60px 0;
    background-color: var(--txtaccent); /* Changed background color to white */
}

.map-responsive {
    position: relative;
}

.map-responsive iframe {
    border-radius: 10px;
}

.location-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: blink 1s infinite;
}

.location-pin .pin {
    width: 30px;
    height: 30px;
    background-color: var(--haccent);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes blink {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Scroll Animations */
.wow {
    visibility: hidden;
}

.wow.fadeInLeft {
    animation: fadeInLeft 2s forwards;
}

.wow.fadeInUp {
    animation: fadeInUp 2s forwards;
}

.wow.fadeInRight {
    animation: fadeInRight 2s forwards;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* New animation for Services */
@keyframes zoomIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


#location .container h1{
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--haccent);
}

#location .container p{
    text-align: center;
    font-size: 1.2rem;
}

#services .container .row .col-md-4{
    border-top: 1px solid var(--haccent);
    border-bottom: 1px solid var(--haccent);
    border-radius: 100px;
    padding: 40px;
}


/* ================================================================================================================== */
/* contact.html */
/* Map Section */
#location {
    margin: 50px 0;
}

.map-responsive {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    height: 0;
    max-width: 100%;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
}

/* Contact Form Section */
#contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

#contact-form form{
    width: 80%;
    justify-self: center;
}

#contact-form .container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--haccent);
}

.form-group {
    margin-bottom: 20px;
}

label {
    font-size: 1rem;
    color: #333;
}

input, textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

button[type="submit"] {
    background-color: var(--haccent);
    color: var(--txtaccent);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: var(--haccent2);
}

/* Form Hover Animation */
#contact-form input,
#contact-form textarea {
    transition: transform 0.3s ease-in-out;
}

#contact-form input:focus,
#contact-form textarea:focus {
    transform: scale(1.05);
    border-color: var(--haccent);
    outline: none;
}

/* END OF SHEET */