/* Original content of site.css */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* Paste all the styles for the layout below this line */
/* =================================================== */

/* --- Base & Typography --- */
body {
    font-family: 'Roboto', sans-serif;
    color: #212121;
    background-color: #FFFFFF;
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header & Navigation --- */
.main-header {
    background-color: #FFFFFF;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

    .main-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.logo-container img {
    height: 50px !important;
    width: auto !important;
}

.main-nav a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #212121;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

    .main-nav a:hover {
        color: #D81E29;
    }

/* --- Call-to-Action Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: #D81E29;
    color: #FFFFFF;
}

    .btn-primary:hover {
        background-color: #b01720;
        transform: translateY(-2px);
    }

.btn-secondary {
    background-color: transparent;
    color: #212121;
    border: 2px solid #212121;
}

    .btn-secondary:hover {
        background-color: #212121;
        color: #FFFFFF;
    }

/* --- Footer --- */
.main-footer {
    background-color: #212121;
    color: #ccc;
    padding: 60px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

    .footer-grid h4 {
        color: #FFFFFF;
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-grid p, .footer-grid a {
        color: #ccc;
        text-decoration: none;
        margin-bottom: 10px;
        display: block;
    }

        .footer-grid a:hover {
            color: #FFFFFF;
        }

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
}

/* Modern CSS Slider Styles - UPDATED */
/* Updated Fade Slider CSS - ADD this to your site.css */
.hero-slider {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
    background: #000;
}
.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-repeat: no-repeat;
}

/* Image sizing options */
.slide-no-crop {
    background-size: contain;
    background-position: center center;
    background-color: #1a1a1a;
}

.slide-smart-crop {
    background-size: cover;
    background-position: center center;
}

.slide.active {
    opacity: 1;
}

/* Individual slide backgrounds */
.slide1 {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/store.png');
}

.slide2 {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/sign.png');
    background-color: #D81E29;
}

.slide3 {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/services.jpg');
}

/* Content styling */
.slide-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    max-width: 900px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out 0.3s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-title-main {
    font-size: 50px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin: 0 0 20px 0;
    line-height: 1.1;
    transform: translateY(30px);
    transition: transform 0.8s ease-out 0.5s;
}

.slide.active .slide-title-main {
    transform: translateY(0);
}

.slide-subtitle {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    margin: 0 auto;
    line-height: 1.4;
    max-width: 800px;
    transform: translateY(30px);
    transition: transform 0.8s ease-out 0.7s;
}
.slide.active .slide-subtitle {
    transform: translateY(0);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pause animation on hover */
.hero-slider:hover .slider-wrapper {
    animation-play-state: paused;
}

/* Enhanced navigation dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.4s ease;
}

    .dot:hover {
        background: rgba(255,255,255,0.7);
    }

    .dot.active {
        background: #D81E29;
        border-color: #D81E29;
        transform: scale(1.3);
        box-shadow: 0 0 10px rgba(216, 30, 41, 0.5);
    }

/* Responsive design */
@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }

    .slide-title {
        font-size: 30px;
        line-height: 1.2;
    }

    /* Adjust mobile positioning if needed */
    .slide1, .slide3 {
        background-position: center 20%; /* Shows a bit more top on mobile */
    }
}

/* Responsive text sizing */
/* Responsive design */
@media (max-width: 1200px) {
    .hero-slider {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }

    .slide-title-main {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .slide-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 350px;
    }

    .slide-title-main {
        font-size: 24px;
    }

    .slide-subtitle {
        font-size: 14px;
    }
}
/* Page sections */
.page-section {
    padding: 80px 0;
}

.section-light {
    background-color: #F5F5F5;
}

h2 {
    font-size: 36px;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 1rem;
}

/* Trust Bar */
.trust-bar {
    background-color: #F5F5F5;
    padding: 25px 0;
}

    .trust-bar .container {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
    }

.trust-item {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin: 10px 15px;
}

    .trust-item i {
        color: #D81E29;
        font-size: 24px;
        margin-right: 10px;
    }

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .service-card .icon {
        font-size: 48px;
        color: #D81E29;
        margin-bottom: 20px;
    }

    .service-card h3 {
        margin-bottom: 15px;
        font-size: 24px;
    }

    .service-card a {
        font-weight: 700;
        color: #D81E29;
        text-decoration: none;
    }