@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Colors based on: #000957 #344CB7 #577BC1 #FFEB00 */
  --primary-color: #344CB7;
  --secondary-color: #000957;
  --accent-color: #577BC1;
  --light-color: #F0F4FF;
  --dark-color: #00042D;
  --gradient-primary: linear-gradient(135deg, #344CB7 0%, #000957 100%);
  --hover-color: #26388A;
  --background-color: #F8FAFF;
  --text-color: #2D3748;
  --border-color: rgba(52, 76, 183, 0.15);
  --divider-color: rgba(0, 9, 87, 0.1);
  --shadow-color: rgba(0, 9, 87, 0.15);
  --highlight-color: #FFEB00;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Poppins', serif;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: var(--alt-font);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--main-font);
    text-transform: uppercase;
}

/* Neuromorphism and Depth */
.rounded-xl, .rounded-2xl, .bg-white {
    box-shadow: 10px 10px 20px var(--shadow-color), 
                -5px -5px 15px rgba(255, 255, 255, 0.8);
}

/* Timeline Style for Features */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline > div {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline > div:hover {
    transform: translateX(10px);
    border-left: 4px solid var(--primary-color);
}

/* Mobile Menu Logic (No JS) */
#menu-toggle:checked ~ nav {
    display: block !important;
}

@media (max-width: 768px) {
    .logo {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
}

/* Accessibility & Interaction */
a, button {
    transition: all 0.2s ease-in-out;
}

input:focus, textarea:focus {
    box-shadow: 0 0 0 3px var(--border-color);
}

/* Custom Component Styling */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(circle, var(--accent-color) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    z-index: 0;
}