/*
Custom CSS for TemplateMo 561 Purple Buzz

https://templatemo.com/tm-561-purple-buzz

*/

<style>
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f4f7f9;
            color: #333;
        }
        .navbar-brand {
            font-weight: 700;
        }
        .btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:focus {
            background-color: #007bff;
            border-color: #007bff;
            box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 10px rgba(0, 123, 255, 0.3);
        }
        .hero-section {
            position: relative;
            /* Ensure the image file name matches this exactly: hero background.jpg */
            background-image: url('../img/hero background.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #007bff; /* A blue color from the existing gradient */
            opacity: 0.7;
            z-index: 1;
        }
        .hero-section .container {
            position: relative;
            z-index: 2; /* Ensures content is above the overlay */
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 400;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        .section {
            padding: 80px 0;
        }
        .section-title {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 2rem;
            color: #1e3a8a;
        }
        .card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        .feature-icon {
            font-size: 3rem;
            color: #007bff;
        }
        .process-step {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            position: relative;
        }
        .step-number {
            font-size: 1.5rem;
            font-weight: 700;
            background-color: #007bff;
            color: white;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-right: 1.5rem;
            z-index: 1;
        }
        .process-line {
            position: absolute;
            left: 22px;
            top: 45px;
            bottom: -35px;
            width: 2px;
            background-color: #e2e8f0;
        }
        .process-step:last-child .process-line {
            display: none;
        }
        .testimonial-card {
            background-color: #ffffff;
            border-left: 5px solid #007bff;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }
        .testimonial-text {
            font-style: italic;
            font-size: 1.1rem;
            color: #555;
        }
        .call-to-action {
            background-color: #1e3a8a;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        .call-to-action .btn {
            font-size: 1.25rem;
            padding: 15px 30px;
        }
        .footer {
            background-color: #1a202c;
            color: #a0aec0;
            padding: 40px 0;
        }
        .footer a {
            color: #a0aec0;
            text-decoration: none;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .text-blue-500 {
            color: #007bff !important;
        }
        .pricing-header {
            background-color: #f8f9fa;
            border-bottom: 1px solid #dee2e6;
            padding: 2rem 0;
        }
