html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 80px;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ff6600;
    letter-spacing: -0.5px;
}

.navbar-brand:hover {
    color: #ff6600;
}

.nav-link {
    margin-left: 1rem;
    font-weight: 500;
    transition: color .2s;
}

.nav-link:hover {
    color: #ff6600;
}

.navbar {
    padding: 1rem 0;
}

.navbar-nav {
    gap: 2rem;
}

.nav-link {
    white-space: nowrap;
}

.nav-link.active {
    color: #ff6600 !important;
    font-weight: 600;
}

html {
    scroll-behavior: smooth;
}

/* HERO */

.hero {
    min-height: calc(100vh - 75px);
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-logo {
    width: 60%;
    max-width: 500px;
    min-width: 250px;
    height: auto;
}


.hero h1 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}


.hero p {
    max-width: 650px;
    margin: auto;
    color: #555;
}

/* BUTTON */

.discover-btn {

    margin-top: 20px;

    padding: 12px 40px;

    border-radius: 30px;

    background: #ff6600 !important;

    color: white !important;

    font-weight: 500;

    border: none;

    transition: 0.3s;

}


.discover-btn:hover {

    background: #e65c00 !important;

    color: white !important;

}

.about-card {
    padding: 30px;
    height: 100%;
    border: 1px solid #ddd;
    border-radius: 15px;
    transition: 0.3s;
}


.about-card:hover {
    transform: translateY(-5px);

    border-color: #ff6600;

}


.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}


.about-card p {
    color: #555;
}

.about-section {
    padding: 100px 0;
}

/* SERVICES */

.service-card {

    height: 100%;
    padding: 35px 25px;

    border: 1px solid #e5e5e5;
    border-radius: 15px;

    transition: 0.3s;

}


.service-card:hover {

    transform: translateY(-8px);

    border-color: #ff6600;

}


.service-icon {

    font-size: 2.5rem;
    color: #ff6600;

    margin-bottom: 20px;

}


.service-card h3 {

    font-size: 1.3rem;
    font-weight: 600;

    margin-bottom: 15px;

}


.service-card p {

    color: #555;
    line-height: 1.6;

}

/* CONTACT */

.contact-box {

    padding: 60px 30px;

    border-radius: 20px;

    background: #f8f8f8;

}


.contact-box h2 {

    font-size: 2.5rem;
    font-weight: 600;

    margin-bottom: 20px;

}


.contact-box p {

    color: #555;

    max-width: 700px;

    margin-left: auto;
    margin-right: auto;

}


.contact-btn {

    margin-top: 20px;

    padding: 12px 40px;

    border-radius: 30px;

    background: #ff6600 !important;

    color: white !important;

    font-weight: 500;

    border: none;

    transition: 0.3s;

}


.contact-btn:hover {

    background: #e65c00 !important;

    color: white !important;

}


.contact-info {

    color: #444;

}

/* CONTACT */

.contact-section {
    padding: 100px 0;
}

/* FOOTER */

.footer {

    padding: 30px 0;

    background: #111;

    color: #aaa;

    font-size: 0.9rem;

}


.footer a {

    color: #ff6600;

    text-decoration: none;

    transition: 0.3s;

}


.footer a:hover {

    color: #ff8533;

}