* {
    box-sizing: border-box;
}


.somnath-request-section {
    background:var(--gredient-bg);
    position: relative;
    padding: 60px 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.somnath-request-bg-pattern-left {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    opacity: 0.1;
    background-image: radial-gradient(#ffffff 2px, transparent 2px);
    background-size: 15px 15px;
    pointer-events: none;
}

.somnath-request-bg-pattern-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 250px;
    height: 100%;
    opacity: 0.08;
    background: linear-gradient(135deg, transparent 50%, #ffffff 50%);
    background-size: 30px 30px;
    pointer-events: none;
}

.somnath-request-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.somnath-request-content-block {
    flex: 1;
    color: #ffffff;
}

.somnath-request-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.somnath-request-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 480px;
}

.somnath-request-form {
    flex: 1.2;
    width: 100%;
}

.somnath-request-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.somnath-request-input-group {
    position: relative;
    width: 100%;
}

.somnath-request-input {
    width: 100%;
    padding: 17px 20px 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    background-color: #ffffff;
    color: #011c4b;
    outline: none;
    font-family: inherit;
    transition: all 0.2s ease-in-out;
}

.somnath-request-label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #4b5563;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
}

.somnath-request-input:focus+.somnath-request-label,
.somnath-request-input:not(:placeholder-shown)+.somnath-request-label {
    top: 15px;
    font-size: 0.75rem;
    color: #6b7280;
}

.somnath-request-submit-btn {
    background:var(--gredient-bg);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    padding: 13px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
}

/* .somnath-request-submit-btn:hover {
    background-color: #d93c0c;
} */

/* @annotation: media-queries; */
@media (min-width: 680px) {
    .somnath-request-form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .somnath-request-section {
        padding: 80px 40px;
    }

    .somnath-request-container {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .somnath-request-title {
        font-size: 2.6rem;
    }
}