@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #344CB7;
  --secondary-color: #000957;
  --accent-color: #577BC1;
  --light-color: #F0F4FF;
  --dark-color: #00042B;
  --gradient-primary: linear-gradient(135deg, #577BC1 0%, #344CB7 100%);
  --hover-color: #FFEB00;
  --background-color: #FFFFFF;
  --text-color: #1F2937;
  --border-color: rgba(52, 76, 183, 0.2);
  --divider-color: rgba(0, 9, 87, 0.1);
  --shadow-color: rgba(52, 76, 183, 0.15);
  --highlight-color: #FFD23F;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

/* Neuromorphism effects for buttons */
button:hover, .btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
}

.hover-link:hover {
    color: var(--highlight-color) !important;
    text-decoration: underline;
    transition: color 0.3s ease;
}

/* Timeline Custom CSS Variant 2 */
.timeline-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.feature-item {
    flex: 1 1 calc(33% - 2rem);
    min-width: 300px;
    border-top: 5px solid var(--accent-color) !important;
}

/* Mobile Menu without JS */
@media (max-width: 768px) {
    .navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }
    #nav-toggle:checked ~ .navigation {
        display: block;
    }
}

/* FAQ Details styling Variant 2 */
details > summary::-webkit-details-marker {
  display: none;
}
details > summary::after {
  content: '\f107'; /* FontAwesome angle-down */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  transition: transform 0.3s ease;
}
details[open] > summary::after {
  transform: translateY(-50%) rotate(180deg);
}
details {
    transition: all 0.3s ease;
}