/* General Body & Typography */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    padding-top: 70px; /* Adjust for fixed navbar height */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #222;
}

.display-3, .display-4, .display-5 {
    font-weight: 700;
}

/* Navbar */
.navbar {
    background-color: #222e44 !important; /* Darker navy/grey for sleek look */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff !important;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff;
}

.navbar .btn-primary {
    background-color: #007bff; /* Primary blue */
    border-color: #007bff;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px; /* Pill shape */
}
.navbar .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #222e44, #445577); /* Gradient similar to inspiration */
    min-height: 70vh; /* Make it a good height */
    position: relative;
    overflow: hidden; /* To contain any background graphics */
    padding-top: 100px; /* Push content down from navbar */
    padding-bottom: 100px;
}

/* Optional: Add background image or pattern to hero like the inspiration */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Replace with your specific background image/patterns */
    /* background-image: url('../img/hero-bg-pattern.svg'); */
    /* background-size: cover; */
    opacity: 0.1; /* Adjust transparency */
    z-index: 0;
}

.hero-section .container {
    position: relative; /* Ensure content is above pseudo-element */
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-section .lead {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-section .form-control-lg {
    max-width: 400px; /* Limit input width */
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border: none;
    padding: 15px 20px;
}

.hero-section .btn-primary {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 15px 30px;
    font-weight: 600;
}

/* Section Styling */
section {
    padding: 80px 0;
}

section:nth-of-type(odd) { /* Alternate background for sections */
    background-color: #f8f9fa;
}

section:nth-of-type(even) {
    background-color: #fff;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #222e44;
}

/* Card Styling (Inspired by image) */
.card {
    border: none;
    border-radius: 15px; /* Rounded corners for cards */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* Important for inner elements like images */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Specific Card Styles for "How It Works" */
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #e0f7fa; /* Light teal background */
    color: #00bcd4; /* Teal icon color */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.how-it-works .card-title {
    color: #222e44;
}

/* Specific Card Styles for "Features" */
.features .card h5 i {
    font-size: 1.5rem;
}

/* Pricing Card */
.pricing-card {
    border-width: 3px !important;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.pricing-card .card-header {
    background-color: #007bff !important;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
}

.pricing-card .card-title {
    color: #fff;
    font-size: 1.8rem;
}

.pricing-card .display-4 {
    color: #222e44;
}

.pricing-card ul {
    list-style-type: none; /* Remove default bullet */
    padding-left: 0;
}

.pricing-card ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #444;
}

.pricing-card .btn-success {
    background-color: #28a745;
    border-color: #28a745;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
}
.pricing-card .btn-success:hover {
    background-color: #218838;
    border-color: #218838;
}

/* Testimonial Cards */
.testimonial-card {
    background-color: #fff;
}

.testimonial-card .lead {
    font-size: 1.15rem;
    color: #555;
}

.testimonial-card img {
    border: 2px solid #007bff;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #007bff, #0056b3); /* Strong blue gradient */
    padding: 100px 0;
}

.final-cta h2 {
    color: #fff;
}

.final-cta .lead {
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
footer {
    background-color: #222e44 !important;
    color: rgba(255, 255, 255, 0.6);
}

footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

footer .list-unstyled a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .list-unstyled a:hover {
    color: #fff;
}

footer .social-icons a {
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar-nav .btn-primary {
        margin-top: 15px;
        margin-left: 0 !important;
    }
    .hero-section h1 {
        font-size: 2.8rem;
    }
    .hero-section .lead {
        font-size: 1.1rem;
    }
    .hero-section .input-group {
        flex-direction: column;
        align-items: center;
    }
    .hero-section .form-control-lg,
    .hero-section .btn-primary {
        max-width: 100%;
        width: 100%;
        border-radius: 5px !important;
        margin-bottom: 10px;
    }
}