/* FinSecure - Light Finance Theme Styles */

/* Base styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
}

glow-border {
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

glow-text {
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.light-bg {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7, #bbf7d0);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.input-field:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.counter {
    display: inline-block;
    font-weight: 700;
    font-size: 2rem;
}

.service-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.2);
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 40px;
}

timeline-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #22c55e;
}

timeline-item:after {
    content: '';
    position: absolute;
    left: 7px;
    top: 24px;
    width: 2px;
    height: calc(100% + 20px);
    background: rgba(34, 197, 94, 0.3);
}

.timeline-item:last-child:after {
    display: none;
}

.floating-label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-field:focus + .floating-label,
.input-field:not(:placeholder-shown) + .floating-label {
    top: 0;
    left: 12px;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 0 5px;
    color: #22c55e;
}

.chart-container {
    position: relative;
    height: 300px;
}

.sidebar {
    transition: all 0.3s ease;
}

.sidebar-collapsed {
    width: 60px;
}

.sidebar-expanded {
    width: 240px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #22c55e;
    transform: translateY(-3px);
}

.countdown-box {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
}

.client-logo {
    height: 60px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}