/* --- SAFFRON SURGE THEME --- */
:root {
    /* Colors */
    --saffron-main: #FF9933;
    --saffron-deep: #D35400;
    --saffron-light: #FFF7ED;
    
    --navy-royal: #000080;
    --navy-dark: #0A192F;
    
    --bg-page: #FDFBF7; /* Warm White */
    --surface-white: #FFFFFF;
    
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    
    --shadow-soft: 0 20px 40px rgba(0,0,0,0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

body {
    /* height: 100vh; overflow: hidden; */
    min-height: 100vh; /* Allow it to be taller than the screen */
    overflow-y: auto;
    background: var(--bg-page);
    color: var(--text-primary);
}

/* --- MAIN LAYOUT --- */
.surge-layout { display: flex; width: 100%; min-height: 100vh; } /*removed height: 100%*/

/* --- LEFT PANEL: THE SURGE (Diagonal Cut) --- */
.surge-brand {
    width: 50%; /* Slightly wider to accommodate the slant */
    background: linear-gradient(135deg, #FF9933 0%, #E67E22 50%, #C0392B 100%);
    position: relative;
    color: white;
    display: flex; flex-direction: column; justify-content: center; padding: 80px;
    
    /* THE DIAGONAL CUT - "Dropping towards white" */
    /* clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%); */
    z-index: 10;
    border: none;
    overflow: hidden;
}
.dispersive-waves {
    position: absolute;
    top: 0;
    right: 0;
    width: 25%; /* How deep the waves go into the orange */
    height: 100%;
    z-index: 5;
    pointer-events: none;
}
.wave {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat-y;
    background-size: 100% 1200px; /* High-res wave pattern */
    /* This SVG is a vertical sine wave */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 500 1500' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M350,0 C450,250 150,500 350,750 C550,1000 250,1250 350,1500 L500,1500 L500,0 Z' fill='%23FDFBF7'/%3E%3C/svg%3E");
}

/* --- WAVE LAYER 1: The "Mist" (Fast & Faint) --- */
.wave1 {
    opacity: 0.3;
    width: 140%; /* Wider to stick out further */
    right: 30px; /* Offset */
    background-position: 0 0;
    animation: flowUp 25s linear infinite;
    filter: blur(4px); /* Blur creates the dispersion! */
}

/* --- WAVE LAYER 2: The "Echo" (Medium Speed) --- */
.wave2 {
    opacity: 0.5;
    width: 120%;
    right: 15px;
    background-position: 0 500px;
    animation: flowDown 35s linear infinite;
}

/* --- WAVE LAYER 3: The "Solid Cut" (Slow & Crisp) --- */
.wave3 {
    opacity: 1; /* Fully solid white */
    width: 100%;
    right: 0; /* Tight to edge */
    background-position: 0 200px;
    animation: flowUp 45s linear infinite;
}

/* --- ANIMATIONS --- */
@keyframes flowUp {
    from { background-position: 0 0; }
    to { background-position: 0 -1200px; }
}

@keyframes flowDown {
    from { background-position: 0 0; }
    to { background-position: 0 1200px; }
}
@keyframes pulse { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } 100% { opacity: 1; transform: scale(1); } }
@keyframes zoomIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes slideIn { from { transform: translateX(50px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes footerSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 0.7; transform: translateY(0); } }
@keyframes heartbeat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.3); } }

/* Texture to remove "Flatness" */
.texture-overlay {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v40H0V0zm1 1h38v38H1V1z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.3; pointer-events: none;
}

/* Animation Canvas - High Opacity */
#circuit-canvas { position: absolute; inset: 0; opacity: 0.5; pointer-events: none; }

.brand-content { position: relative; z-index: 20; max-width: 520px; }

