/* ====== BASIC RESET & GLOBAL STYLES ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    padding-top: 80px;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====== FIXED HEADER ====== */
header {
    background: #191970;
    color: white;
    padding: 0.8rem 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo-image {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    background-color: white;
    padding: 4px;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: 2px solid #3498db;
    margin-right: 15px;
    flex-shrink: 0;
}

.logo span {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

/* ====== NAVIGATION CONTAINER ====== */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Home Tab - Always Visible */
.home-nav {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.home-nav:hover {
    background-color: rgba(255,255,255,0.15);
    color: #3498db;
}

/* Hamburger Menu - Always Visible */
.hamburger {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger:hover {
    background-color: rgba(255,255,255,0.15);
    color: #3498db;
}

/* ====== DROPDOWN MENU ====== */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 20px;
    background: white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-radius: 15px;
    z-index: 1000;
    min-width: 280px;
    padding: 20px 0;
    border: 2px solid #191970;
}

.dropdown.show {
    display: block;
}

.dropdown a {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    color: #333;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 15px;
    border-radius: 10px;
    gap: 15px;
}

.dropdown a i {
    font-size: 1.4rem;
    color: #191970;
    width: 30px;
    text-align: center;
}

.dropdown a:hover {
    background: linear-gradient(to right, #191970, #2a2a9e);
    color: white;
    transform: translateX(10px);
}

.dropdown a:hover i {
    color: white;
}

/* Modal Styles */
#plan-confirm-modal {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 3px solid #191970;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10001;
    max-width: 400px;
    width: 90%;
}

#plan-confirm-modal.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

#plan-confirm-modal .message-icon {
    color: #191970;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

#plan-confirm-modal .message-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.4;
}

/* Read-only fields */
input[readonly] {
    background-color: #f5f5f5 !important;
    color: #666 !important;
    cursor: not-allowed !important;
    border-color: #ddd !important;
}

.disabled-field {
    opacity: 0.7;
    pointer-events: none;
}

/* Modal Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
}

.modal-overlay.show {
    display: block;
}

/* ====== HERO SECTION ====== */
.hero {
    background: linear-gradient(to right, #20B2AA, #3CB371);
    color: white;
    text-align: center;
    padding: 2.4rem 1rem;
    margin-bottom: 0.8rem; /* Reduced from 1.6rem to half */
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin: 0 auto 0.8rem;
    color: black;
    font-weight: bold;
    opacity: 0.9;
    white-space: nowrap;
    padding: 0 30px;
}

/* ====== BUTTONS ====== */
.btn {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ====== CONTENT SECTIONS ====== */
section {
    padding: 2rem 0; /* Reduced from 4rem to half */
    border-bottom: 1px solid #eee;
}

section:last-of-type {
    border-bottom: none;
}

.section-title {
    text-align: center;
    margin-bottom: 1.5rem; /* Reduced from 3rem to half */
    color: #2c3e50;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: #3498db;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* ====== SERVICES SECTION ====== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.storage-card {
    cursor: pointer;
}

.click-hint {
    margin-top: 1rem;
    color: #3498db;
    font-size: 0.9rem;
    font-weight: 500;
}

.click-hint i {
    margin-right: 5px;
}

/* ====== PRICING TABLE ====== */
.pricing-table-wrapper {
    overflow-x: auto;
    margin: 1rem 0; /* Reduced from 2rem to half */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.rate-chart.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 800px;
}

.rate-chart.pricing-table th {
    background: linear-gradient(135deg, #2c3e50, #4a6491);
    color: white;
    padding: 15px 10px;
    font-weight: 600;
    text-align: center;
    font-size: 1.0rem;
}

.rate-chart.pricing-table td {
    padding: 12px 10px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 1.0rem;
}

.rate-chart.pricing-table tr:hover {
    background-color: #f9f9f9;
}

.rate-chart.pricing-table .storage-size {
    font-weight: 700;
    color: #2c3e50;
    background: #f8f9fa;
}

.rate-chart.pricing-table td:nth-child(3),
.rate-chart.pricing-table td:nth-child(5) {
    color: #27ae60;
    font-weight: 600;
}

.rate-chart.pricing-table td:nth-child(3)::before,
.rate-chart.pricing-table td:nth-child(5)::before {
    content: "Rs. ";
    font-weight: 400;
}

.buy-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.buy-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* ====== FOOTER ====== */
footer {
    background-color: #191970;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.company-name {
    font-size: 1.1rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #3498db;
}

.copyright {
    opacity: 0.8;
    font-size: 0.8rem;
}
.footer-links {
    margin-top: 0.8rem;      /* Space above the links */
    display: flex;
    flex-wrap: wrap;          /* Wrap to next line on small screens */
    justify-content: center;
    gap: 0.5rem;              /* Gap between links */
    font-size: 0.9rem;
}
/* Footer links styling */
.footer-links a {
    color: #ffffff;        
    font-size: 14px;
    text-decoration: none;  
    opacity: 0.85;   
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;          
    text-decoration: underline;
}
.footer-links .separator {
    color: #ffffff;
    opacity: 0.6;
}

/* ====== PAYMENT SECTION STYLES ====== */
.payment-section {
    background: #f8f9fa;
    padding: 2rem 0; /* Reduced from 4rem to half */
    display: none;
}

.payment-step {
    display: none;
}

.payment-step.active {
    display: block;
}

/* Terms & Conditions Box */
.terms-box {
    background: white;
    border-radius: 12px;
    border: 3px solid #191970;
    width: 60%;
    max-width: 800px;
    margin: 0 auto 2rem;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.terms-content {
    height: 100%;
    overflow-y: auto;
    padding: 2rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.terms-content::-webkit-scrollbar {
    width: 8px;
}

.terms-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.terms-content::-webkit-scrollbar-thumb {
    background: #191970;
    border-radius: 4px;
}

.terms-content::-webkit-scrollbar-thumb:hover {
    background: #20B2AA;
}

/* Agreement Options */
.terms-actions {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.agreement-options {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.agreement-option {
    position: relative;
}

.agreement-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.agreement-option label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 15px 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.agree-label {
    color: #3498db;
    border-color: #3498db;
}

.disagree-label {
    color: #e74c3c;
    border-color: #e74c3c;
}

.agreement-option input[type="radio"]:checked + label {
    background: linear-gradient(135deg, #191970, #2a2a9e);
    color: white;
    transform: scale(1.05);
}

.agreement-option input[type="radio"]:checked + .agree-label {
    background: #3498db;
}

.agreement-option input[type="radio"]:checked + .disagree-label {
    background: #e74c3c;
}

.radio-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agreement-option input[type="radio"]:checked + label .radio-circle::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.terms-buttons {
    margin-top: 2rem;
}

.btn-next {
    background: #3498db;
    color: white;
    padding: 15px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.btn-next:enabled {
    opacity: 1;
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.btn-next:enabled:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

/* Client Form Styles */
.client-form {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 2px solid #191970;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group.horizontal-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.required {
    color: #e74c3c;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="number"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #666;
}

/* Radio Groups */
.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.radio-group.horizontal {
    flex-direction: row;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
}

.radio-option label {
    margin-bottom: 0;
    font-weight: 500;
    cursor: pointer;
}

/* Radio button groups organization */
.radio-group-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-group-title {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Mode of Transaction section */
.mode-transaction-group {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

/* Amount section */
.amount-group {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    margin-top: 1rem;
}

.amount-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0.5rem;
}

.amount-input-group span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

/* Terms agreement section */
.terms-agreement-group {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    margin-top: 1rem;
}

.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
}

.terms-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.terms-checkbox label {
    margin-bottom: 0;
    font-weight: 500;
    cursor: pointer;
}

/* Agreed status section */
.agreed-status-group {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    margin-top: 1rem;
}

/* Important notice section */
.important-notice-group {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #ffeaa7;
    margin-top: 1rem;
    color: #856404;
}

.important-notice-group .form-group label {
    color: #856404;
}

/* Duration Inputs */
.duration-group {
    display: flex;
    gap: 20px;
}

.duration-input {
    flex: 1;
}

.duration-input label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.duration-input input.error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1) !important;
}

#duration-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Agreed Text */
.agreed-text {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #d4edda;
    border-radius: 8px;
    border: 2px solid #c3e6cb;
}

.agreed-icon {
    color: #155724;
    font-weight: bold;
    font-size: 1.3rem;
}

.agreed-message {
    font-weight: 700;
    color: #155724;
    font-size: 1.1rem;
}

/* Warning Box */
.warning-box {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8d7da;
    border: 2px solid #f5c6cb;
    border-radius: 8px;
    margin: 1.5rem 0;
    align-items: flex-start;
}

.warning-icon {
    color: #721c24;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warning-text {
    color: #721c24;
    font-size: 1rem;
    line-height: 1.5;
}

.warning-text strong {
    font-size: 1.1rem;
}

/* Final Agreement */
.form-final-agreement {
    margin: 2rem 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.final-agreement-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.final-agreement-option label {
    padding: 12px 20px;
    font-size: 1.1rem;
}

.disagree-confirmation {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    margin-top: 1rem;
    border: 2px solid #e74c3c;
}

.confirmation-text {
    color: #721c24;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.confirmation-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-confirm-yes {
    background: #e74c3c;
    color: white;
}

.btn-confirm-yes:hover {
    background: #c0392b;
}

.btn-confirm-no {
    background: #3498db;
    color: white;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #eee;
}

.btn-prev {
    background: #95a5a6;
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-prev:hover {
    background: #7f8c8d;
}

.btn-submit {
    background: #3498db;
    color: white;
    padding: 12px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0.5;
}

.btn-submit:enabled {
    opacity: 1;
    background: linear-gradient(135deg, #3498db, #2980b9);
    animation: glow 2s infinite alternate;
}

.btn-submit:enabled:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px #3498db, 0 0 10px #3498db;
    }
    to {
        box-shadow: 0 0 10px #3498db, 0 0 20px #3498db;
    }
}

/* Payment Options */
.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.payment-column {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 2px solid #191970;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.payment-header {
    background: #191970;
    color: white;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.payment-icon {
    font-size: 2.5rem;
    color: #20B2AA;
}

.payment-header h3 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
    color: white;
}

.payment-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* UPI Payment Styles */
.qr-code {
    max-width: 250px;
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.upi-instruction {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    text-align: center;
    padding: 8px 15px;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 4px solid #3CB371;
}

/* Bank Details Styles */
.bank-details {
    width: 100%;
}

.bank-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.bank-detail-item:last-child {
    border-bottom: none;
}

.bank-detail-item i {
    font-size: 1.3rem;
    color: #191970;
    min-width: 25px;
    text-align: center;
}

.detail-label {
    display: block;
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 3px;
}

.detail-value {
    display: block;
    font-size: 1.3rem;
    color: #191970;
    font-weight: 700;
    line-height: 1.4;
}

/* Payment Footer */
.payment-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.btn-home {
    background: #191970;
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: #20B2AA;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-home i {
    font-size: 1.2rem;
}

/* Message Box */
.message-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    z-index: 10000;
    text-align: center;
    max-width: 400px;
    border: 3px solid #191970;
    display: none;
}

.message-box.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.message-icon {
    font-size: 3rem;
    color: #191970;
    margin-bottom: 1rem;
}

.message-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

/* Blur effect for payment options */
.payment-column.blurred {
    position: relative;
    overflow: hidden;
}

.payment-column.blurred .payment-content {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
}

.payment-column.blurred::after {
    content: 'Click to reveal';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(25, 25, 112, 0.9);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    z-index: 2;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.payment-column.blurred:hover::after {
    background: rgba(52, 152, 219, 0.9);
}

/* PAN Number input styling */
.pan-input {
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Error styling */
input.error, textarea.error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1) !important;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    /* Logo adjustments */
    .logo-image {
        height: 40px;
        width: 40px;
        margin-right: 10px;
    }
    
    .logo span {
        font-size: 1.5rem;
    }
    
    /* Navigation adjustments */
    .nav-right {
        gap: 10px;
    }
    
    .home-nav {
        font-size: 1rem;
        padding: 6px 12px;
    }
    
    .hamburger {
        font-size: 1.3rem;
        padding: 6px 10px;
    }
    
    /* Dropdown adjustments */
    .dropdown {
        right: 10px;
        min-width: 250px;
        padding: 15px 0;
    }
    
    .dropdown a {
        padding: 14px 20px;
        font-size: 1.1rem;
    }
    
    .dropdown a i {
        font-size: 1.2rem;
    }
    
    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        min-height: 280px;
    }
    
    /* Hero section */
    .hero {
        padding: 1.8rem 1rem;
        margin-bottom: 0.6rem; /* Adjusted */
    }
    
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 0.6rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin: 0 auto 0.6rem;
        color: black;
        font-weight: bold;
        white-space: normal;
        max-width: 90%;
        padding: 0 15px;
    }
    
    /* Pricing table */
    .pricing-table-wrapper {
        margin: 1rem -20px;
        border-radius: 0;
    }
    
    .rate-chart.pricing-table {
        min-width: 700px;
    }
    
    .rate-chart.pricing-table th,
    .rate-chart.pricing-table td {
        padding: 10px 6px;
        font-size: 0.85rem;
    }
    
    .buy-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    /* Terms Box */
    .terms-box {
        width: 90%;
        height: 350px;
    }
    
    /* Agreement Options */
    .agreement-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .agreement-option label {
        font-size: 1.1rem;
        padding: 12px 20px;
    }
    
    /* Client Form */
    .client-form {
        padding: 1.5rem;
        width: 95%;
    }
    
   .radio-group.horizontal {
        flex-direction: column;
        gap: 10px;
    }
    
    .duration-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .final-agreement-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .confirmation-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Payment Options */
    .payment-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .payment-header h3 {
        font-size: 1.5rem;
    }
    
    .payment-icon {
        font-size: 2rem;
    }
    
    .qr-code {
        max-width: 200px;
    }
    
    .detail-value {
        font-size: 1.1rem;
    }
    
    .bank-detail-item {
        padding: 0.8rem 0;
        gap: 12px;
    }
    
    .bank-detail-item i {
        font-size: 1.1rem;
    }
    
    .btn-home {
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    /* Form Actions */
    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-prev, .btn-submit {
        width: 100%;
    }
    
    /* Footer adjustments for mobile */
    footer {
        padding: 0.8rem 0;
        margin-top: 1.5rem;
    }
    
    .footer-text {
        gap: 0.4rem;
    }
    
    .company-name {
        font-size: 1rem;
    }
    
    .copyright {
        font-size: 0.75rem;
    }
    
    section {
        padding: 1.5rem 0; /* Reduced for mobile */
    }
}

@media (max-width: 480px) {
    .logo span {
        font-size: 1.3rem;
    }
    
    .home-nav {
        font-size: 0.9rem;
        padding: 5px 10px;
    }
    
    .hamburger {
        font-size: 1.2rem;
        padding: 5px 8px;
    }
    
    /* Additional footer adjustments for very small screens */
    footer {
        padding: 0.6rem 0;
        margin-top: 1rem;
    }
    
    .company-name {
        font-size: 0.9rem;
    }
    
    .copyright {
        font-size: 0.7rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .mode-transaction-group,
    .amount-group,
    .terms-agreement-group,
    .agreed-status-group,
    .important-notice-group {
        padding: 1rem;
    }
    
    .radio-group.horizontal {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .amount-input-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .terms-checkbox {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* aichatbot.css - AI Chatbot Styles for Odelya Management */

/* ====== AI CHAT BOX STYLES ====== */
#ai-chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

/* Chat Toggle Button */
.chat-toggle {
    background: linear-gradient(135deg, #191970, #3498db);
    color: white;
    border-radius: 25px;
    padding: 12px 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.chat-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #3498db, #191970);
}

.chat-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1rem;
}

.chat-banner i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Chat Window */
.chat-window {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 380px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 2px solid #191970;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.chat-header {
    background: linear-gradient(135deg, #191970, #2a2a9e);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.close-chat {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-chat:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Chat Messages Area */
.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f8f9fa;
    min-height: 0;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #191970;
    border-radius: 3px;
}

/* Message Bubbles */
.message {
    max-width: 85%;
    padding: 10px 15px;
    border-radius: 18px;
    line-height: 1.4;
    word-wrap: break-word;
    animation: fadeIn 0.3s ease;
    font-size: 0.95rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.user-message {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
    font-weight: 600;
}

.bot-message {
    background: white;
    color: #333;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
    border: 1px solid #eee;
}

/* Chat Input Area */
.chat-input-area {
    padding: 15px;
    border-top: 1px solid #eee;
    background: white;
    flex-shrink: 0;
}

.input-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

#chat-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#chat-input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

#chat-input::placeholder {
    color: #999;
}

.send-btn {
    background: #3498db;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.send-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.send-btn:active {
    transform: translateY(0);
}

/* Suggested Questions */
.suggested-questions {
    padding: 10px 15px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
    display: none;
    flex-direction: column;
    gap: 8px;
    max-height: 150px;
    overflow-y: auto;
    flex-shrink: 0;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { 
        opacity: 0;
        max-height: 0;
        padding: 0 15px;
    }
    to { 
        opacity: 1;
        max-height: 150px;
        padding: 10px 15px;
    }
}

.suggested-questions.show {
    display: flex;
}

.question-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    color: #2c3e50;
    text-align: left;
}

.question-item:hover {
    background: #3498db;
    color: white;
    border-color: #3498db;
    transform: translateX(3px);
}

/* Typing indicator */
.typing-indicator {
    background: white;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 10px 15px;
    align-self: flex-start;
    display: flex;
    gap: 5px;
    align-items: center;
    margin-bottom: 5px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #3498db;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-5px);
    }
}

/* Responsive Design for Chat Box */
@media (max-width: 768px) {
    .chat-window {
        width: 320px;
        height: 420px;
        bottom: 50px;
        right: 10px;
        position: fixed;
    }
    
    #ai-chat-container {
        bottom: 10px;
        right: 10px;
    }
    
    .message {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .chat-window {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        height: 70vh;
        bottom: 60px;
        position: fixed;
    }
    
    .chat-toggle {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Add these new styles for mobile keyboard handling */
@media (max-width: 768px) {
    /* Fix for iOS Safari */
    @supports (-webkit-overflow-scrolling: touch) {
        .chat-window {
            position: fixed;
            transform: translateZ(0);
            -webkit-transform: translateZ(0);
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }
    }
    
    /* Prevent body scrolling when chat is open */
    body.chat-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    /* Adjust chat window when keyboard is open */
    .chat-window.keyboard-open {
        height: 60vh;
        bottom: 0;
    }
}
