@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Palette: Modern Purple & Teal */
  --primary-color: #8E44AD;
  --secondary-color: #9B59B6;
  --accent-color: #1ABC9C;
  --dark-color: #2C3E50;
  --light-color: #F4F6F7;
  --hover-color: #732d91;
  --background-color: #FFFFFF;
  --text-color: #333333;
  --highlight-color: #F1C40F;
  
  --gradient-primary: linear-gradient(90deg, #8E44AD 0%, #1ABC9C 100%);
  
  --border-color: rgba(142, 68, 173, 0.15);
  --divider-color: rgba(142, 68, 173, 0.1);
  
  /* Soft Neumorphism */
  --shadow-light: -10px -10px 20px #ffffff;
  --shadow-dark: 10px 10px 20px rgba(210, 210, 210, 0.4);
  
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Inter', sans-serif;
}

body {
    font-family: var(--alt-font);
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--main-font);
    font-weight: 800;
}

/* Modern Cards */
.modern-card {
    background: #fff;
    border-radius: 30px;
    box-shadow: var(--shadow-dark);
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}
.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(142, 68, 173, 0.2);
}

.btn-grad {
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(142, 68, 173, 0.3);
}

/* Timeline vertical line */
.timeline-container {
    border-left: 4px dotted var(--primary-color);
    margin-left: 20px;
    padding-left: 30px;
}

/* Mobile Menu */
#menu-toggle { display: none; }
#menu-toggle:checked ~ ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
    background: rgba(255,255,255,0.98);
    align-items: center;
    justify-content: center;
    z-index: 100;
}