/* --- BASE STYLES --- */

.body-default {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0.05em;
}


/* --- HERO BANNER STYLES --- */

.hero-banner {
    height: 101vh;
    position: relative;
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0;
}

.banner-content {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    padding-top: 70px;
}

.banner-content p {
    line-height: 57px;
    padding: 0;
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
}

/* --- SERVICES SECTION STYLES --- */

.services-section {
    margin: auto;
}

.services-title {
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 70px;
    color: var(--subtitles-main-color);
    letter-spacing: 0;
    line-height: 80px;
    padding: 0;
}

.services-description {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-main-color);
}

.service-card {
    text-align: center;
    padding: 1.5rem;
}

.service-icon {
    vertical-align: middle;
    margin-bottom: 30px;
    max-width: 100%;
    height: auto;
}

.service-title {
    color: var(--titles-main-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0;
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 22px;
    transition: color 0.3s ease;
}

.service-title:hover {
    color: var(--hover-color);
    text-decoration: none;
}

.service-description {
    margin-bottom: 1.5rem;
    font-size: 16px;
    font-weight: 500;
}

.services {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--text-main-color);
}

/* Service Button */
.service-btn {
    color: #fff;
    background-color: var(--titles-main-color);
    border-color: var(--titles-main-color);
    transition: all 0.3s ease;
}

.service-btn:hover {
    color: #fff;
    background-color: var(--hover-color);
    border-color: var(--hover-color);
}

/* --- MODAL STYLES --- */

.modal-title {
    text-align: center;
    text-transform: uppercase;
    padding: 5px;
    font-weight: 700;
    font-size: 35px;
}

.popup_desc {
    font-size: 27px;
    font-weight: 400;
    letter-spacing: 0.8px;
    line-height: 33px;
    text-align: justify;
}

/* --- UTILITY CLASSES --- */

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

.text-uppercase {
    text-transform: uppercase;
}

.font-weight-bold {
    font-weight: 700;
}