@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-color: #f7f9fa; /* Very light gray/off-white */
    --card-bg: #ffffff;
    --primary-cyan: #005f73; /* Deep sapphire-cyan */
    --primary-cyan-hover: #0a9396;
    --secondary-peach: #ee9b00; /* Soft glowing peach-orange */
    --text-main: #333333;
    --text-muted: #666666;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05), 0 1px 8px rgba(0, 0, 0, 0.02);
    --shadow-glow: 0 10px 40px rgba(0, 95, 115, 0.15); /* Cyan glow */
    --border-radius: 16px;
    --font-family: 'Inter', sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-main);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background-color: var(--card-bg) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    padding: 1rem 2rem;
}
.navbar-brand {
    font-weight: 800;
    color: var(--primary-cyan) !important;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}
.nav-link {
    font-weight: 500;
    color: var(--text-muted) !important;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-cyan) !important;
}

/* Navbar Logo and Mobile Optimization */
.navbar-logo {
    height: 35px;
    width: auto;
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .navbar-logo {
        height: 55px;
        transform: scale(3.0); 
        transform-origin: left center;
    }
    .navbar-brand {
        margin-right: 6rem;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 0.5rem 1rem !important;
    }
    .navbar-collapse {
        margin-top: 1rem;
        background-color: var(--card-bg);
        border-radius: var(--border-radius);
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .nav-link {
        margin: 0.25rem 0;
    }
}

/* Cards */
.fintech-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: none;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fintech-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* Glassmorphism/Glow effect hints */
.fintech-card::before {
    content: "";
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(135deg, rgba(0,95,115,0.2), rgba(238,155,0,0.1));
    z-index: -1;
    border-radius: calc(var(--border-radius) + 2px);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.fintech-card:hover::before {
    opacity: 1;
}

/* Buttons */
.btn-primary-cyan {
    background-color: var(--primary-cyan);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 95, 115, 0.3);
}
.btn-primary-cyan:hover {
    background-color: var(--primary-cyan-hover);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 95, 115, 0.4);
    transform: translateY(-2px);
}
.btn-peach {
    background-color: var(--secondary-peach);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(238, 155, 0, 0.3);
    transition: all 0.3s ease;
}
.btn-peach:hover {
    background-color: #ca8300;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 155, 0, 0.4);
}

/* Forms */
.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 0.75rem 1rem;
    color: var(--text-main);
    background-color: #fafafa;
    transition: all 0.3s ease;
}
.form-control:focus, .form-select:focus {
    background-color: #ffffff;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 4px rgba(0, 95, 115, 0.1);
}
.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-cyan);
    margin-bottom: 0.3rem;
}

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-cyan);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Abstract 3D Glass Graphic Placeholder */
.glass-graphic {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 25px 45px rgba(0,0,0,0.1), 
                inset 0 0 0 2px rgba(255,255,255,0.3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.glass-graphic::before {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    background: var(--primary-cyan);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.6;
    top: 20px; left: -20px;
    animation: drift 8s infinite alternate ease-in-out;
}
.glass-graphic::after {
    content: '';
    position: absolute;
    width: 150px; height: 150px;
    background: var(--secondary-peach);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.7;
    bottom: -10px; right: 20px;
    animation: drift 6s infinite alternate-reverse ease-in-out;
}
.glass-content {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(0, 95, 115, 0.8);
}
@keyframes drift {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-30px) scale(1.1); }
}

/* Status Cards */
.status-card {
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-soft);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.status-approved {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3);
}
.status-rejected {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.3);
}
.status-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}
.status-text {
    font-size: 2.5rem;
    font-weight: 800;
}
