@font-face {
    font-family: 'prompt';
    src: url('../fonts/Prompt-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Arimo';
    src: url('../fonts/Arimo-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url('../img/services-hero.jpg') center/cover;
    height: 70vh;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Services Section */
.services-section {
    margin-top: 20px;
    margin-left: 5%;
    margin-right: 5%;
}

/* path */
.path {
    background-color: white;
    padding: 20px 0px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;

}

.path a {
    color: #282828;
    text-decoration: none;
    margin-left: -1%;
}

.path-separator {
    color: #000000;
    font-weight: 300;
}

h1 {
    font-family: 'prompt';
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 36px;
}

/* Service Card */
.service-card {
    background-color: #f0f0f0;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    transition: all 0.3s;
}

.service-icon img {
    margin-left: 2%;
    margin-bottom: -2%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.service-title {
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #333;
}

.service-description {
    font-family: 'Arimo';
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-list {
    font-family: 'Arimo';
    list-style: none;
    font-size: 16px;
    color: #666;
    line-height: 2;
}

.service-list li {
    padding: 4px 0;
    padding-left: 20px;

}

.service-label {
    font-family: 'Arimo';
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
    margin-bottom: 12px;
}

/* Mobile Responsive - ONLY CHANGES HERE */
@media (max-width: 768px) {
    html {
        overflow-x: hidden;
        width: 100%;
    }

    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .nav-links {
        display: none;
    }

    .container {
        padding: 0 20px;
        max-width: 100%;
    }

    /* Reduce hero banner height on mobile */
    .hero-banner {
        height: 40vh;
        min-height: 250px;
        width: 100%;
        background-size: cover;
    }

    .services-section {
        margin-top: 20px;
        margin-left: 5%;
        margin-right: 5%;
        width: 90%;
        max-width: 90%;
    }

    h1 {
        font-size: 28px;
    }

    .service-icon {
        margin-bottom: 10px;
    }

    .service-icon img {
        margin-left: 0;
        margin-bottom: 0;
        width: 70px;
        height: 70px;
    }

    .service-card {
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .breadcrumb {
        font-size: 11px;
        margin-bottom: 20px;
    }

    .path {
        font-size: 12px;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    html {
        overflow-x: hidden;
        width: 100%;
    }

    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    /* Smaller hero banner on mobile */
    .hero-banner {
        height: 35vh;
        min-height: 200px;
        width: 100%;
        background-size: cover;
    }

    .services-section {
        margin-top: 15px;
        margin-left: 4%;
        margin-right: 4%;
        width: 92%;
        max-width: 92%;
    }

    .service-card {
        padding: 20px 15px;
        width: 100%;
        max-width: 100%;
    }

    .service-icon {
        margin-bottom: 8px;
    }

    .service-icon img {
        margin-left: 0;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
    }

    .service-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .service-description {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .service-list {
        font-size: 13px;
    }

    h1 {
        font-size: 24px;
    }

    .path {
        font-size: 11px;
        gap: 10px;
    }
}

/* iPhone SE (375px) specific */
@media (max-width: 375px) {
    html {
        overflow-x: hidden;
        width: 100%;
    }

    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    /* Compact hero banner on iPhone SE */
    .hero-banner {
        height: 30vh;
        min-height: 120px;
        width: 100%;
        background-size: cover;
    }

    .services-section {
        margin-top: 10px;
        margin-left: 3%;
        margin-right: 3%;
        width: 94%;
        max-width: 94%;
    }

    h1 {
        font-size: 22px;
    }

    .service-card {
        padding: 18px 12px;
        width: 100%;
        max-width: 100%;
    }

    .service-icon {
        margin-bottom: 5px;
    }

    .service-icon img {
        margin-left: 0;
        margin-bottom: 0;
        width: 55px;
        height: 55px;
    }

    .service-title {
        font-size: 15px;
    }

    .service-description {
        font-size: 12px;
    }

    .service-list {
        font-size: 12px;
    }

    .service-label {
        font-size: 14px;
    }

    .path {
        font-size: 10px;
        gap: 8px;
    }
}