html, body {
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background-color: white;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.navbar {
    background-color: #1d2224 !important;
    width: 100%;
    padding: 15px 0;
    font-size: 1.2rem;
}

.navbar-nav {
    flex-direction: row;
    text-align: center;
    margin: 0 auto;
}

.navbar-nav .nav-item {
    transition: transform 0.3s ease;
}

.navbar-nav .nav-item:hover {
    transform: translateY(-5px);
}

.nav-link {
    color: #f6d51c !important;
    margin: 0 15px;
}

.nav-link:hover {
    color: #613a15 !important;
}

.hero {
    background-color: #387a3a;
    color: #f6d51c;
    padding: 50px 0;
    text-align: center;
    border: 1px solid black;
}

.features {
    background-color: #f5f5f5;
    color: #1d2224;
    padding: 20px 0;
}

.feature-box {
    background-color: #ffffff;
    color: #1d2224;
    padding: 20px;
    border: 1px solid #387a3a;
    border-radius: 10px;
    height: 100%;
}

.feature-box h3 { color: #387a3a; }

.main-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
}

.projects-list, .blog-section {
    flex: 1 1 calc(50% - 20px);
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.blog-section { background-color: #ffffff !important; }

.carousel { overflow: hidden; }

.project-image {
    object-fit: contain;
    width: 100%;
    height: 372px;
}

.project-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000;
    border-radius: 10px;
    padding: 20px;
    height: 400px;
}

.project-item p {
    font-size: 1.2rem;
    color: #fff;
}

.project-card {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
    color: #fff;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.project-card-container { width: 100%; cursor: pointer; }

.project-card .card-body {
    background-color: rgba(255,255,255,0.8);
    padding: 20px;
    border-radius: 10px;
}

.project-content {
    background-color: rgba(255,255,255,0.8);
    padding: 20px;
    text-align: center;
    width: 100%;
}

.project-content h3 { font-size: 1.5rem; color: #333; }
.project-content p { font-size: 1rem; color: #666; }

.blog-post-body {
    padding: 20px;
    text-align: center;
}

footer.footer {
    background-color: #1d2224;
    padding: 20px 0;
    color: #f6d51c;
    text-align: center;
    border-radius: 10px;
}

.footer-links a {
    color: #f6d51c;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

.footer-links a:hover { color: #613a15; }

.social-icons {
    padding: 20px 0;
    text-align: center;
}

.social-icons a { margin: 0 15px; }

.social-icons a i {
    font-size: 3rem;
    color: #f6d51c;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a i:hover {
    color: #613a15;
    transform: scale(1.1);
}

.card-title { color: #000; font-weight: 600; }
.card-text { color: #333; font-size: 0.95rem; }

.honeypot { display: none; }

.form-group .form-label { font-weight: bold; }
.form-group .form-control { margin-top: 8px; }

.projects-section { background-color: #f8f9fa; }

@media (max-width: 768px) {
    .navbar-brand img { height: 40px; width: 50px; }
    footer.footer { text-align: center; }
}

@media (max-width: 576px) {
    .navbar-nav { flex-direction: column; }
    .navbar-nav .nav-item { transform: none; }
    .footer-bottom img { margin-left: 0; }
}
