@font-face {
    font-family: 'The Blendinroom';
    src: url('../font/THE%20BLENDINROOM.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --section-bg: #FED4BA;
    --maroon: #591829;
    --color-bg: #5F2029;
    --secondary-bg: #FFF3D8;
    --custom-yellow: #F9C89B;
    --custom-orange: #B54E2A;
    --custom-dark: #3C4659;
    --custom-btn-color: #E9B6A5;

}

*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background-color: var(--color-bg);
}

body,
button,
input,
textarea,
select,
a {
    font-family: 'Lora', serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'The Blendinroom', serif;
}

a,
button {
    color: inherit;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
}

.process-section {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.process-left {
    flex: 1.2;
    position: relative;
    background-image: url('../image/Testimonials_side_bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-pill {
    background-color: var(--custom-orange);
    padding: 30px 60px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.process-pill h2 {
    color: var(--custom-yellow);
    font-size: 78px;
    font-weight: 400;
    height: 65px;
    margin: 0;
    letter-spacing: 2px;
}

.contact-form-area {
    flex: 1;
    background-color: var(--custom-dark);
    color: var(--custom-yellow);
    padding: 100px 5%;
    position: relative;
    display: flex;
    align-items: center;
}

.contact-columns {
    display: flex;
    width: 100%;
}

.info-col {
    flex: 1;
}

.form-col {
    flex: 1;
}

.col-title {
    font-size: 24px;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Lora', serif;
}

.address-block p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.address-block a {
    color: inherit;
    text-decoration: none;
}

.maiya-form .input-group {
    margin-bottom: 15px;
}

.maiya-form input,
.maiya-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--custom-yellow);
    padding: 10px 0;
    color: var(--custom-yellow);
    font-size: 16px;
    outline: none;
}

.maiya-form input::placeholder,
.maiya-form textarea::placeholder {
    color: var(--custom-yellow);
}

.btn-submit {
    margin-top: 20px;
    background-color: var(--custom-btn-color);
    color: var(--color-bg);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.opportunities-section {
    background-color: var(--section-bg);
    padding: 2% 8% 10% 8%;
    display: flex;
    justify-content: center;
}

.opportunities-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 80px;
}

.opp-column {
    flex: 1;
}

.right-content {
    margin-top: 25%;
}

.large-title {
    font-size: 78px;
    color: var(--color-bg);
    line-height: 95px;
    font-weight: 400;
    text-transform: uppercase;
}

.opp-subheading {
    font-family: 'Lora', serif;
    font-size: 20px;
    color: var(--color-bg);
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
}

.opp-text {
    font-size: 16px;
    color: var(--color-bg);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 420px;
}

.btn-maiya {
    display: inline-block;
    background-color: var(--color-bg);
    color: var(--custom-yellow);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn-maiya:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}


.floating-button {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1200;
    display: block;
    width: 94px;
    height: 94px;
    transition: transform 0.3s ease;
}

.floating-button:hover {
    transform: translateY(-5px);
}

.floating-button img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 1400px) {
    .contact-columns {
        flex-direction: column;
        gap: 50px;
    }
}

@media (max-width: 1200px) {
    .process-pill h2 {
        font-size: 60px;
        height: 50px;
    }
}

@media (max-width: 992px) {
    .process-left {
        flex: none;
        height: 500px;
    }

    .process-section {
        flex-direction: column;
    }

    .contact-form-area {
        padding: 100px 10%;
    }

    .opportunities-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .right-content {
        margin-top: 0%;
    }

    .opportunities-section {
        padding: 10%;
    }

    .large-title {
        font-size: 60px;
        line-height: 65px;
    }
}

@media (max-width: 768px) {
    .floating-button {
        width: 65px;
    }

    .large-title {
        font-size: 50px;
        line-height: 50px;
    }

    .opp-subheading {
        font-size: 20px;
    }

    .opp-text {
        font-size: 14px;
    }
    .col-title {
    font-size: 20px;
}
.address-block p {
    font-size: 14px;
}
}

@media (max-width: 576px) {
    .process-pill h2 {
        font-size: 40px;
        height: 30px;
    }

    .process-pill {
        background-color: var(--custom-orange);
        padding: 30px 30px;
        border-radius: 100px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .large-title {
        font-size: 40px;
        line-height: 40px;
    }

    .opportunities-section {
        padding: 20% 15%;
    }

    .contact-form-area {
        padding: 100px 15%;
    }
}
