.section-image {
    width: auto;
    height: auto; /* Set a fixed height */
    object-fit: cover; /* This will ensure the image covers the area without distortion */
    border-radius: 8px;
    padding: 20px;
}
    .section-card {
        margin-bottom: 2rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        height: 100%;
    }
    .sol-title{
        height: 35px;
    }
    .section-description {
        white-space: pre-wrap;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .sol_top {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        margin-bottom: 2rem;
    }
    .solutions-row {
        display: flex;
        flex-wrap: wrap;
        margin: 1rem;
        justify-content: center;
    }
    .solution-col {
        flex: 0 0 25%;
        max-width: 25%;
        padding: 1rem;
    }
    .sol-body{
        text-align: justify;
    }
    @media (max-width: 1199px) {
        .solution-col {
            flex: 0 0 33.333333%;
            max-width: 33.333333%;
        }
    }
    @media (max-width: 991px) {
        .solution-col {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }
    @media (max-width: 767px) {
        .solution-col {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }

    /* Updated Form Styles */
    .form-container {
        max-width: 600px;
        margin: 4rem auto;
        padding: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        background-color: white;
    }
    .form-step {
        display: none;
    }
    .form-step.active {
        display: block;
    }
    .progress-bar {
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px;
        position: relative;
        flex-direction: row;
    }
    
    .step-indicator {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #eee;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #666;
        font-weight: bold;
        position: relative;
        z-index: 2;
        transition: all 0.3s ease;
    }
    .step-indicator.active {
        background-color: #d72328;
        color: white;
    }
    .form-group {
        margin-bottom: 20px;
    }
    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
    }
    .form-control {
        width: 100%;
        padding: 10px;
        border: 2px solid #eee;
        border-radius: 4px;
        transition: border-color 0.3s ease;
    }
    .form-control:focus {
        outline: none;
        border-color: #d72328;
    }
    .error-message {
        color: #d72328;
        font-size: 14px;
        margin-top: 5px;
        display: none;
    }
    .form-navigation {
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
    }
    .btn {
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    .btn-secondary {
        background-color: #eee;
        color: #666;
    }
    .btn-secondary:hover {
        background-color: #ddd;
    }
    .btn-primary {
        background-color: #d72328;
        color: white;
    }
    .btn-primary:hover {
        background-color: #c41f24;
    }
    .btn-success {
        background-color: #d72328;
        color: white;
    }
    .btn-success:hover {
        background-color: #c41f24;
    }
    .conversation-style {
        display: flex;
        align-items: end;
        flex-wrap: wrap;
        gap: 10px;
    }
    .conversation-style label {
        font-size: 18px;
        color: #333;
        margin-bottom: 0;
    }
    .inline-input {
        flex: 1;
        min-width: 200px;
        border: none;
        border-bottom: 2px solid #eee;
        border-radius: 0;
        padding: 5px 10px;
        font-size: 18px;
    }
    .inline-input:focus {
        outline: none;
        border-bottom-color: #d72328;
    }
    textarea.form-control {
        border: 2px solid #eee;
        border-radius: 4px;
    }
    .step-indicator {
        background-color: #fff;
        border: 2px solid #eee;
        color: #666;
        transition: all 0.3s ease;
    }
    .step-indicator.active {
        border-color: #d72328;
        background-color: #d72328;
    }
    .error-message {
        flex-basis: 100%;
        margin-top: 5px;
    }
    @media (max-width: 768px) {
        .conversation-style {
            flex-direction: column;
            align-items: flex-start;
        }
        .inline-input {
            width: 100%;
        }
    }


    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

    .form-section {
        padding: 40px 0;
        background-color: #f9f9f9;
    }

    .typeform-container {
        max-width: 800px;
        margin: 0 auto;
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .typeform {
        position: relative;
        padding: 40px 20px;
        min-height: 400px;
        font-family: 'Inter', sans-serif;
    }

    .progress-bar {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #eee;
    }

    .progress {
        height: 100%;
        background-color: #d72328;
        transition: width 0.3s ease;
    }

    .question-container {
        margin-top: 20px;
        min-height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .question {
        display: none;
        animation: fadeIn 0.5s ease;
    }

    .question.active {
        display: block;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .question h2 {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
    }

    .subtext {
        font-size: 16px;
        color: #666;
        margin-bottom: 20px;
    }

    .input-wrapper {
        margin-top: 20px;
    }

    input, select, textarea {
        width: 100%;
        padding: 15px;
        font-size: 16px;
        border: 2px solid #eee;
        border-radius: 4px;
        background-color: transparent;
        transition: all 0.3s ease;
        font-family: 'Inter', sans-serif;
    }

    input:focus, select:focus, textarea:focus {
        outline: none;
        border-color: #d72328;
    }

    textarea {
        min-height: 100px;
        resize: vertical;
    }

    .select-wrapper {
        position: relative;
    }

    .select-wrapper::after {
        content: '▼';
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #666;
        pointer-events: none;
    }

    .button-wrapper {
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        padding: 12px 24px;
        border: none;
        border-radius: 4px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn svg {
        fill: currentColor;
    }

    .btn-previous {
        background-color: #eee;
        color: #666;
    }

    .btn-next, .btn-submit {
        background-color: #d72328;
        color: white;
    }

    .btn:hover {
        opacity: 0.9;
    }

    .thank-you {
        text-align: center;
    }
    
    .form-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
      }

    @media (max-width: 768px) {
        .typeform {
            padding: 20px;
        }

        .question h2 {
            font-size: 24px;
        }

        .subtext {
            font-size: 14px;
        }
    }    


