:root {
    --primary: #003366;
    --secondary: #005b96;
    --light: #f7f9fc;
    --white: #ffffff;
    --text: #263238;
    --border: #e3e8ef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: white;
}

.nav-custom {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,.05);
}

.logo-text {
    color: var(--primary) !important;
    font-weight: 800;
}

.nav-custom ul li a {
    color: var(--text);
    font-weight: 500;
}

.hero-section {
    padding: 140px 0;
    background: linear-gradient(
        180deg,
        #ffffff,
        #f6f8fb
    );
}

.hero-tag {
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: .8rem;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-top: 20px;
    color: var(--primary);
}

.hero-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-top: 25px;
    margin-bottom: 35px;
    color: #546e7a;
}

.btn-primary {
    background: var(--primary);
}

.btn-primary:hover {
    background: var(--secondary);
}

.btn-outline {
    margin-left: 15px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.executive-card {
    background: white;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.card-stat {
    text-align: center;
    padding: 20px;
}

.card-stat h2 {
    color: var(--primary);
    font-weight: 800;
}

.section-header span {
    color: var(--secondary);
    font-weight: 700;
}

.section-header h2 {
    margin-top: 10px;
    font-weight: 700;
}

.section-light {
    background: white;
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,.08);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary);
}

.section-dark {
    background: var(--light);
}

.custom-list .collection-item {
    background: white;
    border: none;
    margin-bottom: 12px;
    border-radius: 10px;
    font-weight: 500;
}

.contact-box {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.footer-custom {
    background: var(--primary);
}

.footer-custom p,
.footer-custom h5,
.footer-custom h6 {
    color: white;
}

@media(max-width:768px){

    .hero-section{
        padding:80px 0;
    }

    .hero-section h1{
        font-size:2.6rem;
    }

    .btn-outline{
        margin-left:0;
        margin-top:15px;
        display:block;
    }

}