* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000000;
    padding: 0px;
    
}

.full-width-bg {
    background-color: #11151c;  /* The background color */
    width: auto;               /* Full width background */
    padding-bottom: 10px;
}
.about-main{
    background-color: #f8f0ed;
    width: auto;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: left;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 2.5rem;
    color: #333;
    text-transform: capitalize;
    display: inline-block;
    border-bottom: 3px solid #a68463; /* Add this for the line */
    padding-bottom: 5px;
    margin-bottom: 10px;
    letter-spacing: 4px;
}

.header h2 {
    font-size: 2rem;
    color: #5b4a42;
    margin-top: 5px;
    margin-left: 70px; /* Ensures the text starts after the colon */
    text-align: justify;
    display: inline;
    letter-spacing: 3px;
    line-height: 1.6;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
}

.intro {
    width: 55%;
    text-align: justify;
}

.intro p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    letter-spacing: 1px;
}

.stats-section {
    width: 40%;
    margin-top: -30px; /* Move the stats slightly upwards */
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;  /* No gaps to make the elements touch each other */
    width: 500px;
    height: 500px;
}

.stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1rem;
    color: #a68463;
    border: 2px solid #a68463;
    background-color: #f8f0ed;
    position: relative; /* To position the bar */
    padding: 20px 0;
}

.stat h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #a68463;
}

.stat p {
    font-size: 1rem;
    color: #333;
    margin-top: 0px;
    padding-top: 10px;
}

.stat::after {
    content: '';
    width: 50%;
    height: 2px;
    background-color: #a68463;
    position: absolute;
    top: 50%;
    left: 25%;
}

/* Square blocks */
.square {
    width: 100%;
    height: 100%;
}

/* Circle blocks */
.circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* Positioning for specific blocks */
.top-left {
    grid-column: 1;
    grid-row: 1;
}

.top-right {
    grid-column: 2;
    grid-row: 1;
}

.bottom-left {
    grid-column: 1;
    grid-row: 2;
}

.bottom-right {
    grid-column: 2;
    grid-row: 2;
}


/* Add position: relative to the container to ensure proper positioning */
.why-us-container {
    position: relative;
    padding: 50px 20px;
    width: auto;
    z-index: 2;   

}

.why-us {
    position: relative; 
    text-align: left;
    z-index: 2;   
    padding-right: 10%;
}

.why-us h2 {
    font-size: 3rem;
    color: #f8f0ed;
    padding-bottom: 10px;
    margin-bottom: 20px;
    letter-spacing: 8px;
    font-family: serif;
}
.why-us-line{
    border-bottom: 3px solid #a68463;
    width: 90%;
    margin-top: -25px;
}

.why-us p {
    font-size: 1.1rem;
    color: #f8f0ed;
    line-height: 1.8;
    padding-right: 16%;
    margin-top: 30px;
    text-align: justify;
    margin-bottom: 20px;
}



/* Position the Design Company Container */
.design-company-container {
    position: absolute;  /* This will allow you to move the element inside the relative parent */
    top: 13%;            /* Adjust this value to move it vertically */
    left: 77%;           /* Adjust this value to move it horizontally */
    transform: rotate(-90deg); /* Rotates the entire container 90 degrees counterclockwise */
    transform-origin: center;  /* Rotates around its center */
    text-align: left;
    z-index: 1;
}

.design-company-container h1 {
    font-size: 5rem; /* Adjust font size for "Design" and "Company" */
    font-weight: bold;
    font-family: serif;
    color: #f8f0ed;
    margin: 0;
    margin-top: -30px;
}

.line {
    width: 130%;
    height: 2px;
    background-color: #a68463;
    margin: 20px auto;
}

.line-top {
    position: relative;
    top: -20px;
    left: -210px;
}

.line-bottom {
    position: relative;
    top: -20px;
    left: -100px;
}


