:root {
    --bg-light-color: #f8f9fa;
    --bg-dark: #1a1a2e;
    --secondary-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --grey-light-color: #adb5bd;
    --primary-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --bg-dark-light: #2c2c54;
    --white-color: #ffffff;
    --grey-color: #6c757d;
    --primary-color: #667eea;
    --dark-color: #212529;
    --bg-white: #ffffff;
}

/* Header Styles */
.header-wrapper {
    background-color: var(--bg-light-color);
    position: relative;
    z-index: 2;
}

.topbar-wrapper {
    background-color: #024a9c;
    font-family: var(--secondary-font);
    color: var(--grey-light-color);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    height: 50px;
    display: flex;
    align-items: center;
}

.header-2 .topbar-wrapper {
    background-color: #024a9c;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 700px) {
    .topbar-inner .topbar-left {
        display: none;
    }
}

@media (min-width: 700px) {
    .topbar-inner .topbar-left {
        color: #ffffff;
    }
}

@media (max-width: 767px) {
    .topbar-inner .topbar-right {
        width: 100%;
    }

    .topbar-inner .topbar-right ul {
        justify-content: space-between;
    }
}

.header-2 .topbar-left {
    color: #ffffff;
    font-family: var(--primary-font);
    font-weight: 600;
}

.topbar-right ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.topbar-right ul li a {
    color: #ffffff;
    text-decoration: none;
}

.topbar-right ul li a:hover {
    color: #ffffff;
}

.navigation-wrapper {
    background-color: var(--bg-white);
}

.header-2 .navigation-wrapper {
    background-color: #fff;
}

.navigation-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 768px) {
    .navigation-inner {
        flex-direction: column;
        align-items: center;
    }

    .header-right ul {
        justify-content: center;
    }

    #hindi-text {
        order: -1;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .hindi-text-wrapper b {
        font-size: 20px;
    }

    .hindi-text-wrapper .subtitle {
        font-size: 14px;
    }

    .page-header-info h2 {
        font-size: 26px;
    }
}

.navigation-inner .site-logo {
    max-width: 160px;
}

.navigation-inner .site-logo img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 1200px) {
    .navigation-inner {
        grid-template-columns: 130px 1fr 130px;
        grid-column-gap: 30px;
    }
}

.header-2 .navigation-inner {
    grid-template-columns: 200px 1fr 300px;
}

#hindi-text {
    text-align: center;
}

.hindi-text-wrapper {
    font-family: var(--primary-font);
    color: var(--dark-color);
}

.hindi-text-wrapper b {
    font-size: 24px;
    color: #024a9c;
}

.hindi-text-wrapper .subtitle {
    font-size: 16px;
    color: #666;
}

.header-right ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
}

.default-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.2s;
}

.default-btn:hover {
    transform: translateY(-2px);
    color: white !important;
}

.btn-tophead {
    background: #ef7f19;
}

.hide-on-mobile {
    display: block;
}

@media (max-width: 768px) {
    .hide-on-mobile {
        display: none;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    position: relative;
    color: white;
    text-align: center;
}

.page-header-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0,0,0,0.1); */
    background: linear-gradient(45deg, rgba(23, 23, 47, 1) 0%, rgba(8, 159, 172, 0) 100%);
}

.page-header-info {
    position: relative;
    z-index: 1;
}

.page-header-info h2 {
    font-size: 36px;
    margin: 0;
    font-weight: bold;
}

/* Original Form Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    margin-bottom: 20px;
}

.form-header {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.form-header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.required {
    color: #e74c3c;
}

.form-section {
    max-width: 850px;
    margin: 30px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', sans-serif;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"],
textarea,
select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="file"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #667eea;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

input[type="radio"] {
    width: auto;
    margin: 0;
}

.file-upload {
    border: 2px dashed #ddd;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    background: #f9f9f9;
    transition: border-color 0.3s;
}

.file-upload:hover {
    border-color: #667eea;
}

.file-info {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.file-upload input[type="file"] {
    padding: 8px;
    border: 1px solid #ddd;
    background: white;
}

textarea {
    height: 80px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    transition: transform 0.2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}

.error ul {
    margin: 0;
    padding-left: 20px;
}

.section-title {
    background-color: #f8f9fa;
    border-left: 5px solid #5e4b9c;
    color: #333;
    padding: 12px 18px;
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 25px;
}

.field-error {
    border-color: #e74c3c !important;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
}