.headerfordek {
    display: flex;
    align-items: center;
    justify-content: space-between !important;
}

.header-logo {
    width: 200px;
    height: auto;
}

@media (max-width: 576px) {
    .headerformobile {
        display: flex;
        align-items: center;
        justify-content: space-between !important;
    }
}

.about-info-card {
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid #781921;
    padding: 10px;
}

.about-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
}

.about-info-card .xb-item--title {
    font-size: 18px;
    font-weight: 700;
}

.about-info-card .xb-item--desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.about-description {
    background: #f0f4ff;
    border-left: 5px solid #781921;
}

.lead {
    padding: 20px;
    font-size: 16px;
}

.scroll-container {
    width: 100%;
    padding: 6px 0;
    overflow: hidden;
    position: relative;
    border-radius: 6px;
}

.scroll-text {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
}

.scroll-text span {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media(max-width: 567px) {
    .header-logo {
        width: 150px;
    }

    .scroll-container {
        padding: 1px 0;
    }
}


/* Admission form styles - scoped to avoid global conflicts */
.admission-form-card {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e6e6e6;
    padding: 28px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    border-radius: 6px;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.admission-form-card h3 {
    text-align: center;
    color: #3b0f5f;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.admission-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.admission-form-col {
    flex: 1 1 100%;
}

@media(min-width:720px) {
    .admission-form-col.half {
        flex: 1 1 calc(50% - 7px);
    }
}

.form-group {
    margin-bottom: 12px;
}

.form-label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 9px 11px;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    background: #fff;
}

.form-control:focus {
    outline: none;
    border-color: #8a4ca9;
    box-shadow: 0 0 0 3px rgba(138, 76, 169, 0.08);
}

.select-control {
    appearance: none;
    background-image: none;
}

.small-note {
    font-size: 12px;
    color: #666;
    margin-top: 6px;
}

.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 18px;
}

.submit-row {
    text-align: center;
    margin-top: 16px;
}

.btn-submit {
    background: #781921;
    color: #fff;
    border: none;
    padding: 5px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.alert-error {
    color: #b22222;
    font-size: 13px;
    margin-top: 6px;
}

.captcha-fake {
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 4px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.required {
    color: #d00;
    margin-left: 4px;
}