/* Import Urbanist Font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* About Hero Section with Background Image */
.about-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/3.jpg');
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 140px 20px 80px 20px;
    overflow: hidden;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%; /* Full width */
    text-align: center;
    color: #fff;
    padding: 60px 40px; /* More padding for full-width look */
    border-radius: 0; /* Remove rounded corners for full effect */
    backdrop-filter: blur(1px);
}

/* Title with Urbanist Font */
.about-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
    line-height: 1.2;
    color: #d61111;
}

/* Divider with "We Build Trust" Text */
.about-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px auto 35px auto;
    max-width: 600px;
}

.about-divider-line {
    flex: 1;
    height: 2px;
    background: #ffffff;
}

.about-divider-text {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
}

/* Text styling */
.about-text {
    font-size: 1rem;
    line-height: 2.3;
    font-weight: 300;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
    padding: 0 60px; /* Padding on sides for readability */
    text-align: center;
    color: #f5f5f5;
    max-width: 1400px; /* Wider text area */
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 120px 15px 60px 15px;
        background-attachment: scroll;
    }
    .about-content {
        padding: 30px 20px;
    }
    .about-title {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }
    .about-divider {
        gap: 15px;
        margin: 25px auto 30px auto;
    }
    .about-divider-text {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }
    .about-text {
        font-size: 1.05rem;
        line-height: 1.8;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 10px 50px 10px;
    }
    .about-content {
        padding: 25px 15px;
    }
    .about-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
    .about-divider {
        gap: 10px;
        margin: 20px auto 25px auto;
    }
    .about-divider-text {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
    .about-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}
