/* GENERAL */
body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #f5f7fa;
    color: #1a1a1a;
}

h1, h2, h3 {
    font-family: "Poppins", sans-serif;
    margin-bottom: 10px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.header {
    background: #1a1a1a;
    color: #fff;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 22px;
}

/* NAV */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.nav-menu .active a {
    color: #7a3bff;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #3a7bff, #7a3bff);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero-subtitle {
    margin-top: 10px;
    font-size: 18px;
}

/* SERVICES */
.services {
    padding: 60px 0;
    text-align: center;
}

.service-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-card img {
    width: 100px;
    margin-bottom: 15px;
}

/* EXPERTISES */
.expertises {
    padding: 60px 0;
}

.expertise-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.expertise-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.expertise-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* CTA */
.cta {
    text-align: center;
    padding: 60px 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    background: linear-gradient(135deg, #3a7bff, #7a3bff);
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    opacity: 0.8;
}

/* SLIDER */
.slider-section {
    padding: 60px 0;
    text-align: center;
}

.slider {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.slide {
    min-width: 100%;
    transition: transform 0.5s ease;
}

.slide img {
    width: 100%;
    border-radius: 10px;
}

.slider-controls {
    margin-top: 15px;
}

.slider-controls button {
    background: #7a3bff;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    margin: 0 5px;
    cursor: pointer;
}

/* ADDRESSES */
.addresses {
    padding: 60px 0;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.address-block {
    text-align: center;
}

/* FOOTER */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 25px 0;
    text-align: center;
}

.footer a {
    color: #3a7bff;
}