body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #333;
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-size: 1.1rem;
}

.section-padding {
    padding: 60px 0;
}

#header-hero {
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
}

#header {
    background-color: #ffffff;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

#hero {
    background-size: cover;
    background-position: center;
    flex: 1;
}

#header h1, #header p, #header a {
    text-align: left;
	font-style: normal;
}

#about {
    background-color: #1C3C70;
}

.service-box {
    background: #1C3C70;
    color: white;
    padding: 30px;
    border-radius: 10px;
}

#projects .project-card .card {
    border: none;
}

#projects .project-card .card-img-top {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#parallax {
    background: url('img/para.jpg') no-repeat fixed center center/cover;
    height: 300px;
}

#gallery .gallery-item {
    margin-bottom: 30px;
}

#gallery .gallery-item img {
    width: 100%;
    border-radius: 10px;
}

#contact {
    background-color: #f9f9f9;
}

#contact .form-group {
    margin-bottom: 1.5rem;
}

#contact button {
    margin-top: 1rem;
}

#contact .col-md-6 {
    margin-bottom: 2rem;
}

#contact .text-primary {
    color: #1C3C70 !important;
}

#contact .text-primary a {
    font-size: 1.5rem;
}

#contact .text-primary i {
    margin: 0 10px;
}


footer p {
    margin: 0;
    padding: 10px 0;
}

footer a {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    #header-hero {
        flex-direction: column;
        height: auto;
    }

    #header, #hero {
        flex: 0 0 100%;
    }

    #hero {
        height: 300px;
    }
}

