@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f4f4;
    overflow-x: hidden;
}

/* GLOBAL FONT */
h1, h2, h3, h4, h5, .hero-title, .adv-title, .section-title {
    font-size: 28px !important;
    font-weight: 700 !important;
    line-height: 1.3;
}

p, .hero-desc, .section-subtitle, .adv-item p, .service-card h4 {
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 1.6;
}

/* HERO */
.hero-section {
    background: white;
    padding: 60px 0 80px;
}

.logo {
    width: 220px;
    margin-bottom: 25px;
}

.hero-title {
    color: #0047B3;
    margin-bottom: 20px;
}

.hero-desc {
    color: #0047B3;
    margin-bottom: 35px;
}

.hero-btn {
    background: #0047B3;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}

.hero-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 20px rgba(0, 71, 179, 0.3);
    /* Color remains the same */
    background: #0047B3 !important;
    color: white;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
}

/* SERVICES */
.services-section {
    background: #0047B3;
    padding: 100px 0;
}

.section-title, .section-subtitle {
    color: white;
}

.service-card {
    background: white;
    border-radius: 30px;
    padding: 40px 25px 60px;
    text-align: center;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.service-card:hover {
    transform: translateY(-15px);
}

.service-img {
    width: 85%;
    margin-bottom: 25px;
}

/* ADVANTAGES & KONTAK */
.advantages-section {
    background: white !important;
    padding: 100px 0;
}

.adv-title {
    color: #0047B3;
    margin-bottom: 40px;
}

.adv-item {
    margin-bottom: 45px;
}

.support-img {
    max-width: 70%;
    border-radius: 15px;
}

.google-map {
    width: 100%;
    height: 420px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* IMPROVED CAROUSEL DOTS */
.carousel-indicators.custom-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
    z-index: 10;
}

.carousel-indicators.custom-indicators button {
    background-color: #0047B3;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 0 6px;
    opacity: 0.5;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.carousel-indicators.custom-indicators button.active {
    opacity: 1;
    background-color: #0047B3;
    transform: scale(1.2);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-section { text-align: center; }
}

@media (max-width: 576px) {
    .carousel-item .service-card {
        margin: 0 15px;
        padding: 35px 20px 55px !important;
    }
}