/* General Styles */
html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
}

/* Home Section */
#home {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: white;
}

#home h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

/* Services Section */
.card {
    transition: transform 0.3s ease;
    height: 100%;
}

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

.card-title {
    color: #333;
    margin-bottom: 15px;
}

/* About Section */
.counter-box {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 5px;
}

.counter {
    font-size: 36px;
    font-weight: bold;
    color: #007bff;
}

/* Contact Section */
#contact {
    background-color: #f8f9fa;
}

.form-control {
    padding: 12px;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: #343a40;
}

footer h5 {
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    #home h1 {
        font-size: 36px;
    }
} 