/* ===================================
   MOBILE-FIRST PAGES STYLESHEET
   Enhanced User Capture Modal - Modern & Responsive
   =================================== */

/* User Capture Modal */
.user-capture-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(5px);
}

.user-capture-modal.show {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    width: 95%;
    max-width: 500px;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10000;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .modal-content {
        width: 98%;
        max-height: 98vh;
        border-radius: 20px 20px 0 0;
        margin: 0;
        position: fixed;
        bottom: 0;
        top: auto;
        max-width: none;
        animation: slideUpMobile 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .user-capture-modal {
        align-items: flex-end;
    }
}

@keyframes slideUpMobile {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 20px 20px 0 0;
    position: sticky;
    top: 0;
    z-index: 10;
    text-align: center;
}

.modal-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modal-header p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(90deg);
}

.modal-body {
    padding: 40px 30px;
}

.modal-body p {
    text-align: center;
    color: #64748b;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
}

/* Form Styling */
#userCaptureForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: #9ca3af;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667eea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    margin-top: 10px;
}

.submit-btn::before {
    content: '';
    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.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn i {
    margin-right: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Privacy Note */
.privacy-note {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    border-left: 4px solid #0ea5e9;
}

.privacy-note p {
    margin: 0;
    color: #0c4a6e;
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: center;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 20px;
    animation: fadeInScale 0.5s ease;
}

.success-message i {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 20px;
    animation: bounceIn 0.6s ease;
}

.success-message h4 {
    color: #065f46;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.success-message p {
    color: #047857;
    font-size: 1rem;
    line-height: 1.6;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-footer {
    padding: 20px 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 0 0 20px 20px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.skip-btn {
    background: transparent;
    border: 2px solid #e5e7eb;
    color: #6b7280;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.skip-btn:hover {
    border-color: #667eea;
    color: #667eea;
    background: rgba(102, 126, 234, 0.05);
    transform: translateY(-2px);
}

.skip-btn i {
    transition: transform 0.3s ease;
}

.skip-btn:hover i {
    transform: translateX(3px);
}

/* Mobile Optimizations */
@media (max-width: 640px) {
    .modal-header {
        padding: 25px 20px;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
    
    .form-group input,
    .form-group select {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .submit-btn {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .privacy-note {
        padding: 15px;
    }
    
    .modal-footer {
        padding: 15px 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Form Validation Styles */
.form-group input:invalid,
.form-group select:invalid {
    border-color: #ef4444;
}

.form-group input:valid,
.form-group select:valid {
    border-color: #10b981;
}

/* Loading State */
.submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    margin: auto;
    border: 2px solid transparent;
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* Error Message Styles */
.error-message {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 5px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #fecaca;
    border-radius: 8px;
    animation: fadeIn 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.error-message::before {
    content: '⚠️';
    font-size: 1rem;
}

/* Enhanced Mobile Experience */
@media (max-width: 480px) {
    .modal-content {
        width: 100%;
        max-height: 100vh;
        border-radius: 20px 20px 0 0;
    }
    
    .modal-header {
        padding: 20px 15px;
        border-radius: 20px 20px 0 0;
    }
    
    .modal-header h3 {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group select {
        padding: 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .submit-btn {
        padding: 18px 20px;
        font-size: 1rem;
        width: 100%;
    }
    
    .privacy-note {
        padding: 15px;
        margin: 15px 0;
    }
    
    .modal-footer {
        padding: 15px;
    }
    
    .skip-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}

/* Zoho Form Styling - Exact Structure with Modern Design */
.modal-body form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-body form h2 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.modal-body form p {
    color: #64748b;
    font-size: 1rem;
    text-align: center;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.modal-body form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1f2937;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-body form input[type="text"] {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    color: #1f2937; /* Dark text color */
}

.modal-body form input[type="text"]::placeholder {
    color: #9ca3af; /* Light gray placeholder */
}

.modal-body form input[type="text"]:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.modal-body form select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667eea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
    margin-bottom: 10px;
}

.modal-body form select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Enhanced Dropdown Styling for Purpose Selection */
.purpose-select-enhanced {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667eea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
    margin-bottom: 10px;
    color: #1f2937; /* Dark text color */
}

.purpose-select-enhanced:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.purpose-select-enhanced:hover {
    border-color: #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}

.purpose-select-enhanced option {
    padding: 12px 16px;
    background: #ffffff;
    color: #1f2937;
    border: none;
    font-size: 1rem;
}

.purpose-select-enhanced option:hover {
    background: #f3f4f6;
}

.purpose-select-enhanced option:checked {
    background: #667eea;
    color: white;
}

.purpose-hint {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
    font-style: italic;
}

/* Mobile Responsiveness for Enhanced Dropdown */
@media (max-width: 640px) {
    .purpose-select-enhanced {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
        padding-right: 45px;
    }
}

.modal-body form button[type="submit"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    margin-top: 20px;
}

.modal-body form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.modal-body form button[type="submit"] em {
    font-style: normal;
}

/* Loading State for Submit Button */
.modal-body form button[type="submit"].loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.modal-body form button[type="submit"].loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    margin: auto;
    border: 2px solid transparent;
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
    .modal-body form input[type="text"],
    .modal-body form select {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .modal-body form button[type="submit"] {
        padding: 16px 24px;
        font-size: 1rem;
    }
}

/* Input Icons (Optional Enhancement) */
.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Progress Indicator */
.form-progress {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin-bottom: 20px;
    overflow: hidden;
}

.form-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
}

/* Tooltips */
.tooltip {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    cursor: help;
}

.tooltip::before {
    content: '?';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 16px;
    font-size: 0.7rem;
    font-weight: bold;
}

.tooltip:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #374151;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 1000;
    margin-bottom: 5px;
}

/* Accessibility Improvements */
.form-group input:focus,
.form-group select:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.submit-btn:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.close-btn:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    .modal-content {
        background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
        color: #f9fafb;
    }
    
    .form-group input,
    .form-group select {
        background: #374151;
        border-color: #4b5563;
        color: #f9fafb;
    }
    
    .form-group input::placeholder {
        color: #9ca3af;
    }
    
    .privacy-note {
        background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
        border-left-color: #3b82f6;
    }
    
    .privacy-note p {
        color: #dbeafe;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .modal-content,
    .submit-btn,
    .close-btn,
    .form-group input,
    .form-group select {
        animation: none;
        transition: none;
    }
    
    .submit-btn::before {
        display: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .modal-content {
        border: 2px solid #000;
    }
    
    .submit-btn {
        border: 2px solid #000;
    }
    
    .form-group input,
    .form-group select {
        border: 2px solid #000;
    }
}

/* Blog Carousel Styles */
.blog-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    background: var(--card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-slides {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.blog-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.blog-content h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 15px;
    text-align: center;
}

.blog-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.6;
}

.read-more-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
    text-align: center;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 107, 223, 0.3);
}

.blog-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-carousel-control:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.blog-carousel-control.prev {
    left: 20px;
}

.blog-carousel-control.next {
    right: 20px;
}

.blog-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.blog-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Mobile Responsive for Blog Carousel */
@media (max-width: 768px) {
    .blog-carousel-container {
        margin: 0 20px;
        border-radius: 10px;
    }
    
    .blog-slide {
        padding: 30px 20px;
    }
    
    .blog-content h3 {
        font-size: 1.5rem;
    }
    
    .blog-content p {
        font-size: 1rem;
    }
    
    .blog-carousel-control {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .blog-carousel-control.prev {
        left: 10px;
    }
    
    .blog-carousel-control.next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .blog-slide {
        padding: 20px 15px;
    }
    
    .blog-content h3 {
        font-size: 1.3rem;
    }
    
    .blog-content p {
        font-size: 0.9rem;
    }
    
    .read-more-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .blog-carousel-control {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}
.blog-carousel {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(74, 107, 223, 0.05) 0%, rgba(52, 152, 219, 0.05) 100%);
}

.blog-carousel h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.blog-carousel .section-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: var(--text-color);
    opacity: 0.8;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
}

.slide-content {
    display: flex;
    align-items: center;
    min-height: 300px;
    padding: 40px;
}

.slide-image {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.slide-image i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.slide-text {
    flex: 0 0 60%;
    padding: 0 30px;
}

.slide-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.slide-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--text-color);
}

.slide-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 107, 223, 0.4);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 50px;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Content Section */
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Card Components */
.intro-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.intro-card h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.intro-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Example/Analogy Section */
.example-section,
.analogy-section {
    background: linear-gradient(135deg, rgba(74, 107, 223, 0.05) 0%, rgba(52, 152, 219, 0.05) 100%);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.example-section h3,
.analogy-section h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.example-section h3 i,
.analogy-section h3 i {
    font-size: 1.4rem;
}

.example-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.example-icon {
    flex: 0 0 100px;
    text-align: center;
}

.example-icon i {
    font-size: 3rem;
    color: var(--secondary-color);
}

.example-text {
    flex: 1;
}

.example-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 15px;
}

/* Benefit Cards Grid */
.advisor-benefits,
.vegetable-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-card,
.vegetable-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover,
.vegetable-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.benefit-card h3,
.vegetable-card h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-card h3 i,
.vegetable-card h4 i {
    font-size: 1.2rem;
}

.benefit-card p,
.vegetable-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Vegetable Comparison Specific */
.vegetable-card.direct-shares {
    border-top: 4px solid #e74c3c;
}

.vegetable-card.mutual-funds {
    border-top: 4px solid #27ae60;
}

.vegetable-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.vegetable-card.direct-shares .vegetable-icon {
    color: #e74c3c;
}

.vegetable-card.mutual-funds .vegetable-icon {
    color: #27ae60;
}

/* Comparison Table */
.comparison-table-section {
    margin-bottom: 50px;
}

.comparison-table-section h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 25px;
    text-align: center;
}

.comparison-table {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: rgba(74, 107, 223, 0.05);
}

.comparison-table .feature-column {
    font-weight: 600;
    color: var(--primary-color);
    width: 25%;
}

.comparison-table .shares-column {
    width: 37.5%;
    border-right: 1px solid var(--border-color);
}

.comparison-table .funds-column {
    width: 37.5%;
}

/* Role Comparison Cards */
.comparison-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.role-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.role-card.distributor {
    border-top: 4px solid #3498db;
}

.role-card.advisor {
    border-top: 4px solid #e74c3c;
}

.role-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.role-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.role-icon.distributor {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.role-icon.advisor {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.role-title {
    flex: 1;
}

.role-title h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.role-title p {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
}

.role-details {
    margin-top: 20px;
}

.role-detail {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(74, 107, 223, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.role-detail h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.role-detail h4 i {
    font-size: 0.9rem;
}

.role-detail p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
}

/* Safety/Conclusion Sections */
.safety-section,
.bottom-line-section,
.conclusion-section {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 50px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.safety-section h3,
.bottom-line-section h3,
.conclusion-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.safety-section h3 i,
.bottom-line-section h3 i,
.conclusion-section h3 i {
    font-size: 1.5rem;
}

.safety-section p,
.bottom-line-section p,
.conclusion-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
}

/* Choice Section */
.choice-section {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.choice-section h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 25px;
    text-align: center;
}

.choice-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.choice-option {
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.choice-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.choice-option i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.choice-option h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.choice-option p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(74, 107, 223, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 50px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 107, 223, 0.4);
}

/* Mobile-First Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .example-content {
        flex-direction: column;
        text-align: center;
    }
    
    .example-icon {
        flex: 0 0 auto;
    }
    
    .advisor-benefits,
    .vegetable-comparison,
    .comparison-section {
        grid-template-columns: 1fr;
    }
    
    .benefit-card,
    .vegetable-card,
    .role-card {
        padding: 20px;
    }
    
    .choice-options {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .comparison-table table {
        min-width: 600px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .intro-card,
    .example-section,
    .safety-section,
    .choice-section,
    .cta-section {
        padding: 20px;
    }
    
    .benefit-card h3,
    .vegetable-card h4 {
        font-size: 1.2rem;
    }
    
    .benefit-card p,
    .vegetable-card p {
        font-size: 0.9rem;
    }
}

/* Consolidated Hero Section - Merged from styles.css and pages.css */
.hero {
    /* Background styling from pages.css */
    background-image: url('../images/banner_Durg.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Fallback background color from styles.css */
    background-color: var(--secondary-color);
    
    /* Positioning and layout from pages.css */
    position: relative;
    margin: 64px 5% 0 5%; /* 64px top for nav, 5% left/right margins */
    padding: 0;
    height: 60vh; /* Fixed height for desktop */
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Responsive margins and sizing */
@media (max-width: 1200px) {
    .hero {
        margin: 64px 3% 0 3%;
        height: 55vh;
    }
}

@media (max-width: 992px) {
    .hero {
        margin: 64px 2% 0 2%;
        height: 50vh;
    }
}

@media (max-width: 768px) {
    .hero {
        margin: 0 2% 0 2%; /* Stick to nav on mobile */
        height: 45vh;
        background-size: 85% auto;
    }
}

@media (max-width: 480px) {
    .hero {
        margin: 0 1% 0 1%; /* Minimal margins on small mobile */
        height: 40vh;
        background-size: 80% auto;
    }
}

/* Hero Content Section - Simple like other sections */
.hero-content-section {
    text-align: center;
    padding: 4rem 0;
}

.hero-content-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero-content-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero-content-section {
        padding: 2rem 0;
    }
    
    .hero-content-section h1 {
        font-size: 2rem;
    }
    
    .hero-content-section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content-section {
        padding: 1.5rem 0;
    }
    
    .hero-content-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-content-section p {
        font-size: 0.95rem;
    }
}

.hero-content {
    text-align: center;
    max-width: 100%;
    flex: 1;
}

.hero-content h1 {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Simplified About Us Page Styles */
.hero-card {
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: white;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.9) 0%, rgba(174, 183, 184, 0.9) 100%);
    margin-left: auto;
    margin-right: auto;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
    text-align: left;
    max-width: 60%;
}

.hero-text h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
    text-align: left;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
    text-align: justify;
    text-justify: inter-word;
}

.hero-image {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-width: 180px;
}

.profile-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
}

.badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    color: white;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
    width: 100%;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.credentials .badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.philosophy-section {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.philosophy-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.philosophy-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-section {
    margin-bottom: 40px;
}

.features-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(74, 107, 223, 0.2);
    border-color: var(--primary-color);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.cta-section {
    background: linear-gradient(135deg, rgba(74, 107, 223, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-btn {
    min-width: 200px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .credentials {
        justify-content: center;
    }
    
    .profile-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .philosophy-section,
    .cta-section {
        padding: 30px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Center the Explore Calculators button as well */
.hero-content .cta-btn {
    display: inline-block;
    margin: 20px auto 0;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white !important;
    backdrop-filter: blur(10px);
}

.hero-content .cta-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Fix the root cause - remove mobile menu border */
#mobile-menu {
    border-top: none !important;
}

/* Hero positioning fix */
.hero {
    position: relative;
    z-index: 1;
    margin-top: 0 !important;
}

/* Desktop: Account for navigation height */
@media (min-width: 769px) {
    .hero {
        margin-top: 64px; /* Space below navigation */
    }
}

/* Mobile: No gap - hero sticks to navigation */
@media (max-width: 768px) {
    .hero {
        margin-top: 0;
        padding-top: 0;
    }
}

/* Ensure banner image scales properly on all devices */
@media (max-width: 992px) {
    .hero {
        --banner-size: 80% auto !important;
    }
}

@media (max-width: 768px) {
    .hero {
        --banner-size: 85% auto !important;
    }
}

@media (max-width: 480px) {
    .hero {
        --banner-size: 90% auto !important;
    }
}

/* Responsive for Get Started Button */
@media (max-width: 768px) {
    .get-started-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .get-started-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Wealth Management Section */
.wealth-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.wealth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23667eea' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.5;
}

.wealth-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.wealth-content a {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 20px;
    overflow: hidden;
}

.wealth-content a:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
}

.wealth-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    display: block;
}

.wealth-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Mobile Responsiveness for Wealth Section */
@media (max-width: 768px) {
    .wealth-section {
        padding: 60px 0;
    }
    
    .wealth-image {
        border-radius: 15px;
    }
}

@media (max-width: 640px) {
    .wealth-section {
        padding: 40px 0;
    }
    
    .wealth-image {
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .wealth-image:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
}
