/* Hero Section */
header {
    background-position: center;
    background-size: cover;
    min-height: 80vh;
}

/* Timeline Styles */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--orange);
    transform: translateX(-50%);
}

.timeline .flex {
    position: relative;
}

.timeline .flex::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    background: var(--maroon);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Card Hover Effects */
.card img {
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.1);
}

/* Footer Styles */
footer .input-group input {
    border: 1px solid var(--white);
    background-color: var(--white);
    color: var(--dark-gray);
}

footer .input-group button {
    border: none;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .grid-cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    header {
        min-height: 60vh;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline .flex::before {
        left: 20px;
    }

    .timeline .flex {
        flex-direction: column;
        text-align: left;
    }

    .timeline .flex .md\:w-1\/2 {
        width: 100%;
        padding: 0 40px;
    }

    .timeline .flex .text-right {
        text-align: left;
    }
}