:root {
    --primary-orange: #F05133;
    --dark-blue: #1a3a52;
    --card-orange: #F05133;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.active {
    color: var(--primary-orange) !important;
}
/* Navbar Styling */
.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-orange);
}

.btn-contact-nav {
    background-color: var(--primary-orange);
    color: white;
    border-radius: 25px;
    padding: 0.5rem 2rem;
    border: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-contact-nav:hover {
    background-color: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 87, 34, 0.3);
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-orange);
    padding: 4rem 0;
    text-align: center;
}

.hero-section h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

/* Product Section */
.product-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.product-card {
    background-color: var(--card-orange);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.product-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-description {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-see-more {
    background-color: var(--dark-blue);
    color: white;
    border-radius: 8px;
    padding: 0.7rem 2rem;
    border: none;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-see-more:hover {
    background-color: var(--dark-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-orange);
    padding: 2.5rem 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    display: inline-block;
    margin-right: 2rem;
}

.btn-contact-cta {
    background-color: var(--dark-blue);
    color: white;
    border-radius: 25px;
    padding: 0.7rem 2.5rem;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-contact-cta:hover {
    background-color: var(--dark-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background-color: white;
    padding: 4rem 0 0 0;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 1.5rem;
}

.footer h5 {
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer p {
    color: #666;
    line-height: 1.8;
}

.footer a {
    color: #666;
    text-decoration: none;
}

.footer a:hover {
    color: var(--primary-orange);
}

.copyright {
    background-color: var(--primary-orange);
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .cta-section h2 {
        display: block;
        margin-bottom: 1.5rem;
        margin-right: 0;
    }

    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }

    .product-image {
        height: 180px;
    }
}
