﻿.enquiry-section {
    background: #f3f4f7;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* LEFT SIDE */

.admission-badge {
    background: #eef0ff;
    color: #6c63ff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.main-heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(90deg, #6c63ff, #8e44ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-description {
    margin-top: 15px;
    color: #6c757d;
    max-width: 500px;
    font-size: 15px;
}

.feature-wrapper {
    margin-top: 25px;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-box {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

    .icon-box.blue {
        background: #4e73df;
    }

    .icon-box.orange {
        background: #f6a609;
    }

    .icon-box.green {
        background: #1cc88a;
    }

.feature-item h6 {
    margin-bottom: 4px;
    font-weight: 600;
    color:mediumpurple
}

.feature-item p {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}

.rating-box {
    background: #e9ecff;
    padding: 18px;
    border-radius: 15px;
    max-width: 420px;
    margin-top: 20px;
}

/* RIGHT SIDE CARD */

.enquiry-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

.card-top-border {
    height: 6px;
    background: linear-gradient(90deg, #6c63ff, #8e44ff);
}

.form-title {
    font-weight: 600;
}

.form-subtitle {
    font-size: 14px;
    color: #6c757d;
}

/* Inputs */

.custom-input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    background: #f8f9fb;
    font-size: 14px;
}

    .custom-input:focus {
        border-color: #6c63ff;
        background: #fff;
        box-shadow: 0 0 0 2px rgba(108,99,255,0.15);
        outline: none;
    }

/* Subject Pills */

.section-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

/* Subject Pill List - Improved Spacing */
/* Subject Pill List - Clean & Spaced */
.subject-pill-list {
    border-collapse: separate;
    border-spacing: 12px 10px; /* Increased 12px for horizontal gap */
    margin-left: -10px;
}

    /* Hide the actual checkbox square */
    .subject-pill-list input[type="checkbox"] {
        display: none !important;
    }

    /* Make the label look like a button/pill */
    .subject-pill-list label {
        background: #f1f3f7;
        padding: 8px 18px; /* Increased padding for better size */
        border-radius: 25px;
        font-size: 12px;
        cursor: pointer;
        border: 1px solid #e0e0e0;
        display: block; /* Changed to block to fill the table cell */
        text-align: center;
        transition: all 0.2s ease;
        white-space: nowrap;
    }

    /* Selected State */
    .subject-pill-list input:checked + label {
        background: #eef0ff;
        border-color: #6c63ff;
        color: #6c63ff;
        box-shadow: 0 2px 8px rgba(108, 99, 255, 0.2);
    }

/* Timeline */

/* Timeline Spacing Fix */
.timeline-list td {
    padding-right: 30px; /* Increased gap between options */
    padding-top: 10px;
}

.timeline-list input[type="radio"] {
    margin-right: 10px; /* Space between circle and text */
    cursor: pointer;
    transform: scale(1.1); /* Slightly larger radio for better UX */
}

.timeline-list label {
    cursor: pointer;
    font-size: 14px;
    vertical-align: middle;
}
/* Button */

.btn-submit {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #6c63ff, #8e44ff);
}
