.about_page_section {
    position: relative;
    background: url('../img/Projectsbanner/project-banner.jpg') no-repeat center center/cover;
    height: 100vh;
    max-height: 600px;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    color: var(--white);
}

.about_page_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.315);
}

.about_page_section .about_banner {
    position: absolute;
    font-family: var(--poppins-400);
    max-width: 800px;
    font-size: 32px;
    text-align: left;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.privacy-title {
    font-size: 32px;
    font-family: var(--poppins-600);
    margin-bottom: 20px;
    color: var(--white);
    text-align: center;
}

.privacy-heading {
    font-family: var(--poppins-500);
    font-size: 20px;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 15px;
}

.img_box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
}

.img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: 0.3s ease-in-out;
}

.img_box .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.548);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.3s ease-in-out;
}

/* Hover Effects */
.img_box:hover img {
    transform: scale(1.05);
}

.img_box:hover .overlay {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1.05);
}

.img_box .overlay h4 {
    font-size: 16px;
    margin-bottom: 8px;
    letter-spacing: 1px;
    color: var(--white);
}

.filter-btn {
    font-family: var(--poppins-500);
    padding: 5px 20px;
    border: none;
    background: var(--bg-grey);
    color: var(--black);
    font-size: 15px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.filter-btn:hover {
    background: var(--black);
    color: var(--white);
}

.filter-btn.active {
    background: var(--black);
    color: var(--white);
}

.discuss-section h2 {
    font-family: var(--poppins-600);
    font-size: 28px;
    color: var(--white);
    margin-bottom: 20px;
}

.discuss-section p {
    font-family: var(--poppins-400);
    font-size: 18px;
    color: var(--white);
}

/* Section with fixed background */
.discuss-section {
    background: url("../img/Discussbanner/discuss-banner.jpg") center center/cover no-repeat fixed;
    padding: 100px 20px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.discuss-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.315);
    filter: blur();
    z-index: -1;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1 1 48%;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--poppins-400);
    font-size: 14px;
    color: var(--white);
    margin-bottom: 6px;
}

.form-group input {
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    font-size: 16px;
    outline: none;
    background: transparent;
    color: var(--white);
}

.form-group input::placeholder {
    font-family: var(--poppins-400);
    color: var(--white);
}

/* Hide arrows from number input */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* input[type=number] {
    -moz-appearance: textfield;
} */


/* Bottom Section */
.form-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.checkbox-label a {
    font-family: var(--poppins-500);
    text-decoration: underline !important;
    color: var(--white);
    text-decoration: none;
}

.send-btn {
    font-family: var(--poppins-500);
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--white);
    padding: 8px 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.send-btn:hover {
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--white);
}