/* ===================================
   FINCAP - Financial Services Landing Page
   Custom CSS Styles with Bootstrap
   =================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --cyan-50: #ecfeff;
    --cyan-500: #06b6d4;
    --cyan-600: #0891b2;
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --pink-50: #fdf2f8;
    --pink-100: #fce7f3;
    --pink-500: #ec4899;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--emerald-50) 0%, var(--teal-50) 50%, var(--cyan-50) 100%);
    min-height: 100vh;
    color: var(--gray-700);
    line-height: 1.6;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: linear-gradient(90deg, rgb(130 243 206 / 95%), rgba(20, 184, 166, 0.95));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(52, 211, 153, 0.2);
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.3);
}

.header .container {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.75rem;
    color: rgba(209, 250, 229, 1);
    margin: 0;
}

.btn-header {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-header:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(209, 250, 229, 0.5), rgba(240, 253, 250, 0.5), rgba(207, 250, 254, 0.5));
    padding: 1rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-circle-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: linear-gradient(135deg, rgba(110, 231, 183, 0.2), transparent);
    border-radius: 50%;
    filter: blur(60px);
}

.hero-bg-circle-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: linear-gradient(315deg, rgba(94, 234, 212, 0.2), transparent);
    border-radius: 50%;
    filter: blur(60px);
}

.hero-bg-circle-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: linear-gradient(90deg, rgba(165, 243, 252, 0.1), rgba(167, 243, 208, 0.1));
    border-radius: 50%;
    filter: blur(60px);
}

.badge-instant {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.3);
    border: 1px solid rgba(167, 243, 208, 0.5);
}

.badge-instant svg {
    width: 16px;
    height: 16px;
    color: var(--emerald-600);
}

.badge-instant span {
    font-size: 0.875rem;
    color: var(--emerald-700);
    font-weight: 500;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-title .highlight {
    background: linear-gradient(90deg, var(--emerald-600), var(--teal-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

/* Feature Badges */
.feature-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border-radius: 0.75rem;
    padding: 0.75rem 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
}

.feature-badge svg {
    width: 20px;
    height: 20px;
    color: var(--emerald-500);
}

.feature-badge span {
    font-size: 0.875rem;
    color: var(--gray-700);
}

/* Form Card */
.form-card-wrapper {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
}

.form-card-wrapper::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: rgba(167, 243, 208, 0.5);
    border-radius: 50%;
    filter: blur(60px);
}

.form-card-wrapper::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(191, 219, 254, 0.5);
    border-radius: 50%;
    filter: blur(60px);
}

.form-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: none;
}

.form-card-header {
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600), var(--blue-600));
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.form-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.form-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 96px;
    height: 96px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, 50%);
}

.form-card-header h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.form-card-header p {
    color: rgba(209, 250, 229, 1);
    position: relative;
    z-index: 1;
}

.quick-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    position: relative;
    z-index: 1;
}

.quick-badge svg {
    width: 20px;
    height: 20px;
}

.quick-badge span {
    font-size: 0.875rem;
}

.form-card-body {
    padding: 2rem 3rem 3rem;
}

/* Form Sections */
.form-section {
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.form-section-personal {
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.5), rgba(239, 246, 255, 0.5));
    border: 1px solid rgba(167, 243, 208, 0.5);
}

.form-section-location {
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.5), rgba(250, 245, 255, 0.5));
    border: 1px solid rgba(191, 219, 254, 0.5);
}

.form-section-financial {
    background: linear-gradient(135deg, rgba(250, 245, 255, 0.5), rgba(253, 242, 248, 0.5));
    border: 1px solid rgba(243, 232, 255, 0.5);
}

.form-section-employment {
    background: linear-gradient(135deg, rgba(255, 247, 237, 0.5), rgba(255, 251, 235, 0.5));
    border: 1px solid rgba(254, 215, 170, 0.5);
}

