/* General Styles */
:root {
    --primary-color: #f39c12;
    --primary-dark: #e67e22;
    --secondary-color: #34495e;
    --light-bg: #f8f9fa;
    --dark-bg: #2c3e50;
    --text-dark: #333333;
    --text-light: #ffffff;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    padding-top: 76px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.section-heading {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Navigation */
.navbar-dark {
    background-color: var(--dark-bg) !important;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand i {
    color: var(--primary-color);
    margin-right: 5px;
}

.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 650px;
    background-image: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center center;
    color: var(--text-light);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-text {
    position: relative;
    z-index: 1;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    border-left: 5px solid var(--primary-color);
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-btns .btn {
    padding: 12px 30px;
    font-weight: 600;
}

/* Services Section */
.service-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Projects Section */
.project-card {
    border: none;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project-card img {
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

/* Testimonials */
.testimonial-card {
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-author {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* Contact Form */
.contact-info {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 30px;
    height: 100%;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

.form-control {
    border-radius: 0;
    padding: 12px;
    margin-bottom: 15px;
}

/* About Page */
.about-img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member-card {
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-member-img {
    height: 250px;
    object-fit: cover;
}

.team-social a {
    color: var(--secondary-color);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    color: var(--primary-color);
}

/* Client Questionnaire */
.questionnaire-form {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: var(--dark-bg) !important;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 500px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-btns .btn {
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 400px;
    }
    
    .hero-text {
        padding: 15px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
} 