* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
}


/* COMPANY INFO */
.company-info {
    color: #d1d1d1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #202020;
    padding-inline: 50px;
    height: 55px;
    border-bottom: 1px solid;
    border-color: #666665;
    gap: 2rem;
}

.company-number,
.company-email,
.company-address {
    padding-right: 30px;
    border-right: 1px solid #666665;
}

i {
    padding-right: 5px;
}

/* --- HEADER --- */
.header {
    height: 114px;
    padding-inline: 50px;
    display: flex;
    align-items: center;
    background-color: #202020;
    position: relative;
    z-index: 10;
}

.img-logo {
    height: 60px;
    width: auto;
}

/* --- MAIN SECTION AND OVERLAY LAYOUT --- */
.site-main {
    background-color: #202020;
    min-height: calc(100vh - 169px);
    position: relative;
    display: flex;
    padding-top: 145px;
    padding-bottom: 290px;
    padding-inline: 50px;
    overflow: hidden;
}

/* --- BACKGROUND SLIDER --- */
.swiper-container {
    padding-inline: 50px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}


/* --- OVERLAID CONTENT --- */
.e-con-inner {
    position: relative;
    z-index: 2;
    width: 1400px;
    text-align: left;
    padding: 10px;
    margin-inline: auto;
}

.ruler-divider {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
    color: #d1d1d1;
    margin-bottom: 15px;
}

.ruler-divider .line {
    flex-grow: 1;
    height: 1px;
    background-color: currentColor;
    position: relative;
}

.ruler-divider .line.left::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 7px solid currentColor;
}

.ruler-divider .line.right::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid currentColor;
}

.ruler-divider .number {
    padding: 0 15px;
    font-size: 1.2em;
    font-weight: 500;
}

/* --- TEXT AND HEADINGS --- */
.custom-heading__title {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.1;
}

.custom-heading__description {
    font-size: 18px;
    color: #CACACA;
    margin-top: 20px;
    margin-bottom: 30px;
    width: 550px;
}

/* --- BUTTONS --- */
.btn-container {
    display: flex;
    gap: 20px;
}

.qt-btn {
    display: block;
    padding: 15px 30px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.btn-hero1 {
    background-color: #ffd24d;
    color: #202020;
    width: 232px;
}

/* .side-text {
    width: 1350px;
    margin-inline: auto;
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    color: #202020;
    opacity: 0.2;
    margin-top: 100px;
    margin-bottom: 100px;
} */
.footer-bottom {
    text-align: center;
    display: flex;
    justify-content: center;
    padding-inline: 20px;
    padding-top: 25px;
    padding-bottom: 25px;
    height: 75px;
    background-color: #202020;
    color: #d1d1d1;
}



@media (max-width: 1024px) {
    .site-main {
        min-height: calc(100vh - 189px);
        /* min-height: 100%; */
        padding-inline: 5px;
        padding-top: 40px;
        padding-bottom: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header {
        padding-inline: 30px;
        /* Reduced horizontal padding */
    }

    .swiper-container {
        padding-inline: 0px;
    }

    .e-con-inner {

        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: 410px;
        /* Allow content to take full width */
        max-width: 738px;
        /* Set a reasonable max-width */
    }


    .custom-heading__title {
        font-size: 52px;
        /* Slightly smaller font size for titles */
    }

    .custom-heading__description {
        font-size: 26px;
        width: 100%;
        /* Allow description to take full width */
        max-width: 100vh;
        /* Keep a max-width for readability */
    }

    .swiper-slide::before {
        height: 100vh;
    }

    /* 
    .side-text {
        width: 90%;
        /* Adjust width for side text */
    /* font-size: 36px; */
    /* Smaller font size for side text */
    /* */
    .box-title {
        text-align: center;
    }


    .swiper-slide img {
        width: 100%;
        height: 100vh;
        /* height: 500px; */
        object-fit: cover;
        object-position: center;

        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;

    }

    /* Hidder company info */
    .company-info {
        display: none;

    }

}



@media (max-width: 767px) {
    .swiper-slide::before {
        height: 100vh;
    }

    .header {
        height: 100px;
        /* Shorter header */
        padding-inline: 20px;
        /* Even less padding */
    }

    .img-logo {
        height: 50px;
        /* Smaller logo */
    }

    .site-main {
        min-height: calc(100vh - 175px);
        padding-top: 30px;

    }

    .swiper-container {
        padding-inline: 0;
        /* Remove padding for full-width background */
    }

    .e-con-inner {
        padding: 10px;
        /* text-align: center; */
    }

    .ruler-divider {
        max-width: 100%;
        /* Allow divider to take full width */
        margin-inline: auto;
        /* Center the divider */
        justify-content: center;
        /* Center items within the divider */
    }

    .custom-heading__title {
        font-size: 32px;
        /* Significantly smaller title font size */
    }

    .custom-heading__description {
        font-size: 16px;
        /* Smaller description font size */
        margin-inline: auto;
        /* Center the description */
    }

    .btn-container {
        flex-direction: column;
        /* Stack buttons vertically */
        gap: 15px;
        /* Adjust gap between stacked buttons */
    }

    .qt-btn {
        max-width: 280px;
        /* Set a max-width for buttons */
    }

    /* 
    .side-text {
        width: 90%;
        font-size: 24px;
        margin-top: 50px;
        margin-bottom: 50px;
    } */


    .swiper-slide img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .company-info {
        display: none;

    }
}