.logo-area { display: flex; align-items: center; gap: 15px; margin-bottom: 40px; }
.logo-box {
    background: white; color: var(--saffron-deep);
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.logo-area span { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 22px; letter-spacing: 0.5px; }

.surge-brand h1 {
    font-family: 'Outfit', sans-serif; font-size: 56px; font-weight: 800;
    line-height: 1.1; margin-bottom: 30px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.brand-desc {
    font-size: 15px; line-height: 1.6; margin-bottom: 50px; opacity: 0.9; font-weight: 480; text-shadow: 0 4px 15px rgba(0,0,0,0.15);
    max-width: 450px; font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* --- 1. REPOSITION THE STATUS BADGE (Top Right) --- */
/* --- CENTERED TOP STATUS BADGE --- */
.compliance-badge {
    position: absolute;
    top: 40px; /* Distance from top */
    left: 25%;
    transform: translateX(-50%); /* This perfectly centers it horizontally */
    
    display: inline-flex; 
    align-items: center; 
    gap: 10px;
    background: rgba(255, 255, 255, 0.15); 
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px; 
    border-radius: 50px; 
    font-size: 12px; 
    font-weight: 700;
    backdrop-filter: blur(8px); 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 50;
    letter-spacing: 0.5px;
    color: white;
    white-space: nowrap; /* Prevents text wrapping */
}

/* The Green Dot Pulse */
.pulse-dot { 
    width: 8px; height: 8px; 
    background: #2ecc71; 
    border-radius: 50%; 
    box-shadow: 0 0 10px #2ecc71;
    animation: pulse 2s infinite; 
}

/* --- BOTTOM FOOTER (Anchored Low) --- */
.brand-footer {
    position: absolute; 
    bottom: 25px; /* Pushed lower down */
    left: 80px;   /* Aligned with the text above */
    
    /* Subtle Glass Look */
    background: rgba(255, 255, 255, 0.08); 
    backdrop-filter: blur(10px);           
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 10px;
    max-width: fit-content;
}

.brand-footer p {
    margin: 0;
    font-size: 11px; /* Slightly smaller for elegance */
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.copyright {
    font-weight: 700;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 10px !important;
    margin-top: 3px !important;
    opacity: 0.9 !important;
}

/* --- RIGHT PANEL: FORM --- */
.surge-form-area {
    flex: 1; display: flex; justify-content: center; align-items: center;
    padding: 40px; background: var(--bg-page); position: relative;

    overflow: visible;
    /* Adjust margin to account for the diagonal cut */
    margin-left: -5%; 
    padding-left: 5%;
}

.form-container { width: 100%; max-width: 450px; animation: slideIn 0.6s ease-out; padding-bottom: 50px;}

/* Tabs */
.glass-tabs {
    display: flex; position: relative;
    background: #F1F5F9; padding: 5px; border-radius: 14px;
    margin-bottom: 40px; border: 1px solid #E2E8F0;
}
.tab-slider {
    position: absolute; top: 5px; left: 5px; width: calc(50% - 5px); height: calc(100% - 10px);
    background: white; border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.tab-item {
    flex: 1; position: relative; z-index: 2;
    background: none; border: none; padding: 14px;
    font-size: 14px; font-weight: 700; color: var(--text-secondary); cursor: pointer;
    transition: color 0.3s;
}
.tab-item.active { color: var(--saffron-deep); }

.form-header h2 { font-family: 'Outfit', sans-serif; font-size: 30px; color: var(--navy-royal); margin-bottom: 10px; font-weight: 700; }
.form-header p { font-size: 15px; color: var(--text-secondary); margin-bottom: 35px; }

/* Floating Inputs */
.input-group { position: relative; margin-bottom: 28px; }
.input-group select {
    width: 100%; padding: 14px 0; border: none; border-bottom: 2px solid #E2E8F0;
    background: transparent; font-size: 16px; color: var(--navy-royal); font-weight: 500;
    outline: none; transition: all 0.3s; border-radius: 0; appearance: none;
    
    /* THE FIX: Add SVG Arrow Background */
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2364748B%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 0px top 50%;
    background-size: 10px auto;
    padding-right: 20px; /* Make space for the arrow */
    cursor: pointer;
}
.input-group input {
    width: 100%; padding: 14px 0; border: none; border-bottom: 2px solid #E2E8F0;
    background: transparent; font-size: 16px; color: var(--navy-royal); font-weight: 500;
    outline: none; transition: all 0.3s; border-radius: 0; appearance: none;
}
.input-group input:read-only {
    color: #94A3B8; /* Muted text */
    border-bottom: 2px dashed #E2E8F0; /* Dashed line implies system-controlled */
    background-color: transparent; 
    cursor: not-allowed;
}

/* Optional: Label style when input is read-only */
.input-group input:read-only ~ label {
    color: #94A3B8;
}
.input-group label {
    position: absolute; left: 0; top: 14px; color: var(--text-secondary);
    font-size: 15px; pointer-events: none; transition: all 0.3s ease;
}

/* Active Border Line */
.border-line {
    position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--saffron-main); transition: width 0.3s ease;
}
.input-group input:focus ~ .border-line, 
.input-group select:focus ~ .border-line { width: 100%; }

/* --- FLOATING INPUTS (FIXED) --- */
.input-group { position: relative; margin-bottom: 24px; }

.input-group input, 
.input-group select {
    width: 100%; padding: 14px 0; 
    border: none; border-bottom: 2px solid #E2E8F0;
    background: transparent; 
    font-size: 16px; color: var(--navy-royal); font-weight: 500;
    outline: none; transition: all 0.3s; 
    border-radius: 0; appearance: none;
    z-index: 2; position: relative; /* Ensure input is above label */
}

/* The Label (Default State: Inside) */
.input-group label {
    position: absolute; left: 0; top: 14px; 
    color: var(--text-secondary);
    font-size: 15px; font-weight: 400;
    pointer-events: none; transition: all 0.3s ease;
    z-index: 1; text-transform: none; letter-spacing: 0;
}

/* --- ACTIVE LABEL STATE (Floating Up) --- */
/* Trigger when: Focused OR Filled OR Valid Select (BUT NOT if Disabled) */
.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown):not(:disabled) ~ label,
.input-group select:focus ~ label,
.input-group select:valid:not(:disabled) ~ label {
    top: -10px; 
    font-size: 11px; 
    font-weight: 700; 
    color: var(--saffron-deep); 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
}

/* Active Underline Color */
.input-group input:focus,
.input-group select:focus {
    border-bottom-color: var(--saffron-main);
}

/* Fix for the Dropdown Arrow on Selects */
.input-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2364748B%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 0px top 50%;
    background-size: 10px auto;
    padding-right: 20px;
    appearance: none;    /* Hides default ugly browser arrow */
    -webkit-appearance: none;
}

.eye-toggle { position: absolute; right: 0; top: 12px; cursor: pointer; color: var(--text-secondary); z-index: 10;}
.eye-toggle:hover { color: var(--saffron-main); }


/* Captcha */
.captcha-row { display: flex; gap: 20px; margin-bottom: 30px; align-items: flex-end; }
.captcha-glass {
    background: #FFF7ED; border: 1px dashed var(--saffron-main);
    padding: 0 16px; border-radius: 10px; display: flex; align-items: center; gap: 15px;
    height: 52px; min-width: 140px; justify-content: space-between;
}
.captcha-glass span { font-family: monospace; font-size: 22px; font-weight: 700; letter-spacing: 4px; color: var(--navy-royal); user-select: none; }
.refresh-btn { background: none; border: none; cursor: pointer; color: var(--saffron-deep); font-size: 20px; transition: transform 0.3s; }
.refresh-btn:hover { transform: rotate(180deg); }
.compact { flex: 1; margin-bottom: 0; }

/* Button */
.btn-royal {
    width: 100%; padding: 18px;
    background: linear-gradient(135deg, var(--navy-royal) 0%, var(--navy-dark) 100%);
    color: white; font-weight: 700; font-size: 16px; border: none; border-radius: 14px;
    cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 12px;
    box-shadow: 0 10px 25px rgba(0,0,128,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-royal:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(0,0,128,0.3); }
.arrow { transition: transform 0.2s; }
.btn-royal:hover .arrow { transform: translateX(6px); }

.recover-link { display: block; text-align: center; margin-top: 25px; font-size: 14px; color: var(--navy-royal); font-weight: 600; cursor: pointer; text-decoration: none; opacity: 0.8; transition: opacity 0.2s; }
.recover-link:hover { opacity: 1; text-decoration: underline; }

/* --- MODALS --- */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(10, 25, 47, 0.6);
    backdrop-filter: blur(8px); display: none; justify-content: center; align-items: center; z-index: 1000;
}

.glass-card {
    background: white; padding: 40px; width: 90%; max-width: 450px;
    border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.2); 
    animation: zoomIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}
.glass-card p {
    margin-bottom: 35px; /* Increased from default to allow label space */
    line-height: 1.5;    /* Better readability */
}

/* Modal Header Layout Fix */
.modal-header { 
    display: flex; 
    align-items: center; 
    gap: 15px; /* Space between Icon and Text */
    margin-bottom: 25px; 
}

/* The Warning Icon Badge */
.icon-badge {
    width: 40px; height: 40px;
    background: #FFF7ED; /* Light Saffron Bg */
    color: #E67E22;        /* Deep Saffron Icon */
    border-radius: 50%;    /* Perfect Circle */
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 800;
    box-shadow: 0 4px 10px rgba(230, 126, 34, 0.2);
}

.modal-header h3 { 
    font-family: 'Outfit', sans-serif; 
    color: var(--navy-royal); 
    margin: 0; 
    font-size: 22px; 
}

.close-icon { 
    margin-left: auto; /* Pushes X to the far right */
    background: none; border: none; font-size: 28px; cursor: pointer; color: var(--text-secondary); 
}

/* Button Loading State */
.btn-royal:disabled, .btn-royal.loading {
    background: linear-gradient(135deg, var(--navy-royal) 0%, var(--navy-dark) 100%) !important;
    color: white !important;
    opacity: 0.75 !important; 
    cursor: default !important; 
    transform: none !important;
    box-shadow: none !important;
}

/* Review Table */
.audit-box { background: #F8FAFC; border-radius: 12px; padding: 25px; margin: 25px 0; border: 1px solid #E2E8F0; }
.audit-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed #E2E8F0; font-size: 15px; }
.audit-row:last-child { border-bottom: none; }
.audit-row span { color: var(--text-secondary); font-weight: 500; }
.audit-row strong { color: var(--navy-royal); font-weight: 600; }
.highlight strong { color: var(--saffron-deep); font-family: monospace; letter-spacing: 1px; background: #FFF7ED; padding: 2px 6px; border-radius: 4px; }
.warning-banner { background: #FFF7ED; color: var(--saffron-deep); padding: 12px; border-radius: 8px; font-size: 13px; margin-bottom: 15px; border-left: 4px solid var(--saffron-deep); }

.modal-actions { display: flex; justify-content: flex-end; gap: 15px; }
.btn-ghost { background: white; border: 1px solid #CBD5E1; padding: 14px 24px; border-radius: 12px; cursor: pointer; font-weight: 600; color: var(--text-secondary); transition: all 0.2s; }
.btn-ghost:hover { border-color: var(--navy-royal); color: var(--navy-royal); }

/* --- TOAST --- */
#toast-container { position: fixed; top: 20px; right: 20px; z-index: 2000; }
.toast-message {
    background: white; padding: 16px 24px; border-radius: 12px; margin-bottom: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 15px;
    border-left: 5px solid; animation: slideIn 0.3s ease; font-size: 15px; font-weight: 600;
}

/* Developer Footer */
.dev-footer { position: absolute; bottom: 20px; left: 1.5%; width: 100%; text-align: center; font-size: 13px; font-weight: 500; color: var(--text-secondary); opacity: 0; transform: translate3d(-30px, 0, 0); animation: footerSlideUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; animation-delay: 0.5s; pointer-events: none; }
.dev-footer strong { color: var(--navy-royal); font-weight: 700; }
.heart { color: #E67E22; display: inline-block; animation: heartbeat 1.5s ease-in-out infinite; }

/* --- DROPDOWN --- */
.custom-dropdown { position: relative; }
.dropdown-options {
    display: none; position: absolute; top: 100%; left: 0; width: 100%; max-height: 250px;
    overflow-y: auto; background: white; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    z-index: 100; list-style: none; padding: 5px; border: 1px solid #E2E8F0; margin-top: 5px;
}
.dropdown-options li { padding: 12px 16px; cursor: pointer; font-size: 14px; border-bottom: 1px solid #F1F5F9; border-radius: 8px; }
.dropdown-options li:hover { background: var(--saffron-light); color: var(--saffron-deep); font-weight: 600; }
.dropdown-arrow { position: absolute; right: 0; top: 16px; font-size: 10px; height: 40%; width: 20px; color: var(--text-secondary); pointer-events: none; background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2364748B%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");background-repeat: no-repeat; background-position: center; background-size: 10px auto;}

/* --- FOOTER FIX (Desktop) --- */
.dev-footer {
    position: absolute;   /* THIS is the key line */
    bottom: 20px;         /* Stick to bottom */
    left: 0;              /* Center horizontally */
    width: 100%;          /* Full width */
    text-align: center;   /* Center text */
    
    z-index: 10;
    pointer-events: none; 
    color: var(--text-secondary);
    
    /* Keep your animation if you want it */
    opacity: 0; 
    animation: footerSlideUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 0.5s;
}

/* ------------------------------------------------------- */
/* PASTE THE NEW MOBILE CODE BELOW THIS LINE */
/* ------------------------------------------------------- */

/* --- MOBILE & TABLET RESPONSIVENESS FIX (Consolidated) --- */
/* We use 992px to ensure Tablets also get the clean layout */
@media (max-width: 992px) {
    
    /* 1. LAYOUT RESET */
    .surge-layout {
        flex-direction: column;
    }

    /* 2. HIDE THE ORANGE BRAND PANEL */
    /* We hide this so mobile/tablet users go straight to login */
    .surge-brand { 
        display: none !important; 
    }

    /* 3. FIX FORM CONTAINER */
    .surge-form-area {
        width: 100% !important;
        margin-left: 0 !important;      /* Remove diagonal cut hack */
        padding: 40px 20px !important;  /* Standard padding */
        display: block;                 /* Stop centering vertically */
        height: auto;
        min-height: 100vh;
        overflow-y: auto;               /* Allow scrolling */
    }

    .form-container { 
        margin: 0 auto; 
        width: 100%;
        padding-bottom: 80px; /* Extra space for footer */
    }

    /* 4. FIX DEVELOPER FOOTER OVERLAP */
    .dev-footer {
        position: relative; 
        margin-top: 40px;
        left: 0;
        bottom: 0;
        transform: none !important;
        opacity: 1 !important;
        animation: none;
        width: 100%;
        color: var(--text-secondary);
    }
    
    /* 5. ADJUST MODALS FOR MOBILE SCREEN */
    .glass-card {
        width: 95%;
        padding: 20px;
        margin: 10px auto;
    }
}

@keyframes footerSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px); /* Start 20px lower */
    }
    to {
        opacity: 0.7; /* Final opacity */
        transform: translateY(0);    /* Final position */
    }
}


/* Heart Animation */
.heart {
    color: #E67E22; /* Saffron Heart */
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}
