html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #212529;
    padding-top: 70px;
}


/* HERO */

.hero {
    min-height: 600px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            135deg,
            #07111f,
            #102d50
        );

    color: white;

    padding: 80px 0;
}


.hero h1 {
    font-size: 3.5rem;

    font-weight: 700;

    line-height: 1.2;
}


.hero-icon {
    font-size: 220px;

    opacity: 0.9;
}


/* PAGE HEADER */

.page-header {

    background:
        linear-gradient(
            135deg,
            #07111f,
            #102d50
        );

    color: white;

    padding: 90px 0 70px;

    text-align: center;
}


.page-header h1 {

    font-size: 3rem;

    font-weight: 700;

}


/* SERVICE CARD */

.service-card {

    height: 100%;

    background: white;

    border: 1px solid #e9ecef;

    border-radius: 12px;

    padding: 30px;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.05);

    transition: all 0.3s ease;
}


.service-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.10);

}


.service-card > i {

    font-size: 45px;

    color: #0d6efd;

    display: block;

    margin-bottom: 20px;
}


.service-card h4 {

    font-weight: 700;

    margin-bottom: 15px;

}


.service-card a {

    text-decoration: none;

    font-weight: 600;

    color: #0d6efd;

}


.service-card ul {

    padding-left: 20px;

}


.service-card li {

    margin-bottom: 7px;

}


/* FEATURES */

.feature-card {

    background: white;

    padding: 35px;

    text-align: center;

    border-radius: 12px;

    height: 100%;

}


.feature-card i {

    font-size: 45px;

    color: #0d6efd;

    margin-bottom: 20px;

    display: block;

}


/* ABOUT */

.about-icon {

    font-size: 250px;

    color: #0d6efd;

    display: block;

    text-align: center;

}


/* STATS */

.stat-icon {

    font-size: 45px;

    color: #0d6efd;

    display: block;

    margin-bottom: 15px;

}


/* CTA */

.cta-box {

    background: #f8f9fa;

    border-radius: 15px;

    padding: 60px 30px;

}


/* CONTACT */

.contact-item {

    display: flex;

    align-items: center;

    gap: 20px;

    margin: 30px 0;

}


.contact-item > i {

    font-size: 35px;

    color: #0d6efd;

}


.contact-item p {

    margin: 5px 0 0;

    color: #6c757d;

}


/* FOOTER */

footer a {

    color: #adb5bd;

    text-decoration: none;

}


footer a:hover {

    color: white;

}


/* WHATSAPP */

.whatsapp-button {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: #25d366;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;

    text-decoration: none;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.25);

    z-index: 999;

    transition: transform 0.3s ease;

}


.whatsapp-button:hover {

    color: white;

    transform: scale(1.1);

}


/* MOBILE */

@media (max-width: 768px) {

    .hero {

        min-height: 550px;

        text-align: center;

    }


    .hero h1 {

        font-size: 2.5rem;

    }


    .hero-icon {

        font-size: 130px;

    }


    .about-icon {

        font-size: 150px;

        margin-bottom: 40px;

    }


    .page-header h1 {

        font-size: 2.3rem;

    }

}