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

:root {
    --brand-primary: #4b70a9;
    --brand-secondary: #365383;
    --brand-accent: #F59E0B;
    --brand-surface: #F8FAFC;
    --brand-heading: #0F172A;
}

body {
    background-color: var(--brand-surface);
    color: #334155;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-display {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

/* Grid Background Pattern */
.bg-grid-pattern {
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Hero Section - Minimalist & Geometric */
.hero-section {
    background: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--brand-primary);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.05;
    z-index: 0;
}

/* Custom Glassmorphism */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Architectural Lines */
.border-line {
    position: relative;
}
.border-line::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--brand-primary);
}

/* Modern Card Style */
.modern-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    border: 1px solid #f1f5f9;
}
.modern-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px -12px rgba(75, 112, 169, 0.15);
    border-color: var(--brand-primary);
}

/* Interactive Buttons */
.btn-modern {
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease;
}
.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--brand-secondary);
    transition: all 0.4s ease;
    z-index: -1;
}
.btn-modern:hover::before {
    width: 100%;
}

/* Section Spacing */
section {
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f8fafc;
}
::-webkit-scrollbar-thumb {
    background: #4b70a9;
    border-radius: 10px;
}

/* Notification Styles */
.alert-notification {
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .hero-section::before {
        width: 100%;
        height: 30%;
        bottom: 0;
        top: auto;
        clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
    }
}