/* Mission and Vision Section */
.about-mission-vision {
    width: 100vw; /* Full width (100% of the viewport width) */
    background-color: #f8f0ed; /* Example background color */
    position: relative;
    left: 50%;  /* Move it to the left edge */
    right: 50%; /* Compensate for the negative margin */
    margin-left: -50vw;  /* Pull the div back to the start of the viewport */
    margin-right: -50vw; /* Pull the div back on the right side too */
    margin-top: 30px;
}
.mission-vision {
    display: flex;
    justify-content: space-between;
    background-color: #f8f0ed; /* Light grey background for mission and vision */
    padding-top: 20px;
    max-width: 1200px;
    margin: 0 auto; /* Center the content within the full-width container */
}

.mission, .vision {
    width: 45%;
    text-align: justify;

    padding: 20px;
    border-radius: 8px;
}

.mission h3, .vision h3 {
    font-size: 2rem;
    color: #5b4a42;
    margin-bottom: 15px;
    text-align: center;
}

.mission p, .vision p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

@media (max-width: 2400px) {


}
@media (max-width: 1920px) {


}
@media (max-width: 1337px) {


}
@media (max-width: 1280px) {

}
@media (max-width: 1024px) {

}
@media screen and (max-width: 768px) {
    
    .header h1 {
        font-size: 2rem;
    }
    
    .header h2 {
        font-size: 1.2rem;
        margin-left: 0;
    }

    .content {
        flex-direction: column;
        align-items: center;
    }

    .intro {
        width: 100%;
        margin-bottom: 20px;
    }

    .stats-section {
        width: 100%;
        margin-top: 20px;
    }

    .stats-container {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr 1fr;
        grid-template-rows:  1fr 1fr;
    }
    .stat p{
        font-size: 1rem;
        padding-top: 0px;
        letter-spacing: 1.6px;
        padding-top: 20px;
    }
    .stat::after {
        content: '';
        width: 60%;
        height: 2px;
        background-color: #a68463;
        position: absolute;
        top: 50%;
        left: 20%;
    }
    .why-us {
        text-align: left;
        z-index: 10;   
        padding-right: 10%;
    }
    
    .why-us h2 {
        font-size: 2rem;
        color: #f8f0ed;
        padding-bottom: 10px;
        margin-bottom: 20px;
        letter-spacing: 2px;
        font-family: serif;
    }
    .why-us-line{
        border-bottom: 2px solid #a68463;
        width: 90%;
        margin-top: -25px;
    }
    .why-us p {
        font-size: 1rem;
        color: #f8f0ed;
        line-height: 1.5;
        padding-right: 0%;
        margin-top: 30px;
        letter-spacing: 1px;
        text-align: justify;
        margin-bottom: 20px;
    }

    /* Position the Design Company Container */
    .design-company-container {
        position: absolute;  /* This will allow you to move the element inside the relative parent */
        top: 5cap;            /* Adjust this value to move it vertically */
        left: 68%;           /* Adjust this value to move it horizontally */
        transform: rotate(-90deg); /* Rotates the entire container 90 degrees counterclockwise */
        transform-origin: center;  /* Rotates around its center */
        text-align: left;
    }
    /* Prevent any horizontal overflow */
    body {
        overflow-x: hidden;  /* Prevents extra space and horizontal scroll */
    }

    .design-company-container h1 {
        font-size: 2rem; /* Adjust font size for "Design" and "Company" */
        font-weight: bold;
        font-family: serif;
        color: #f8f0ed;
        margin: 0;
        margin-top: -45px;
    }

    .line {
        width: 300%;
        height: 2px;
        background-color: #a68463;
        margin: 20px auto;
    }

    .line-top {
        width: 100%;
        position: relative;
        top: -20px;
        left: -10px;
    }

    .line-bottom {
        position: relative;
        width: 150%;
        top: -20px;
        left: -10px;
    }


    .mission-vision {
        flex-direction: column;
        padding: 20px;
    }

    .mission, .vision {
        width: 100%;
    }
    .mission h3, .vision h3 {
        font-size: 1.8rem;
        color: #5b4a42;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .mission p, .vision p {
        font-size: 1rem;
        line-height: 1.5;
        letter-spacing: 0.1px;
        color: #333;
    }
}

@media (max-width: 601px) {

}

@media (max-width: 480px) {

}

@media (max-width: 414px) {

}
@media (max-width: 360px) {

}
