﻿












.discount-badge {
    position: absolute;
    top: 3px;
    right: 8px;
    background: #dc3545;
    color: #fff;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 0.8rem;
    z-index: 2;
}





.product-slider {
    position: relative;
    overflow: hidden;
}

/* Slider Track */
.product-slider-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s ease;
}

/* Each Slide */
.product-slide-item {
    min-width: 280px; /* adjust if needed */
}

/* Arrow Buttons */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

.slider-arrow i {
    font-size: 18px;
    color: #333;
}

/* View Details Hover */
.view-details-btn {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image-wrapper:hover .view-details-btn {
    opacity: 1;
}




:root {
    --primary-blue: #0F4C97;
    --primary-dark: #0A3A75;
    --accent-green: #00A859;
}
/* ===== Section Title ===== */
.section-title {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1f2937;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 4px;
        border-radius: 2px;
        background: linear-gradient(90deg, #881337, #4a044e);
    }

/* ===== Contact Info Card ===== */
.contact-info {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .contact-info:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }

    .contact-info h4 {
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .contact-info p {
        font-size: 1rem;
        color: #495057;
        margin-bottom: 0.6rem;
    }

    .contact-info a {
        color: #881337;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .contact-info a:hover {
            text-decoration: underline;
        }

/* ===== Buttons ===== */
.btn {
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Call Now Button */
.btn-outline-dark {
    border: 2px solid #343a40;
    color: #343a40;
    background: transparent;
    padding: 10px 20px;
}

    .btn-outline-dark:hover {
        background-color: #343a40;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(52, 58, 64, 0.3);
    }

/* WhatsApp Button */
.btn-success {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    border: none;
    color: #fff;
    padding: 10px 20px;
}

    .btn-success:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
    }

/* Submit Button */
.btn-warning {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    border: none;
    color: #fff;
    padding: 10px 20px;
}

    .btn-warning:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(255,193,7,0.35);
    }

/* ===== Form Inputs ===== */
.form-control,
.form-select,
textarea.form-control {
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

    .form-control:focus,
    .form-select:focus,
    textarea.form-control:focus {
        border-color: #881337;
        box-shadow: 0 0 0 4px rgba(136,4,79,0.15);
        outline: none;
    }

/* ===== Card Shadow for Form ===== */
.card {
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .btn-lg, .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .contact-info {
        padding: 1.5rem;
    }
}

.product-card {
    cursor: pointer;
}

.product-slider-track {
    animation: none !important;
}


:root {
    --primary-blue: #0F4C97;
    --primary-dark: #0A3A75;
    --accent-green: #00A859;
}

/* Section Titles */
.section-title {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: var(--accent-green);
    }

/* About Us */
.about-us .section-title {
    font-size: 2.5rem;
}

.about-us p {
    font-size: 1rem;
    color: #495057;
    line-height: 1.7;
}

/* Image Slider */
.about-slider {
    position: relative;
    width: 100%;
    padding-top: 66.66%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.about-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 1s ease, transform 0.7s ease;
}

    .about-img.active {
        opacity: 1;
        transform: scale(1);
    }

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s ease, transform 0.2s ease;
}

    .slider-btn:hover {
        background: rgba(0,0,0,0.85);
        transform: translateY(-50%) scale(1.1);
    }

    .slider-btn.prev {
        left: 15px;
    }

    .slider-btn.next {
        right: 15px;
    }

/* Contact Section */
#contact {
    background: #f8f9fa;
}

    #contact .contact-info {
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 0 15px rgba(0,0,0,0.05);
        padding: 2rem;
        transition: all 0.3s ease;
    }

        #contact .contact-info:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        #contact .contact-info h4 {
            font-weight: 700;
            margin-bottom: 1rem;
        }

        #contact .contact-info p {
            font-size: 0.95rem;
            color: #495057;
            margin-bottom: 0.5rem;
        }

        #contact .contact-info a {
            color: var(--primary-blue);
            text-decoration: none;
        }

            #contact .contact-info a:hover {
                text-decoration: underline;
            }

    /* Contact Buttons */
    #contact .btn {
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    #contact .btn-outline-dark {
        border: 2px solid #343a40;
        color: #343a40;
    }

        #contact .btn-outline-dark:hover {
            background-color: #343a40;
            color: #fff;
        }

    #contact .btn-success {
        background: linear-gradient(135deg, #00A859, #008A4C);
        border: none;
        color: #fff;
    }

        #contact .btn-success:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(0,168,89,0.3);
        }

    #contact .btn-warning {
        background: linear-gradient(135deg, #ffc107, #e0a800);
        border: none;
        color: #fff;
        font-weight: 600;
        padding: 0.6rem 1.2rem;
        border-radius: 8px;
    }

        #contact .btn-warning:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(255,193,7,0.3);
        }

    /* Form Inputs */
    #contact .form-control, #contact .form-select, #contact textarea {
        border: 2px solid #dee2e6;
        border-radius: 8px;
        padding: 10px 12px;
        transition: all 0.3s ease;
    }

        #contact .form-control:focus, #contact .form-select:focus, #contact textarea:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(15,76,151,0.1);
        }

/* Responsive */
@media (max-width: 768px) {
    .about-us .about-img {
        position: relative;
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
    }

    .image-slider {
        padding-top: 0;
        height: auto;
    }

    #contact .contact-info, #contact .card {
        padding: 1.5rem;
    }
}


