/* --- Google Font Import --- */
/* font-family: 'Montserrat', sans-serif; /* For headings */
/* font-family: 'Open Sans', sans-serif; /* For body text */

/* --- Color Palette --- */
:root {
    --primary-blue: #007BFF;
    --dark-navy: #1A2B4C;
    --text-dark: #343A40;
    --text-light: #F8F9FA;
    --bg-light-gray: #f8f9fa;
}

/* --- General Styling --- */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    font-weight: 400;
    padding-top: 70px; /* Offset for fixed navbar */
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark-navy);
}

.section-title {
    font-weight: 600;
    color: var(--dark-navy);
}

/* --- Navbar Styling --- */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-navy) !important;
}
.navbar-brand i {
    color: var(--primary-blue);
    margin-right: 5px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-blue) !important;
}

/* --- Hero Section Styling --- */
#hero {
    height: 80vh;
    min-height: 500px;
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('images/camera.jpg') no-repeat center center;
    background-size: cover;
}


.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin: 20px 0;
}

/* --- Button Styling --- */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
    transform: translateY(-2px);
}

/* --- Services Section --- */
.service-card {
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-blue);
}

.card-title {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* --- Custom Solutions Section --- */
.custom-solution-icon {
    font-size: 3.5rem;
    color: var(--primary-blue);
}

/* --- Process Section --- */
.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}
.process-step .step-number {
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    background-color: var(--primary-blue);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-right: 20px;
}

/* --- Testimonials Section --- */
.testimonial-card {
    background-color: #fff;
    border-top: 4px solid var(--primary-blue);
    padding: 25px;
    height: 100%;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.testimonial-card .quote {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--dark-navy);
}

/* --- About Section --- */
#about .bi-check-circle-fill {
    color: var(--primary-blue);
    margin-right: 10px;
}

/* --- FAQ Accordion Styling --- */
.accordion-item {
    border: 1px solid #dee2e6;
    margin-bottom: 10px;
    border-radius: 5px !important;
}

.accordion-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--dark-navy);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-blue);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}


/* --- Contact CTA Section --- */
#contact {
    background-color: var(--dark-navy);
}

#contact .section-title {
    color: var(--text-light);
}