body {
    background: url('../../../enquiry/assets/images/enquiry_bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    font-family: "Gilroy", sans-serif;
}

.section-wrapper {
    min-height: 100vh;
    padding: 60px 40px;
}

.hero-content img {
    max-width: 100%;
}

.info-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 26px 24px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    height: 100%;
}

.info-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.85;
    margin-bottom: 14px;
}

.info-contact {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.form-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #0d2c5a;
    margin-bottom: 20px;
}

.form-control,
.form-select {
    height: 44px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px
}

textarea.form-control {
    height: 100px;
}

.form-label {
    font-weight: 600;
    color: black;
    font-size: 14px;
}

.btn-primary {
    height: 48px;
    font-weight: 600;
    border-radius: 15px;
    background: #0089C6;
    border: none;
}

.btn-submit:hover {
    background: #166c85;
}

.btn-cancel {
    height: 48px;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .section-wrapper {
        padding: 30px 20px;
    }

    .form-card {
        background: #f5f5f5;
        border-radius: 18px;
        padding: 22px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }

    .form-title {
        font-size: 24px;
        font-weight: 700;
        color: #0d2c5a;
        margin-bottom: 20px;
    }

    .form-control,
    .form-select {
        height: 36px;
        border-radius: 8px;
        border: 1px solid #ddd;
        font-size: 14px
    }

    textarea.form-control {
        height: 80px;
    }
}

@font-face {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 400;
    src: url("https://cpgs.jainuniversity.ac.in/report/vasavi/assets/fonts/Gilroy-Regular.woff2") format("woff2");
}

@font-face {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 600;
    src: url("https://cpgs.jainuniversity.ac.in/report/vasavi/assets/fonts/Gilroy-SemiBold.woff2") format("woff2");
}

@font-face {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 900;
    src: url("https://cpgs.jainuniversity.ac.in/report/vasavi/assets/fonts/Gilroy-Black.ttf") format("truetype");
}




.message,
.help-block {
    color: red;
    float: right;
    padding: 2px 0px 5px 0px;
}


/* Captcha Styles */
.captcha-container {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.captcha-box {
    display: flex;
    gap: 12px;
    align-items: center;
}

.captcha-display {
    background: linear-gradient(135deg, #ffcb1e 0%, #ffa500 100%);
    color: #1a1a2e;
    padding: 5px 20px;
    border-radius: 12px;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    user-select: none;
    text-align: center;

    /* box-shadow: 0 4px 12px rgba(255, 203, 30, 0.3); */
}

.captcha-reload {
    width: 48px;
    height: 48px;
    background: #fafbfc;
    border: 2px solid #e0e4e8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #667eea;
    font-size: 20px;
}

.captcha-reload:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: rotate(180deg);
}

.captcha-input-wrapper {
    flex: 1;
    min-width: 200px;
}




/* Captcha validation status */
.valid {
    color: #27ae60;
    font-weight: 600;
    font-size: 13px;
}

.invalid {
    color: #e74c3c;
    font-weight: 600;
    font-size: 13px;
}