html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }

}

/*.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}*/

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background-image: url("../img/Seal_SchoolofEngineering.svg");
    background-color: rgba(255, 255, 255, 0.90);
    background-blend-mode: lighten;
    background-size: 45%;
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: 50%;
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: orange;
}

input[type=submit] {
    background-color: #f76800;
    color: #fff;
    border: none;
    padding: 0.45rem 0.7rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    margin-right: 0.5rem;
}


.section-wrapper {
    display: flex;
    justify-content: center; /* center horizontally */
    align-items: center;
    gap: 2rem; /* space between */
    margin-top: 3rem;
}

.section-container {
    display: flex;
    flex-direction: column;
}

    /* First (bigger) box */
    .section-container:first-child {
        flex: 2; /* takes more space */
    }

    /* Second (smaller) box */
    .section-container:last-child {
        flex: 1; /* takes less space */
        flex-direction: column; /* stack title + text vertically */
        justify-content: center; /* center content vertically inside */
    }

.text-container {
    background: #fff;
    border: 2px solid #f76800;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0;
}

.title {
    color: #f76800;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}



/*.card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }*/

#modelText {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
}


/* Discipline Radio Buttons */
.discipline-radio-group {
    display: grid;
    margin-bottom: 0.5rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem 1rem;
    align-items: start;
}

.discipline-radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    margin: 0; /* remove per-label vertical margins so grid spacing controls it */
}

/* Ensure checkboxes don't get stretched by the generic input rule */
.discipline-option input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex: 0 0 auto;
}

/* Responsive: reduce columns on smaller screens */
@media (max-width: 900px) {
    .discipline-radio-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .discipline-radio-group {
        grid-template-columns: 1fr;
    }
}

/* responsive tweaks (preserve existing mobile rules) */
@media (max-width: 768px) {
    .section-wrapper {
        flex-direction: column;
        height: auto;
        align-items: center;
    }

    .section-container {
        max-width: 90%;
    }
}