.section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-number {
    width: 32px;
    height: 32px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

.section-number-emerald {
    background: var(--emerald-500);
}

.section-number-blue {
    background: var(--blue-500);
}

.section-number-purple {
    background: var(--purple-500);
}

.section-number-orange {
    background: var(--orange-500);
}

/* Form Controls */
.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    height: 48px;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:hover,
.form-select:hover {
    border-color: var(--emerald-300);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
    outline: none;
}

.form-control::placeholder {
    color: var(--gray-500);
}

/* Radio Buttons */
.employment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.employment-option {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.employment-option input[type="radio"] {
    display: none;
}

.employment-option label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--gray-700);
}

.employment-option label:hover {
    border-color: var(--emerald-500);
    background: var(--emerald-50);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.employment-option input[type="radio"]:checked + label {
    border-color: var(--emerald-500);
    background: var(--emerald-50);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid var(--emerald-500);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.employment-option input[type="radio"]:checked + label .radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--emerald-600);
    border-radius: 50%;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    background: linear-gradient(90deg, var(--emerald-500), var(--emerald-600), var(--blue-600));
    border: none;
    color: white;
    height: 64px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    /* background: linear-gradient(90deg, var(--emerald-600), var(--emerald-700), var(--blue-700)); */
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.5);
    transform: scale(1.02);
    color: white;
}

.btn-submit:active {
    transform: scale(0.98);
}

.btn-submit .shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.btn-submit:hover .shine {
    left: 100%;
}

/* Security Badge */
.security-info {
    text-align: center;
    margin-top: 1.5rem;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--emerald-600);
    margin-bottom: 0.75rem;
}

.security-badge svg {
    width: 16px;
    height: 16px;
}

.security-badge span {
    font-size: 0.875rem;
}

