/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3b5d50, #426d61);
    color: white;
    text-align: center;
    padding: 60px 20px;
    animation: fadeIn 1s ease-in-out;
}

/* Navbar Logo */
.navbar-brand img {
    height: 65px;
    max-width: 100%;
    object-fit: contain;
}

/* Video Section */
.video-section {
    padding: 50px 0;
    text-align: center;
    background: #f8f9fa;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    text-align: center;
}

/* Step Cards - Equal Size & Responsive */
.step-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Step Cards - Updated Styles */
.step-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 320px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center;
    border: 2px solid transparent; /* Subtle border */
}

/* Hover Effect - Subtle Lift & Glow */
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid #426d61; /* Dark Green Border */
}

/* Step Icons - Slightly Darker Green */
.step-card i {
    font-size: 2.5rem;
    color: #426d61; /* Dark Green */
    margin-bottom: 10px;
}

/* Step Title - Dark Green */
.step-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #426d61; /* Dark Green */
}

/* Step Description - Lighter Green */
.step-card p {
    font-size: 1.1rem;
    color: #3b5d50; /* Slightly lighter green */
    text-align: center;
}

/* Weekly Coaching Section */
.coaching {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

/* Trust Badges */
.trust-badges {
    background: white;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #426d61;
}

.trust-badge i {
    font-size: 2rem;
    color: #5fa043;
}

/* Pricing Section */
.pricing {
    background: white;
    padding: 60px 0;
    text-align: center;
}

.pricing h2 {
    font-size: 2rem;
    font-weight: bold;
}

.price-box {
    background: #ffffff;
    border: 2px solid #5fa043;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 320px;
    margin: 0 auto;
}

.price-box h3 {
    font-size: 1.8rem;
    color: #426d61;
}

.price-box .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #5fa043;
}

.price-box p {
    font-size: 1.1rem;
}

/* Buttons */
.btn-success {
    background-color: #5fa043;
    border: none;
    padding: 12px 20px;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: background 0.3s ease-in-out;
}

.btn-success:hover {
    background-color: #4e8a39;
}

/* Footer */
footer {
    background: #3b5d50;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 1rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #333;
}

/* Hero Section */
.hero {
    background: #426d61;
    color: white;
    text-align: center;
    padding: 50px 0;
}

/* Comparison Table */
.comparison {
    padding: 60px 0;
    background: #f8f9fa;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table th, .table td {
    padding: 15px;
    text-align: center;
    font-size: 1.1rem;
}

.table th {
    background: #426d61;
    color: white;
}

/* Add spacing below the comparison table */
.comparison {
    margin-bottom: 60px; /* Creates space before the next section */
}

//* Why Choose Us Section */
.why-us {
    background: #f8f9fa; /* Light Gray Background */
    padding: 60px 0;
}

.why-us h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.feature-box {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    font-size: 3rem;
    color: #5fa043; /* Dark Green for contrast */
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.feature-box p {
    font-size: 1.1rem;
    color: #555;
}

/* Updated Call to Action Section */
/* CTA Section - Softer Look */
.cta {
    background: #f8f9fa; /* Light gray background */
    color: #333; /* Dark text for contrast */
    text-align: center;
    padding: 60px 0; /* Adjusted padding for spacing */
}

/* CTA Heading */
.cta h2 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* CTA Button - Stands Out Without the Strip */
.cta .btn-success {
    background: #5fa043;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
}

.cta .btn-success:hover {
    background: #4e8a39;
    color: white;
}

/* Footer */
footer {
    background: #426d61;
    color: white;
    text-align: center;
    padding: 15px 0;
}

/* Step-by-Step Process */
.how-it-works {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Properly Centered Grid Container */
.step-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    grid-template-rows: repeat(2, auto);  /* 2 rows */
    gap: 40px; /* Even spacing */
    max-width: 1100px;
    width: 100%; /* Ensure it uses full available space */
    margin: 0 auto; /* Centers it */
    justify-content: center; /* Ensures grid stays in the middle */
    align-items: center;
    text-align: center;
}

/* Step Cards */
.step-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
    width: 320px; /* Fixed width */
    height: 250px; /* Fixed height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

/* Responsive Fix for Tablets */
@media (max-width: 900px) {
    .step-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
    }
    .step-card:nth-child(3) { grid-column: 1 / span 2; } /* Centers on two columns */
    .step-card:nth-child(6) { grid-column: 2; grid-row: 3; } /* Keeps alignment */
}

/* Responsive Fix for Mobile */
@media (max-width: 600px) {
    .step-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
    }
}

.price-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px; /* Adds space below the box */
}

/* Contact Page Styling */
.contact-info {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
    text-align: center;
    margin: 20px auto;
    max-width: 400px;
}

