/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 123, 255, 0.9), rgba(0, 123, 255, 0.7)), url('../img/hero-bg.jpg') center/cover;
    color: white;
    padding: 120px 0 80px;
    margin-top: 56px;
}

/* Product Cards */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.product-image {
    height: 200px;
    object-fit: cover;
}

/* Brand Section */
.brand-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.brand-logo {
    max-height: 60px;
    max-width: 100%;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.brand-logo:hover {
    filter: grayscale(0%);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #dee2e6;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -36px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #007bff;
    border: 2px solid white;
}

/* Contact Info Card */
.contact-info-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 1rem;
    display: block;
}

/* Footer */
.footer {
    background-color: #343a40;
    color: white;
    padding: 60px 0 30px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #dee2e6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-decoration: none;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .brand-logo {
        max-height: 40px;
    }

    .timeline {
        padding-left: 20px;
    }

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

    .timeline-item::after {
        left: -26px;
    }
}