﻿/* =========================
   GLOBAL STYLES
========================= */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

/* =========================
   CARDS & HOVER EFFECTS
========================= */
.card.hover-lift {
    transition: all 0.3s ease;
}

    .card.hover-lift:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 25px rgba(0,0,0,0.15);
    }

.car-card .zoom-on-hover {
    transition: transform 0.4s ease;
}

    .car-card .zoom-on-hover:hover {
        transform: scale(1.05);
    }

/* =========================
   GRADIENT BUTTONS
========================= */
.btn-gradient {
    background: linear-gradient(45deg, #0d6efd, #0dcaf0);
    border: none;
    color: #fff !important;
    transition: all 0.3s ease;
}

    .btn-gradient:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }

/* =========================
   CAROUSEL CAPTION
========================= */
.carousel-caption {
    background: rgba(0, 0, 0, 0.35);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    max-width: 450px;
}

    .carousel-caption h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

/* =========================
   SEARCH CARD
========================= */
.search-card {
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* =========================
   SERVICES ICONS
========================= */
.service-card i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.3);
}

/* =========================
   STATS SECTION
========================= */
.stats-section {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    position: relative;
    padding: 4rem 0;
    border-radius: 1rem;
    overflow: hidden;
}

    .stats-section .overlay-gradient {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(13, 110, 253, 0.75);
        z-index: 0;
        border-radius: 1rem;
    }

    .stats-section h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        z-index: 1;
        position: relative;
    }

    .stats-section p {
        margin: 0;
        z-index: 1;
        position: relative;
    }

/* =========================
   TESTIMONIALS
========================= */
.testimonial {
    transition: all 0.3s ease;
}

    .testimonial:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

/* =========================
   BLOG / NEWS CARDS
========================= */
.card.stretched-link {
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card.stretched-link:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 22px rgba(0,0,0,0.12);
    }

/* =========================
   NEWSLETTER
========================= */
.newsletter-section {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    padding: 4rem 0;
    border-radius: 1rem;
}

    .newsletter-section input.form-control {
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .newsletter-section button.btn-light {
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }

        .newsletter-section button.btn-light:hover {
            transform: translateY(-3px);
        }

/* =========================
   AOS ANIMATIONS (if AOS library used)
========================= */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
    transition-duration: 0.6s;
}

    [data-aos].aos-animate {
        opacity: 1;
    }

/* =========================
   RESPONSIVE ADJUSTMENTS
========================= */
@media (max-width: 767px) {
    .carousel-caption {
        max-width: 90%;
        font-size: 0.9rem;
        text-align: center;
    }
}


.gallery-scroll {
    overflow: hidden;
    white-space: nowrap;
    animation: scrollLeft 20s linear infinite;
}

    .gallery-scroll div {
        display: inline-block;
    }

@keyframes scrollLeft {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}