/* Style global */
body {
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #212529;
}

h1, h2, h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
    color: #0d6efd;
}

/* Section */
.section {
    padding: 80px 0;
}

/* Hero */
.hero {
    height: 378px; /* ≈ 7 cm */
    background: linear-gradient(135deg, #6f9163, #5e7381);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.hero a.btn {
    font-size: 1rem;
    padding: 10px 24px;
    border-radius: 30px;
}




/* Icon box */
.icon-box {
    background-color: white;
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease-in-out;
    border: 1px solid #dee2e6;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.icon-box:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Project cards */
.project-card {
    background-color: #fff;
    border-left: 1px solid #0d6efd;
    transition: all 0.3s ease-in-out;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}
.project-card:hover {
    background-color: #f0f9ff;
    transform: translateY(-4px);
    border-left-color: #0056b3;
}

/* Navbar */
.custom-navbar {
    background-color: #A37B70;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: white;
    padding-top: 8px;
    padding-bottom: 8px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.btn-nav {
    margin-left: 10px;
}

.container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

    

/* Footer */
footer {
    background-color: #A37B70;
    font-size: 0.95rem;
    color: white;
    text-align: center;
    padding: 30px 0;
    border-top: 3px solid #fff3cd;
}
footer a {
    color: #fff;
    transition: color 0.3s ease;
}
footer a:hover {
    color: #ffc107;
}
