.content-container {
    max-width: var(--max-container-width);
    width: var(--normal-container-width);
    margin: 0 auto;
    padding-top: 5%;
    padding-bottom: 0%;
}

.landing-section {
    max-height: 600px;
    padding-bottom: 10%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}


.greeting {
    width: 80%;
    margin: 20px auto;
    text-align: center;
}

.greeting h1 {
    text-transform: none;
    font-size: 3.5rem;
}

/* .greeting p {
    margin-top: 20px;
    color: var(--color-grey-200);
    max-width: 65ch;
    line-height: 1.8;
} */

.cta-group {
    display: flex;
    margin-top: 40px;
    align-items: center;
    justify-content: center;
}

.explore-cta {
    padding: 10px 0;
    width: 40%;
    border-radius: 6px;
    color: var(--color-bg);
    background-color: var(--color-primary);
    text-align: center;
}

.contact-cta {
    padding: 10px 40px;
    color: var(--color-grey-200);
    margin-left: 30px;
    text-align: center;
}

.images-container {
    width: 40%;
    height: 575px;
    position: relative;
    filter: brightness(120%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 16px 64px 0 rgba(0, 0, 0, 0.20);
}

.images-container .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
}

.images-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* SERVICES */
.services {
    display: block;
    width: 100%;
    margin-top: 1%;
    margin-bottom: 5%;
    height: max-content;
}

.services h1 {
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.service-item-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.aluminum {
    padding-bottom: 10%;
}

.info {
    width: 45%;
}

.info p {
    margin: 10px 0;
    font-size: 1.222rem;
    font-weight: 400;
    color: var(--color-grey-100);
}

.info a {
    display: flex;
    align-items: center;
    padding: 10px 0px;
    color: var(--color-primary);
    font-weight: 500;
    margin: 20px 0;
    width: fit-content;
    border-bottom: 2px solid var(--color-secondary);
}

.info a svg {
    width: 30px;
    height: 30px;
    margin-left: 5px;
    stroke: var(--color-primary);
    transition: 0.1s ease;
}

.info a:hover svg {
    margin-left: 10px;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 45%;
    gap: 5%;
}

.structural-glazing-image, .curtain-wall-image {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    background-color: #cccccc;
}

.show-on-responsive {
    display: none;
}

.images-grid .image {
    grid-column: span 1;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
}

.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Other Services Section */
.other-services {
    margin-top: 10% !important;
    margin-bottom: 1% !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.other-services div {
    grid-column: span 1;
}

.other-services div:last-child {
    margin-right: 0 !important;
}


.other-service-image {
    height: 350px;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.other-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    filter: brightness(90%);
}

.other-service-info {
    margin: 20px 0;
}

.other-service-info h3 {
    font-weight: 600;
    font-size: 2rem;
}

.other-service-info p {
    margin: 10px 0;
    color: var(--color-grey-100);
}

.other-service-info a {
    font-weight: 600;
    padding: 5px 0;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-secondary);
}

/* Clients Section */
.clients {
    width: 100%;
    margin: 5% auto;
}

.clients h1 {
    font-weight: 800;
    margin-bottom: 20px;
}

.logos-grid {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    gap: 60px;
    width: 100%;
    margin: 0 auto;
}

.company-logo {
    width: fit-content !important;
}

.company-logo img {
    height: 64px;
}

.rezayat {
    height: 41px !important;
}

.zahrani {
    height: 140px !important;
}

.zahran {
    height: 50px !important;
}

/* Suppliers & Partners */
.suppliers .logos-grid {
    margin-top: 50px !important;
    gap: 70px;
}

.raoomco {
    height: 72px !important;
    background-color: rgba(0, 0, 0, 1);
}

.alsahr {
    height: 96px !important;
}

.almanee {
    height: 96px !important;
}

/* Responsiveness Stuff */
@media only screen and (max-width: 1550px) {
    .other-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 100px;
    }
}

@media only screen and (max-width: 1250px) {
    .greeting {
        width: 100%;
    }
}

@media only screen and (max-width: 1000px) {
    .header-nav {
        display: none;
    }

    .major-heading {
        font-size: 2.5rem;
    }

    .landing-section {
        display: block;
        width: 100%;
        height: max-content;
        padding-bottom: 10%;
    }

    .greeting, .cta-group {
        text-align: left;
        width: 100%;
    }

    .greeting p, .cta-group {
        margin: 20px 0 !important;
        justify-content: start;
    }

    .images-container {
        width: 100%;
        max-height: 300px;
        margin: 20px 0;
        display: none;
    }

    .other-services {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .other-services h3 {
        font-weight: 700;
    }

    /* Pergola and Aluminum Image removal */

    .images-grid {
        display: none;
    }

    .show-on-responsive {
        display: block !important;
        width: 100%;
        height: 350px;
        overflow: hidden;
        border-radius: 15px;
    }

    .pergola, .aluminum {
        display: block;
        width: 100%;
    }

    .info {
        width: 100%;
        margin: 20px 0;
    }
}

@media only screen and (max-width: 620px) {
    .services h1 {
        font-size: 2rem;
    }

    .logos-grid {
        gap: 30px;
        margin: 40px 0;
    }

    .company-logo img {
        height: 38px;
    }

    .rezayat {
        height: 16px !important;
    }

    .zahrani {
        height: 64px !important;
    }

    .zahran {
        height: 40px !important;
    }
}

@media only screen and (max-width: 500px) {
    .explore-cta {
        width: 60%;
    }

    .contact-cta {
        width: 30%;
        margin-left: 5px;
        padding: 0;
    }
}