/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Banner Section */
.banner-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}

/* Content Section */
.content-section {
    padding: 80px 0;
}

/* Bullet Points Section */
.bullet-points {
    padding: 80px 0;
}

.bullet-points h3 {
    color: #333;
    margin-bottom: 20px;
}

/* Projects Section */
.projects .card {
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.projects .card:hover {
    transform: translateY(-5px);
}

/* Contact Form */
.contact-section .card {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border: none;
}

.contact-section .form-control {
    border-radius: 5px;
    padding: 12px;
}

.contact-section .btn-primary {
    padding: 12px 30px;
    border-radius: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .banner-section {
        padding: 60px 0;
    }
    
    .content-section,
    .bullet-points,
    .normal-content,
    .projects {
        padding: 40px 0;
    }
    
    .banner-section h1 {
        font-size: 2.5rem;
    }
}

/* Footer */
footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
}

/* Navigation */
.navbar {
    padding: 15px 0;
}

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

.nav-link {
    font-weight: 500;
    padding: 8px 15px !important;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.card-body {
    padding: 30px;
}

/* Map Container */
.ratio {
    border-radius: 10px;
    overflow: hidden;
} 