﻿/* Global */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO HEADER */
.hero-header {
    text-align: center;
    padding: 60px 20px 50px;
}

    .hero-header h1 {
        margin: 0;
        color: #52d81b;
        font-size: 36px;
        font-weight: 700;
    }

    .hero-header p {
        margin-top: 10px;
        color: #555;
        font-size: 18px;
    }
/* FOOTER */
.site-footer {
    background-color: whitesmoke;
    color: black;
    /*  padding-top: 40px;*/
}


/*.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

    .footer-grid h4 {
        margin-top: 0;
        color: #fff;
    }

    .footer-grid ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-grid li {
        margin-bottom: 8px;
    }

*/ .footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 30px;
    padding: 15px;
    font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .hero-header h1 {
        font-size: 28px;
    }

    .footer-grid {
        flex-direction: column;
    }
}
/* GLOBAL */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

:root {
    --brand-pink: rgb(254, 53, 161);
}
/* ---------- HERO ---------- */

/*.hero-title {
    text-align: center;
    font-size: 42px;
    color: #5bde3f;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 25px;
}

.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

    .hero img {
        width: 100%;
        height: 486px;
        object-fit: fill;*/
/* filter: brightness(0.75); */
/*}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}*/

/* ---------- SERVICES GRID ---------- */

/* HEADER */
.site-header {
    text-align: center;
    padding: 29px 1px 3px;
    background: #fff;
}

    .site-header h1 {
        margin: 0;
        color: var(--brand-pink);
        font-size: 38px;
        font-weight: bold;
    }

    .site-header p {
        margin-top: 10px;
        color: #555;
    }

.advanced-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.carousel-container {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
}

    .carousel-slide img {
        width: 100%;
        height: 420px;
        object-fit: fill;
    }

/* Arrows */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 22px;
    border-radius: 50%;
    z-index: 10;
}

    .carousel-btn.prev {
        left: 15px;
    }

    .carousel-btn.next {
        right: 15px;
    }

    .carousel-btn:hover {
        background: rgba(0,0,0,0.8);
    }

/* Dots */
.carousel-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

    .carousel-dots span {
        display: inline-block;
        height: 10px;
        width: 10px;
        margin: 0 5px;
        background: #bbb;
        border-radius: 50%;
        cursor: pointer;
    }

    .carousel-dots .active {
        background: #fff;
    }

/* CONTENT SECTION */
.services {
    padding: 80px 0;
    background: #fff;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* CARD */
.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.3s;
    /* NEW: Proper alignment */
    display: flex;
    flex-direction: column;
}

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.12);
    }

    .service-card img {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
    }

    .service-card h3 {
        margin: 15px 20px 10px;
        color: var(--brand-pink);
        text-align: center;
    }

    .service-card p {
        margin: 0 20px 15px;
        line-height: 1.6;
        color: #555;
        /* NEW: keeps buttons aligned */
        flex-grow: 1;
        text-align: center;
    }

    /* CENTERED & ALIGNED BUTTON (LINK VERSION) */
    .service-card .btn-link {
        display: inline-block;
        margin: auto auto 20px auto;
        padding: 10px 18px;
        border: none;
        background: var(--brand-pink);
        color: #fff;
        border-radius: 6px;
        cursor: pointer;
        transition: 0.3s;
        text-decoration: none;
        text-align: center;
    }

        /* Hover effect */
        .service-card .btn-link:hover {
            opacity: 0.9;
        }

.banner {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: fill;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .slide.active {
        opacity: 1;
    }
