/* responsive.css */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .hero {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .timeline-dot {
        left: 20px;
        transform: none;
    }

    .timeline-content {
        width: 85%;
        margin-left: 50px !important;
    }

    .product-details {
        margin-top: 20px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .hero {
        height: 60vh;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .feature-box, .testimonial-card, .product-card {
        margin-bottom: 30px;
    }

    .about-content {
        text-align: center;
        margin-top: 30px;
    }

    .about-content .section-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .newsletter-form .btn {
        border-radius: var(--border-radius);
        margin-top: 10px;
        width: 100%;
    }

    .newsletter-form .form-control {
        border-radius: var(--border-radius);
    }

    .newsletter-form .input-group {
        display: block;
    }

    .contact-info {
        margin-bottom: 30px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    body {
        padding-top: 76px;
    }

    .navbar-brand span {
        display: none;
    }

    .hero {
        height: 50vh;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .page-header {
        padding: 60px 0 20px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .timeline-content {
        width: 80%;
    }

    .product-tabs .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}