/* style.css */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #2874A6;
  --secondary-color: #2980B9;
  --accent-color: #1ABC9C;
  --light-color: #EAF2F8;
  --dark-color: #154360;
  --gradient-primary: linear-gradient(135deg, #2874A6 0%, #2980B9 100%);
  --hover-color: #1F618D;
  --background-color: #F4F6F7;
  --text-color: #2C3E50;
  --border-color: rgba(40, 116, 166, 0.2);
  --divider-color: rgba(21, 67, 96, 0.1);
  --shadow-color: rgba(21, 67, 96, 0.12);
  --highlight-color: #FFC145;
  --main-font: 'Nunito', sans-serif;
  --alt-font: 'Oxygen', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--alt-font);
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
}

section {
    padding-top: 10dvh;
    padding-bottom: 10dvh;
    position: relative;
}

.hero-section {
    padding-top: 0;
    padding-bottom: 0;
}

.hover-text:hover {
    color: var(--highlight-color) !important;
    text-decoration: underline;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: var(--main-font);
    font-size: 1.05rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--highlight-color);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--highlight-color);
}

.hamburger {
    display: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-color);
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 4px 8px var(--shadow-color);
        border-top: 2px solid var(--accent-color);
    }
    
    .nav-links li {
        margin-bottom: 15px;
    }
    
    #menu-toggle:checked ~ .navigation .nav-links {
        display: flex;
    }
    
    .content-flex {
        flex-direction: column !important;
    }
    
    .content-img, .content-text {
        width: 100% !important;
    }
    
    h1 {
        font-size: 2.4rem !important;
    }
    
    h2 {
        font-size: 1.9rem !important;
    }
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-family: var(--main-font);
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 4px 4px 10px var(--shadow-color);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 6px 6px 15px var(--shadow-color);
}

.neo-card {
    background: var(--background-color);
    border-radius: 16px;
    box-shadow: 8px 8px 16px var(--shadow-color), -8px -8px 16px rgba(255,255,255,0.9);
    padding: 28px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.neo-card:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 20px var(--shadow-color), -12px -12px 20px #ffffff;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: var(--light-color);
    box-shadow: inset 4px 4px 8px var(--shadow-color), inset -4px -4px 8px #ffffff;
    font-family: var(--alt-font);
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border: 1px solid var(--accent-color);
    background-color: #ffffff;
    box-shadow: 0 0 8px rgba(26, 188, 156, 0.2);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
}

.timeline-item {
    padding: 20px 45px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    right: -13px;
    background-color: var(--background-color);
    border: 5px solid var(--accent-color);
    top: 30px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.right::after {
    left: -13px;
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 75px;
        padding-right: 20px;
    }
    
    .timeline-item::after {
        left: 18px;
    }
    
    .right {
        left: 0;
    }
}

.rounded-shadow {
    border-radius: 16px;
    box-shadow: 5px 5px 20px var(--shadow-color);
    width: 100%;
    object-fit: cover;
    display: block;
}