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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 56px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../logo.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    min-height: 500px;
    position: relative;
    padding-bottom: 200px;
}

.hero-section h1 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* About Section */
#about {
    background-color: #ffffff;
}

#about h2 {
    margin-bottom: 2rem;
    color: #333;
}

#about p {
    font-size: 18px;
}

/* Services Section */
#services .card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

#services .card-img-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

#services .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#services .card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

#services .card-title {
    color: #333;
    font-weight: 600;
}

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

.form-control {
    padding: 0.8rem;
    border-radius: 0.5rem;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    border-color: #80bdff;
}

/* Buttons */
.btn-primary {
    padding: 0.8rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #007bff !important;
}

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

/* Founder Bios */
.founder-bio {
    background-color: #f8f9fa;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-bio:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.founder-bio h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.founder-bio h6 {
    margin-bottom: 1rem;
}

.founder-bio p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
} 