/* Global Styles */
:root {
    --primary-color: #e74c3c;
    --secondary-color: #34495e;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--dark-color);
    padding-top: 76px; /* Space for fixed navbar */
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #c0392b;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #c0392b;
    border-color: #c0392b;
}

.btn-outline-dark:hover {
    background-color: var(--dark-color);
    color: white;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Navigation Bar */
.navbar {
    padding-top: 15px;
    padding-bottom: 15px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Hero Banner */
.hero-section {
    padding: 80px 0;
    background-color: var(--light-color);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-image-placeholder {
    background-color: #e9ecef;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Category Cards */
.category-card {
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-placeholder {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 8px 0 0;
}

/* Process Steps */
.process-timeline {
    position: relative;
    padding: 20px 0;
}

.process-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.badge.rounded-circle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonials */
.testimonial-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.testimonial-text {
    font-style: italic;
}

/* Contact Information */
.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Team Members */
.team-card {
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image-placeholder {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 8px 0 0;
}

/* Value Icons */
.value-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* About Page */
.about-image-placeholder {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 66px;
    }
    
    .navbar {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    .hero-section {
        padding: 40px 0;
    }
}

/* Animation Effects */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
} 

/* Footer Styles */
footer {
    background-color: var(--secondary-color);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

/* Form Styles */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.25);
}

/* Button Styles */
.btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.btn-lg {
    padding: 0.75rem 2rem;
} 