.security-info p {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.security-info a {
    color: var(--emerald-600);
    text-decoration: none;
}

.security-info a:hover {
    text-decoration: underline;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(236, 253, 245, 0.8), rgba(240, 253, 250, 0.8));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(167, 243, 208, 0.3);
    border-bottom: 1px solid rgba(167, 243, 208, 0.3);
    padding: 4rem 0;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon svg {
    width: 32px;
    height: 32px;
}

.stat-icon-emerald {
    background: var(--emerald-100);
}

.stat-icon-emerald svg {
    color: var(--emerald-600);
}

.stat-icon-blue {
    background: var(--blue-100);
}

.stat-icon-blue svg {
    color: var(--blue-600);
}

.stat-icon-purple {
    background: var(--purple-100);
}

.stat-icon-purple svg {
    color: var(--purple-600);
}

.stat-icon-orange {
    background: var(--orange-100);
}

.stat-icon-orange svg {
    color: var(--orange-600);
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Partners Section */
.partners-section {
    background: linear-gradient(135deg, rgba(240, 253, 250, 0.5), rgba(236, 254, 255, 0.5), rgba(236, 253, 245, 0.5));
    padding: 4rem 0;
}

.partners-title {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 2.5rem;
}

.partner-logo {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.partner-icici {
    border: 2px solid #dc2626;
    border-radius: 0.375rem;
    padding: 0.25rem 0.75rem;
    text-align: center;
}

.partner-icici span {
    color: #dc2626;
    font-weight: 600;
}

.partner-icici div {
    font-size: 0.75rem;
    color: #dc2626;
}

.partner-moneyview {
    color: var(--emerald-600);
    font-weight: 600;
    font-size: 1.125rem;
}

.partner-lendingkart {
    color: var(--blue-600);
    font-weight: 600;
    font-size: 1.125rem;
}

.partner-upwards {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.partner-upwards-icon {
    width: 24px;
    height: 24px;
    background: var(--emerald-500);
    border-radius: 0.25rem;
}

.partner-upwards span {
    color: var(--gray-800);
    font-weight: 600;
}

/* Information Section */
.info-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(236, 253, 245, 0.7), rgba(236, 254, 255, 0.7));
    padding: 4rem 0;
}

.info-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

.info-title svg {
    width: 24px;
    height: 24px;
    color: var(--emerald-600);
}

/* Tabs */
.nav-tabs-custom {
    background: var(--gray-100);
    border-radius: 0.75rem;
    padding: 0.25rem;
    margin-bottom: 2.5rem;
    border: none;
}

.nav-tabs-custom .nav-link {
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    color: var(--gray-600);
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-tabs-custom .nav-link:hover {
    color: var(--emerald-600);
}

.nav-tabs-custom .nav-link.active {
    background: white;
    color: var(--emerald-600);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Info Cards */
.info-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.info-card-emerald {
    border-left: 4px solid var(--emerald-500);
}

.info-card-blue {
    border-left: 4px solid var(--blue-500);
}

.info-card-purple {
    border-left: 4px solid var(--purple-500);
}

.info-card-orange {
    border-left: 4px solid var(--orange-500);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-card h3 svg {
    width: 24px;
    height: 24px;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.info-card li.with-icon {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.info-card li.with-icon svg {
    width: 20px;
    height: 20px;
    color: var(--purple-600);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* How It Works Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.step-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid transparent;
}

.step-item-emerald {
    background: linear-gradient(135deg, var(--emerald-50), white);
    border-color: var(--emerald-100);
}

.step-item-blue {
    background: linear-gradient(135deg, var(--blue-50), white);
    border-color: var(--blue-100);
}

.step-item-purple {
    background: linear-gradient(135deg, var(--purple-50), white);
    border-color: var(--purple-100);
}

.step-item-orange {
    background: linear-gradient(135deg, var(--orange-50), white);
    border-color: var(--orange-100);
}

.step-item-pink {
    background: linear-gradient(135deg, var(--pink-50), white);
    border-color: var(--pink-100);
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}

.step-number-emerald {
    background: var(--emerald-500);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.step-number-blue {
    background: var(--blue-500);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}

.step-number-purple {
    background: var(--purple-500);
    box-shadow: 0 10px 15px -3px rgba(168, 85, 247, 0.3);
}

.step-number-orange {
    background: var(--orange-500);
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
}

.step-number-pink {
    background: var(--pink-500);
    box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.3);
}

.step-item p {
    color: var(--gray-700);
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--emerald-50), var(--teal-50), var(--cyan-50));
    padding: 4rem 0;
}

.contact-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: none;
}

.contact-header {
    background: linear-gradient(90deg, var(--emerald-500), var(--teal-500), var(--cyan-500));
    padding: 2rem;
    color: white;
}

.contact-header h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-header p {
    color: var(--emerald-50);
}

.contact-body {
    padding: 2rem 2.5rem;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.contact-info-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--gray-50);
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    border-color: var(--emerald-300);
}

.contact-info-box svg {
    width: 20px;
    height: 20px;
    color: var(--emerald-600);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-info-box p {
    color: var(--gray-700);
    margin: 0;
}

.contact-info-box a {
    color: var(--emerald-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-box a:hover {
    color: var(--emerald-700);
}

/* Footer */
.footer {
    background: linear-gradient(90deg, var(--emerald-600), var(--teal-600), var(--cyan-600));
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    color: var(--emerald-50);
    margin: 0;
}

.footer span {
    color: white;
}

/* Mobile Feature Badges */
.mobile-badges {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .form-card-body {
        padding: 1.5rem;
    }

    .form-section {
        padding: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 2rem 0 3rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .feature-badges {
        display: none;
    }

    .mobile-badges {
        display: flex;
    }

    .form-card-header {
        padding: 1.5rem;
    }

    .form-card-header h3 {
        font-size: 1.5rem;
    }

    .form-card-header-content {
        display: none;
    }

    .btn-submit {
        height: 56px;
        font-size: 1rem;
    }

    .nav-tabs-custom {
        overflow-x: auto;
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .nav-tabs-custom .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .header .container {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-text h1 {
        font-size: 1.25rem;
    }

    .btn-header span {
        display: none;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .employment-option {
        min-width: 100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

