
/* filepath: styles/home.css */
:root {
           --primary: #FFB347; /* Light orange */
            --secondary: #2C3E50; /* Dark blue */
            --accent: #F39C12; /* Light orange */
            --light: #ECF0F1;
            --dark: #2C3E50;
            --text: #333333;
}
.mission-section {
            text-align: center;
            background-color:var(--light);
            padding: 60px 0;
        }
        
        .mission-header h1 {
            font-size: 36px;
            color: var(--secondary);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .mission-header h1::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: var(--primary);
            bottom: -10px;
            left: 25%;
        }
        
        .mission-header p {
            font-size: 18px;
            color: var(--text);
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.8;
        }
        
        .mission-features {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }
        
        .feature-card {
            background: rgb(214, 219, 224);
            border-radius: 10px;
            padding: 40px 30px;
            width: 350px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-top: 4px solid var(--primary);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .feature-card h2 {
            font-size: 24px;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        .feature-card p {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text);
        }
        
        /* ===== Responsive Design ===== */
        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            
            .mission-header h1 {
                font-size: 30px;
            }
            
            .mission-header p {
                font-size: 16px;
                padding: 0 20px;
            }
            
            .feature-card {
                width: 100%;
                max-width: 400px;
            }
        }
        
        @media (max-width: 480px) {
            .mission-header h1 {
                font-size: 28px;
            }
            
            .feature-card {
                padding: 30px 20px;
            }
            
            .feature-card h2 {
                font-size: 22px;
            }
        }
        
        
        /* ===== Footer ===== */
        footer {
            background-color: var(--secondary);
            color: black;
            text-align: center;
            padding: 30px 0;
            margin-top: 60px;
        }
        
        footer p {
            font-size: 14px;
        }
        /* Team Section Styles */
.team-section {
    background: #f7f7f7;
    padding: 3rem 0 2rem 0;
}

.team-section h2 {
    text-align: center;
    color: #e67e22;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    align-items: stretch;
}

.team-member {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(44,62,80,0.08);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    max-width: 260px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.team-member:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(44,62,80,0.13);
}

.member-image img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ffb347;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(230,126,34,0.08);
}

.member-info h3 {
    font-size: 1.15rem;
    color: #2c3e50;
    margin-bottom: 0.3rem;
    font-weight: 700;
    text-align: center;
}

.member-info p {
    font-size: 1rem;
    color: #888;
    margin-bottom: 0.7rem;
    text-align: center;
}

.member-info .social-links {
    display: flex;
    gap: 0.7rem;
    justify-content: center;
}

.member-info .social-links a {
    background: #fff;
    border-radius: 50%;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(44,62,80,0.06);
    transition: transform 0.2s, background 0.2s;
    text-decoration: none;
}

