﻿/* ===== SLIDER ===== */
.slider-container {
    position: relative;
    width: 100%;
    margin: 40px 0px 0px 0px;
    overflow: hidden;
    border: 2px solid #ccc;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.05);
/*    border: 1px solid #d35400;*/
}


    .slider {
        display: flex;
        transition: transform 0.7s ease-in-out;
        
    }

.slide {
    flex: 0 0 100%;
    max-height: 450px;
    overflow: hidden;
}

    .slide img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        display: block;
        border-radius: 6px;
    }

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 28px;
    border-radius: 50%;
    z-index: 1000;
    transition: background-color 0.3s ease;
    user-select: none;
}

    .slider-btn:hover,
    .slider-btn:focus {
        background-color: rgba(0, 0, 0, 0.7);
        outline: none;
    }

    .slider-btn.left {
        left: 15px;
    }

    .slider-btn.right {
        right: 15px;
    }

/* ===== HERO ===== */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(90deg, #2c3e50, #7f8c8d);
    color: white;
    border-radius: 8px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 0 8px 20px rgb(0 0 0 / 0.2);
}

    .hero h1 {
        font-size: 3rem;
        margin-bottom: 16px;
        font-weight: 700;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 24px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero .btn {
        background-color: #d35400;
        color: white;
        padding: 12px 28px;
        border-radius: 6px;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        display: inline-block;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

        .hero .btn:hover,
        .hero .btn:focus {
            background-color: #e67e22;
            color: white;
            outline: none;
        }

/* ===== SERVICES ===== */
.services {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px 20px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.service-card {
    background-color: #ecf0f1;
    padding: 30px 25px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgb(0 0 0 / 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .service-card:hover,
    .service-card:focus-within {
        transform: translateY(-8px);
        box-shadow: 0 8px 20px rgb(0 0 0 / 0.15);
    }

    .service-card h2 {
        margin-bottom: 12px;
        font-size: 1.5rem;
        color: #d35400;
    }

    .service-card p {
        font-size: 1rem;
        color: #444;
    }

/* ===== TESTIMONIALS ===== */
.testimonials {
    background-color: #f7f7f7;
    padding: 60px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgb(0 0 0 / 0.05);
}

    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 32px;
        font-weight: 700;
        color: #222;
    }

    .testimonials blockquote {
        font-style: italic;
        max-width: 600px;
        margin: 0 auto;
        padding: 25px 30px;
        background-color: #fff;
        border-left: 6px solid #d35400;
        border-radius: 10px;
        color: #333;
        font-size: 1.1rem;
    }

    .testimonials footer {
        margin-top: 16px;
        font-weight: 600;
        color: #555;
    }

/* ===== BLOG SECTION ===== */
.blog-section {
    background-color: #fff;
    padding: 60px 20px;
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

    .blog-section h2 {
        font-size: 2rem;
        margin-bottom: 32px;
        font-weight: 700;
        color: #222;
    }

    .blog-section ul {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        max-width: 500px;
    }

    .blog-section li {
        margin-bottom: 18px;
        font-size: 1.1rem;
    }

        .blog-section li a {
            color: #d35400;
            font-weight: 600;
            transition: color 0.3s ease;
        }

            .blog-section li a:hover,
            .blog-section li a:focus {
                color: #e67e22;
                outline: none;
                text-decoration: underline;
            }

/* ===== CALL TO ACTION (CTA) ===== */
.cta {
    background-color: #d35400;
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    max-width: 900px;
    margin: 0 auto 60px;
    box-shadow: 0 10px 25px rgb(0 0 0 / 0.3);
}

    .cta h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .cta p {
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto 30px;
    }

    .cta .btn-primary {
        background-color: #f39c12;
        color: white;
        padding: 14px 30px;
        font-size: 1.1rem;
        border-radius: 8px;
        font-weight: 700;
        text-decoration: none;
        display: inline-block;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

        .cta .btn-primary:hover,
        .cta .btn-primary:focus {
            background-color: #e67e22;
            outline: none;
        }

/* ===== STATS SECTION ===== */
.stats-section {
    display: flex;
    justify-content: center;
    gap: 45px;
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.stat-box {
    background-color: #ecf0f1;
    padding: 35px 25px;
    border-radius: 12px;
    width: 200px;
    box-shadow: 0 6px 18px rgb(0 0 0 / 0.08);
    transition: box-shadow 0.3s ease;
}

    .stat-box:hover,
    .stat-box:focus-within {
        box-shadow: 0 10px 30px rgb(0 0 0 / 0.15);
    }

    .stat-box h3 {
        font-size: 3rem;
        color: #d35400;
        margin-bottom: 10px;
        font-weight: 800;
    }

    .stat-box p {
        font-size: 1.1rem;
        color: #444;
    }

/* ===== PARTNERS ===== */
.partners {
    padding: 60px 20px;
    text-align: center;
    background-color: #f7f7f7;
    max-width: 1100px;
    margin: 0 auto 60px;
    border-radius: 10px;
}

    .partners h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 40px;
        color: #222;
    }

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

    .partner-logos img {
        width: 140px;
        opacity: 0.85;
        transition: opacity 0.3s ease;
        cursor: default;
    }

        .partner-logos img:hover,
        .partner-logos img:focus {
            opacity: 1;
            outline: none;
        }
.partner-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    height: 250px;
}

    .partner-card.loaded {
        opacity: 1;
        transform: translateY(0);
    }

/* ===== MAP CONTAINER ===== */
#map-container {
    max-width: 1100px;
    margin: 0 auto 80px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgb(0 0 0 / 0.12);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .services {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 90%;
        max-width: 350px;
    }

    .stats-section {
        flex-direction: column;
    }

    .stat-box {
        width: 100%;

        margin-bottom: 20px;
    }

    .partner-logos {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p,
    .cta p {
        font-size: 1rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .slider-btn {
        font-size: 24px;
        padding: 10px 14px;
    }
}
