/* style.css */

/* Define Color Palette */
:root {
    --primary-blue: #0052A5; /* Main blue from icon */
    --secondary-blue: #4D94DB; /* Lighter blue */
    --light-blue-bg: #E6F0FA; /* Very light blue for backgrounds */
    --dark-text: #222222;
    --gray-text: #666666;
    --light-gray-bg: #f8f9fa; /* Bootstrap's light gray */
    --white: #FFFFFF;
    --border-color: #dee2e6; /* Bootstrap's border color */
}

/* Apply custom font (Optional - Example using Google Fonts 'Inter') */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    padding-top: 70px; /* Adjust based on final navbar height */
    color: var(--dark-text);
}

/* --- Bootstrap Overrides & Customizations --- */

/* Buttons */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.btn-primary:hover {
    background-color: #003d7a; /* Darker primary blue */
    border-color: #003d7a;
}

.btn-outline-primary {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.btn-outline-primary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Navbar */
.navbar {
    /* Add specific overrides if needed, Bootstrap default is decent */
}
.navbar-brand img {
    /* Adjust if icon needs specific styling */
}
.navbar-brand {
    color: var(--primary-blue) !important; /* Ensure brand color */
}

/* Links */
a {
    color: var(--primary-blue);
    text-decoration: none;
}
a:hover {
    color: #003d7a;
    text-decoration: underline;
}

/* --- Page Sections --- */

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    background-color: var(--light-blue-bg); /* Light blue background */
    /* Optional: Add a subtle gradient or background image */
    /* background: linear-gradient(135deg, var(--light-blue-bg) 0%, var(--white) 100%); */
}
.hero-section h1 {
    color: var(--primary-blue);
}
.hero-section .lead {
    color: var(--gray-text);
}
.hero-image {
    max-width: 80%; /* Adjust as needed */
    margin-top: 2rem;
}
@media (min-width: 768px) {
    .hero-image {
        max-width: 100%;
        margin-top: 0;
    }
}


/* Features Section */
#features {
    /* Section styling */
}
.feature-icon i {
    color: var(--primary-blue);
    /* background-color: var(--light-blue-bg);
    padding: 15px;
    border-radius: 50%; */ /* Alternative icon styling */
}
#features .badge {
    font-size: 0.7em;
    vertical-align: middle;
    margin-left: 5px;
}

/* How It Works Section */
#how-it-works {
    background-color: var(--light-gray-bg);
}

/* Use Cases Section */
#use-cases .card {
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
#use-cases .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* Download/Bottom CTA Section */
#download {
    background-color: var(--primary-blue); /* Use primary blue */
}

/* Footer */
footer {
    background-color: var(--dark-text) !important; /* Darker footer */
}
.footer-link {
    color: var(--white-50);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
.footer-link:hover {
    color: var(--white);
    text-decoration: none;
}
footer h6 {
    margin-bottom: 0.8rem;
    font-weight: 600;
}
footer .list-unstyled li {
    margin-bottom: 0.5rem;
}


/* Pricing Page Specific */
.pricing-section {
    padding-top: 4rem; /* Adjust padding as hero is not present */
    padding-bottom: 4rem;
    background-color: var(--white);
}
.pricing-section .card {
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.pricing-section .card:hover {
     transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.pricing-card-title {
    font-size: 2.5rem; /* Larger price */
    font-weight: 600;
}
.pricing-section .card-header {
    border-bottom: 1px solid var(--border-color);
}
.pricing-section .list-unstyled li {
    margin-bottom: 0.75rem;
    color: var(--dark-text);
}
.pricing-section .list-unstyled li i {
    margin-right: 0.5rem;
}
.pricing-section .list-unstyled li.text-muted {
    color: var(--gray-text) !important; /* Ensure muted features are gray */
}
.pricing-section .card.border-primary {
    border-width: 2px !important;
}
/* Style the 'Most Popular' badge */
.pricing-section .card-header .badge {
    font-size: 0.8rem;
    padding: 0.4em 0.8em;
}

/* --- Utility --- */
.fw-bold { font-weight: 700 !important; }
.fw-semibold { font-weight: 600 !important; }