body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.5;
    font-size: 14px;
    font-weight: 400;
}

/* Header Styles */
.header-section {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 12px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: #333;
}

.brand-text {
    color: #4361ee;
    font-weight: 600;
}

.logo-img {
    height: 36px;
    width: auto;
}

.nav-link {
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    transition: all 0.3s ease;
    color: #555;
    font-size: 0.9rem;
}

.nav-link:hover, .nav-link.active {
    color: #4361ee;
}

.whatsapp-btn {
    background-color: #25D366;
    border-color: #25D366;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* Main Content Styles */
.main-wrapper {
    min-height: calc(100vh - 130px);
    background-color: #f5f7fa;
}

.content-card {
    background-color: #ffffff;
    padding: 1.8rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

h1 {
    font-weight: 700;
    color: #222;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
}

.small-text {
    font-size: 0.9rem;
}

.section-title {
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 16px;
    color: #4361ee;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 40px;
    background-color: #4361ee;
}

.feature-title {
    color: #444;
    font-weight: 500;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.form-section {
    border-bottom: 1px solid #eaecef;
    padding-bottom: 18px;
    margin-bottom: 24px;
}

.form-section:last-child {
    border-bottom: none;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: #444;
    font-size: 0.85rem;
}

.form-control {
    border: 1px solid #dce0e6;
    border-radius: 4px;
    padding: 8px 12px;
    transition: border-color 0.3s;
    font-size: 0.9rem;
    height: auto;
}

.form-control:focus {
    border-color: #4361ee;
    box-shadow: 0 0 0 0.15rem rgba(67, 97, 238, 0.15);
}

.btn-primary {
    background-color: #4361ee;
    border-color: #4361ee;
    padding: 10px 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background-color: #3251e0;
    border-color: #2c49d6;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(67, 97, 238, 0.2);
}

.btn-success {
    background-color: #10b981;
    border-color: #10b981;
}

.btn-success:hover {
    background-color: #0ea371;
    border-color: #0c9268;
}

.img-thumbnail {
    border: 1px solid #dce0e6;
    border-radius: 6px;
}

/* Simplified Footer Styles */
.footer {
    background-color: #ffffff;
    color: #666;
    border-top: 1px solid #eaecef;
    font-size: 0.85rem;
}

.text-danger {
    font-weight: 500;
}

/* Form Check Styles */
.form-check {
    padding-left: 1.6rem;
    margin-bottom: 0.25rem;
}

.form-check-input {
    margin-top: 0.2rem;
    margin-left: -1.6rem;
    width: 0.9rem;
    height: 0.9rem;
}

.form-check-label {
    font-size: 0.85rem;
    color: #444;
}

/* Input Group Styles */
.input-group-text {
    background-color: #f8f9fa;
    border-color: #dce0e6;
    color: #666;
    font-size: 0.9rem;
}

.form-text {
    font-size: 0.75rem;
    color: #6c757d;
}

/* Map Container Styles */
.map-container {
    height: 250px;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #dce0e6;
    margin-bottom: 10px;
}

/* OTP Input Styles */
.otp-input-container {
    gap: 4px;
}

.otp-input {
    width: 40px;
    height: 45px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
}

.otp-input:focus {
    border-color: #4361ee;
    box-shadow: 0 0 0 0.15rem rgba(67, 97, 238, 0.15);
}

@media (max-width: 480px) {
    .otp-input {
        width: 36px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Verified Badge */
.verified-badge {
    color: #10b981;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.verified-badge i {
    margin-right: 4px;
}

/* File Upload Preview */
.file-preview {
    display: inline-block;
    padding: 6px 12px;
    background-color: #f8f9fa;
    border: 1px solid #dce0e6;
    border-radius: 4px;
    margin-top: 6px;
    font-size: 0.85rem;
}

.file-preview i {
    margin-right: 5px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .main-wrapper {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .content-card {
        padding: 1.3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .section-title {
        font-size: 1rem;
    }
    
    .content-card {
        padding: 1rem;
    }
    
    .form-control {
        font-size: 0.85rem;
    }
    
    .btn-lg {
        width: 100%;
        padding: 8px;
        font-size: 0.9rem;
    }
}