.email-link {
    font-size: 1.5rem;
    font-weight: bold;
    color: #5fa043;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

.support-note {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #555;
}

.location {
    margin-top: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

/* Default Hero Section */
.hero {
    background: #426d61;
    color: white;
    text-align: center;
    padding: 80px 0; /* Normal height for other pages */
}

/* Smaller Hero for Login Page */
.hero-small {
    padding: 40px 0; /* Reduced height */
}

/* ✅ Global Styling (Same as Other Pages) */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
}

/* ✅ Navbar */
.navbar {
    background: #2f4f4f;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    padding: 10px 15px;
}

.nav-links .btn {
    background: #5fa043;
    padding: 10px 15px;
    color: white;
    border-radius: 5px;
}

/* ✅ Page Header */
.page-header {
    background: #426d61;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.page-header h1 {
    font-size: 2.5rem;
}

.page-header p {
    font-size: 1.2rem;
}

/* ✅ Add Padding to the Sides */
.about-us-container {
    max-width: 1200px;  /* Keeps content centered and prevents it from stretching */
    margin: 0 auto;  /* Centers everything */
    padding: 0 40px; /* Adds space on left and right */
}

/* ✅ Founder Sections */
.founder {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

/* ✅ Reverse Layout for Jen */
.founder.reverse {
    flex-direction: row-reverse;
}

/* ✅ Founder Image */
.founder-image img {
    width: 350px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
}

/* ✅ Text Formatting */
.founder-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ✅ Mobile Styles */
@media (max-width: 900px) {
    .founder {
        flex-direction: column;
        text-align: center;
        padding: 0 20px; /* Adds padding on smaller screens */
    }
    .founder.reverse {
        flex-direction: column;
    }
    .founder-image img {
        width: 80%;
    }
}

.signature {
    margin-top: 20px;
    text-align: left;  /* Aligns with the text */
}

.signature img {
    width: 200px; /* Adjust as needed */
}

.founder h2 {
    margin-top: 30px;  /* Adjust the value as needed */
}

.founder.reverse {
    margin-top: -130px; /* Adjust this value to bring Jen’s section up */
}

.about-intro {
    padding: 80px 5%;  /* ✅ Added horizontal padding */
    background: #f8f9fa;
}

.about-intro .container {
    max-width: 1200px; /* ✅ Set a wider max width */
    width: 95%; /* ✅ Ensures text stretches almost full screen */
    margin: auto;
}

.about-intro .lead {
    font-size: 1.2rem;
    color: #333;
    max-width: 100%; /* ✅ Allows it to fully expand */
    margin: auto;
    line-height: 1.6;
}

.section-divider {
    width: 100%;  /* ✅ Extends all the way */
    max-width: 1100px; /* ✅ Keeps it controlled on wide screens */
    margin: 2rem auto; /* ✅ Centers it */
    border: none;
    border-top: 2px solid #2c4c36; /* ✅ Green line */
    opacity: 0.8; /* ✅ Softer look */
}

.about-intro {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-intro .container {
    max-width: 100% !important; /* ✅ Force full width */
    width: 90% !important; /* ✅ Make it nearly full-screen */
    margin: auto;
}

/* ✅ Smooth Hover Effect on Boxes */
.hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ✅ Scale Up & Add Shadow on Hover */
.hover-effect:hover {
    transform: translateY(-5px); /* Moves box up slightly */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Adds shadow */
}

/* Ensure both sections have the same font size */
.founder-text p, 
.col-md-7 p {
    font-size: 1.1rem; /* Adjust this if needed */
    line-height: 1.6;
}

/* Move ONLY Walt's Image & Name Up */
.col-md-5.text-center {
    margin-top: -100px !important; /* Adjust value if needed */
}

/* Move ONLY Walt's Name Up */
.col-md-5 h2 {
    margin-top: -60px !important;
}

.chart-wrapper {
    display: flex;
    justify-content: center;  /* Centers the chart */
    width: 100%;  /* Full width of the card */
}

.chart-container {
    max-width: 600px;
    height: 350px !important;
    margin: 0 auto; /* Centers the chart */
    padding-bottom: 0px !important; /* Removes extra bottom padding */
    margin-bottom: 0px !important; /* Ensures there's no extra spacing */
}

/* Fix the spacing below the chart */
.chart-container {
    max-width: 600px;
    height: 350px !important;
    margin: 0 auto; /* Centers the chart */
    padding-bottom: 0px !important; /* Removes unnecessary padding */
    margin-bottom: -30px !important; /* Moves next section up */
}

/* Reduce space before Credit Report Overview */
.card.p-4.mb-4.shadow-sm {
    margin-top: -40px !important; /* Moves the section up */
    padding-top: 20px !important; /* Ensures content is not cut off */
}

/* If there's a Bootstrap spacer causing the gap, remove it */
.my-4 {
    display: none; /* Hides the extra spacing div */
}

