
:root {
    --primary-blue: #0066cc;
    --dark-blue: #004499;
    --dark-gray: #2c3e50;
    --light-gray: #f8f9fa;
}


body {
    overflow-x: hidden;
}


/* Hero Section */
.hero-section {
    position: relative;
    height: 500px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 8px;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-transform: uppercase;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.section-title a{
    color: var(--dark-gray);
    text-decoration: none;
}
.section-subtitle {
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 1.5rem;
}

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

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.product-card-body {
    padding: 1rem;
    text-align: center;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0;
}
.product-name a{
    color: var(--dark-gray);
    text-decoration: none;
}
.product-name a:hover{
    text-decoration: underline;
}
.btn-more {
    background-color: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 0.6rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-more:hover {
    background-color: var(--dark-blue);
    color: #fff;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: #fff;
    padding: 4rem 0 0;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: #e74c3c;
}

.footer-desc {
    color: #bdc3c7;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary-blue);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

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

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

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

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

.contact-item {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.contact-item i {
    color: var(--primary-blue);
    margin-right: 0.5rem;
}

.footer-form .form-control {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    margin-bottom: 1rem;
}

.footer-form .form-control::placeholder {
    color: #bdc3c7;
}

.footer-form .form-control:focus {
    background-color: rgba(255,255,255,0.15);
    border-color: var(--primary-blue);
    color: #fff;
    box-shadow: none;
}

.btn-submit {
    background-color: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 0.6rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--dark-blue);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
    color: #bdc3c7;
    font-size: 0.85rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* Custom Grid for 5 columns */
.col-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

@media (min-width: 768px) {
    .col-md-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}

@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}

/* Responsive */
@media (max-width: 767px) {
    .col-2-4 {
        width: 50%;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-section {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero-section {
        height: 350px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}
