/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('../bgimg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    position: relative;
}

/* Hero Section Small */
.hero-section-small {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('../bgimg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    position: relative;
    margin-bottom: 2rem;
}

/* Add Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* Additional Styles */
.min-vh-75 {
    min-height: 75vh;
}

.features-section .fas {
    color: #007bff;
}

/* Cards */
.card {
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: none;
    border-radius: 8px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
}

/* Footer */
footer {
    margin-top: auto;
}

.social-links a {
    text-decoration: none;
}

/* Forms */
.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
    border-color: #80bdff;
}

/* Buttons */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
} 