.member-info .social-links a .fa-twitter { color: #1da1f2; }
.member-info .social-links a .fa-linkedin { color: #0077b5; }

.member-info .social-links a:hover {
    background: #f7f7f7;
    transform: scale(1.15);
}

@media (max-width: 900px) {
    .team-grid {
        gap: 1.5rem;
    }
    .team-member {
        max-width: 320px;
    }
}

@media (max-width: 600px) {
    .team-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
    .team-member {
        width: 95%;
        padding: 1.2rem 0.7rem;
    }
}
        
        /* ===== Responsive Design ===== */
        
        
        @media (max-width: 576px) {
         
            .about-section h2 {
                font-size: 24px;
            }
            
            .about-section > p {
                font-size: 16px;
            }
        }

.order-form {
    background: #fff8f0;
    max-width: 420px;
    margin: 3rem auto 2rem auto;
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    border: 1px solid #ffe0b2;
}

.order-form h2 {
    text-align: center;
    color: #e67e22;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
}

.contactForm label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1rem;
}

.contactForm input,
.contactForm select {
    width: 100%;
    padding: 0.7rem 1rem;
    margin-bottom: 1.3rem;
    border: 1px solid #ffd699;
    border-radius: 6px;
    font-size: 1rem;
    background: #fff;
    transition: border-color 0.3s;
}

.contactForm input:focus,
.contactForm select:focus {
    border-color: #ffb347;
    outline: none;
    background: #fffbe6;
}

.contactForm button[type="submit"] {
    width: 100%;
    padding: 0.9rem 0;
    background: linear-gradient(90deg, #ffb347, #ffcc80);
    color: #2c3e50;
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(255,179,71,0.08);
}

.contactForm button[type="submit"]:hover {
    background: linear-gradient(90deg, #e67e22, #ffb347);
    color: #fff;
}

.getorders {
     background-color:#2c3e50;
    color: #fff;
    padding: 3rem 1.5rem 2.5rem 1.5rem;
    text-align: center;
    border-radius: 0 0 24px 24px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.getorders h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #ffb347;
    letter-spacing: 1px;
}

.getorders p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #f5f5f5;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .order-form {
        padding: 1.2rem 0.5rem;
        max-width: 98vw;
    }
    .order-form h2 {
        font-size: 1.3rem;
    }
}

/* Journey Section Styles */
.journey-section {
    background: #2c3e50;
    padding: 3rem 0 2rem 0;
}

.journey-section h2 {
    text-align: center;
    color: #e67e22;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 1.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #ffb347, #e67e22);
    border-radius: 2px;
    z-index: 0;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.timeline-date {
    background: #e67e22;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(230,126,34,0.08);
    z-index: 1;
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.timeline-content {
    background: #fff;
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 2px 12px rgba(44,62,80,0.07);
    flex: 1;
}

.timeline-content h3 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 700;
}

.timeline-content p {
    margin: 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 700px) {
    .timeline {
        padding-left: 0.5rem;
    }
    .timeline-date {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    .timeline-content {
        padding: 1rem 0.7rem;
    }
}

/* service page */
.heroservices {
    background: linear-gradient(90deg, #2c3e50 0%, #969190 100%);
    color: #fff;
    text-align: center;
    padding: 3rem 1rem 2.5rem 1rem;
    border-radius: 0 0 32px 32px;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.heroservices::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('https://images.pexels.com/photos/5984623/pexels-photo-5984623.jpeg?auto=compress&cs=tinysrgb&w=600') no-repeat center center/cover;
    filter: blur(8px) brightness(0.7);
    opacity: 0.7;
    pointer-events: none;
}
.heroservices > * {
    position: relative;
    z-index: 1;
}
.heroservices h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
    letter-spacing: 1px;
}
.heroservices p {
    font-size: 1.2rem;
    margin-bottom: 1.7rem;
}
.heroservices .cta-button {
    background: #fff;
    color: #1a252f;
    font-weight: bold;
    padding: 0.9rem 2.2rem;
    border-radius: 24px;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(252,74,26,0.08);
}
.heroservices .cta-button:hover {
    background: #fc4a1a;
    color: #fff;
}

/* Services Section */
.services {
    background:var(--light);
    padding: 2.5rem 0 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto 2.5rem auto;
    max-width: 1200px;
}
.services h2 {
    width: 100%;
    text-align: center;
    color: #1a252f;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.service-card {
    background: #f7f7f7;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.07);
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    max-width: 220px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0.7rem;
}
.service-card h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.service-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0;
}

/* Products Section with Tabs */
.productsline {
    padding: 2.5rem 0;
    background: #f7f7f7;
    border-radius: 20px;
    margin-bottom: 2.5rem;
}
.productsline h2 {
    text-align: center;
    color: #1a252f;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
}
.brand-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.tab-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    background: #eee;
    color: #2c3e50;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 0.5rem;
}
.tab-btn.active, .tab-btn:hover {
    background: #e67e22;
    color: #fff;
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.07);
    padding: 1.2rem 1rem 1rem 1rem;
    max-width: 220px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.product-image {
    position: relative;
    margin-bottom: 0.8rem;
}
.product-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #e67e22;
    color: #fff;
    font-size: 0.8rem;
    padding: 0.2rem 0.7rem;
    border-radius: 12px;
    z-index: 2;
}
.product-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.product-info h3 {
    font-size: 1.05rem;
    color: #2c3e50;
    margin-bottom: 0.2rem;
    font-weight: 700;
}
.product-size {
    display: block;
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}
.price {
    color: #e67e22;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.old-price {
    color: #aaa;
    text-decoration: line-through;
    font-size: 0.95rem;
    margin-left: 0.5rem;
}
.product-features {
    list-style: disc inside;
    text-align: left;
    margin: 0.5rem 0 1rem 0;
    padding-left: 0.5rem;
    color: #444;
    font-size: 0.95rem;
}
.btn.btn-primary {
    background: #e67e22;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 0.6rem 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.btn.btn-primary:hover {
    background: #ffb347;
    color: #2c3e50;
}

/* Delivery Section */
.delivery-section {
    background-color: #2c3e50;
    padding: 2.5rem 0 2rem 0;
    border-radius: 20px;
    margin-bottom: 2.5rem;
}
.delivery-section h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}
.delivery-options {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.delivery-card {
    background: #f7f7f7;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.07);
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    max-width: 220px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.delivery-card i {
    font-size: 2.2rem;
    color: #e67e22;
    margin-bottom: 0.7rem;
}
.delivery-card h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.delivery-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.7rem;
}
.delivery-card .price {
    color: #e67e22;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
}
.delivery-card .btn.btn-primary {
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 900px) {
    .services, .products-grid, .delivery-options {
        gap: 1rem;
    }
    .service-card, .product-card, .delivery-card {
        max-width: 45vw;
    }
}
@media (max-width: 600px) {
    .services, .products-grid, .delivery-options {
        flex-direction: column;
        align-items: center;
    }
    .service-card, .product-card, .delivery-card {
        max-width: 90vw;
    }
    .heroservices {
        padding: 2rem 0.5rem 1.5rem 0.5rem;
    }
}

