/* GENERAL */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* NAVIGATION */

.navbar {
    background-color: #0b3d91;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin-left: 10px;
}

.navbar-nav .nav-link:hover {
    color: #ffcc00 !important;
}

/* HERO SECTION */

.hero-section {
    background:
        linear-gradient(rgba(11,61,145,0.8),
        rgba(30,144,255,0.8)),
        url('../images/hero-tech.jpg');

    background-size: cover;
    background-position: center;

    color: white;
    text-align: center;
    padding: 110px 20px;
}

/* TITLES */

.section-title {
    color: #0b3d91;
    font-weight: bold;
}

/* CARDS */

.service-card,
.solution-card,
.portfolio-card {

    border: none;
    transition: all 0.3s ease;
}

.service-card:hover,
.solution-card:hover,
.portfolio-card:hover {

    transform: translateY(-8px);
}

.service-card img,
.solution-card img,
.portfolio-card img {

    height: 240px;
    object-fit: cover;
}

/* BUTTONS */

.cta-btn,
.hero-btn,
.submit-btn {

    background-color: #ff7a00;
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    font-weight: bold;
}

.cta-btn:hover,
.hero-btn:hover,
.submit-btn:hover {

    background-color: #e66b00;
    color: white;
}

/* BOXES */

.contact-box,
.mission-box {

    background-color: #f5f7fa;
    padding: 30px;
    border-radius: 10px;
}

/* STATISTICS */

.stats-section {
    background-color: #f5f7fa;
}

.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 42px;
    font-weight: bold;
    color: #0b3d91;
}

/* CTA SECTION */

.cta-section {

    background:
        linear-gradient(
        135deg,
        #0b3d91,
        #1e90ff);

    color: white;
    text-align: center;
    padding: 60px 20px;
}

/* FOOTER */

footer {

    background-color: #0b3d91;
    color: white;
    text-align: center;
    padding: 20px;
}

/* WHATSAPP BUTTON */

.whatsapp-btn {

    position: fixed;
    bottom: 20px;
    right: 20px;

    background: #25d366;
    color: white;

    padding: 12px 18px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: bold;

    z-index: 999;
}

/* RESPONSIVE */

@media (max-width:768px) {

    .hero-section h1 {
        font-size: 2rem;
    }

    .section-title {
        text-align: center;
    }

}