/* Header Navbar */
header.navbar-default {
    background-color: #1a022a;
	border-color: white;
    border-radius: 0;
    border-width: 0 0 0px;
}

header.navbar-default .navbar-nav > li a {
    color: white;
    font-weight: bold;
}

header.navbar-default .navbar-nav > li a:hover {
    color: #facc40;
}

/* General Section Styling */
h1.page-heading {padding-top: 30px;}
.box.box-primary.borderless {margin-top: 30px;}

.section {
    padding: 60px 0;
    text-align: center;
}

.section h1,
.section h2 {
    font-weight: bold;
    font-size: 36px;
    margin-bottom: 20px;
}

.section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

/* Divider for section headings (h1 and h2) */
.section.section_welcome h1{padding-bottom: 0px;}
.section.section_welcome h1:after {
    content: "";
    position: relative;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 3px;
    background: #facc40;
    display: block;
    margin-right: auto;
    margin-left: auto;
}
.section h1:after,
.section h2:after {
    content: '';
    display: block;
    width: 200px;        /* Width of the divider */
    height: 4px;         /* Height of the divider */
    background-color: #facc40; /* Divider color */
    margin: 20px auto 0; /* Center the divider, add space above */
}

.section.section_contact h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 200px;
    height: 3px;
    background: #facc40;
    display: block;	
}

/* Section Background Colors */
.section_welcome {
    background-color: #fff;
}

.section_why,
.section_support,
.section_contact {
    background-color: #f0f0f0;
}

/* Image Wrapper */
.image_wrapper {
    text-align: center;
    margin-top: 30px;
}

.image_wrapper img {
    max-width: 100%;
    height: auto;
}

/* Section Specific Styling */
.section_why .image_wrapper {
    max-width: 800px;
    margin: 20px auto !important;
}
.section.section_why p {
    margin-right: auto;
    margin-left: auto;
}

/* Pricing Section Styling */
.section_pricing .card {
    border: none;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    padding: 20px 10px;
}

.section_pricing .card:hover {
    transform: translateY(-10px);
}

.section_pricing .card-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #facc40 !important;
    background-color: #1b032a;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 6px;
}

.section_pricing .card h5 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.section_pricing .card-text {
    font-size: 16px;
    color: #777;
    margin-bottom: 30px;
}

.section_pricing .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.section_pricing .btn-primary:hover {
    background-color: #0056b3;
}

/* Pricing Section Layout */
.section_pricing .row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allows items to wrap to the next line */
}

.section_pricing .card-footer {
    border-top: none;
    background-color: transparent;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .section_pricing .row {
        flex-direction: column; /* Stacks cards vertically */
        align-items: center; /* Center align the cards */
    }

    .section_pricing .col-lg-3 {
        width: 100%; /* Makes each card take full width */
        max-width: 100%; /* Prevents cards from exceeding container width */
    }
}

/* Button Styling */
.btn {
    font-weight: bold;
    padding: 12px 30px;
    text-transform: uppercase;
    border-radius: 50px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-flat {
    background-color: #f0f0f0;
    border-color: #ccc;
    color: #333;
}

.btn-flat:hover {
    background-color: #ddd;
}

/* Section 5: Get Started Today */
.section_contact {
    background-color: #1a022a; /* Fallback color */
    background-image: url('https://mailimpulse.com/frontend/assets/img/business_bg_01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay; /* Blends the background image with the color */
    padding: 60px 0;
    color: #fff; /* Text color to ensure readability */
}

.section_contact h2,
.section_contact p {
    color: #fff; /* Ensure the text is white on the dark background */
}

.section_contact .btn-flat {
    background-color: #fff;
    color: #1a022a;
    border-color: #fff;
}

.section_contact .btn-flat:hover {
    background-color: #ddd;
    color: #1a022a;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }

    .section h1,
    .section h2 {
        font-size: 28px;
    }

    .section_pricing .card {
        margin-bottom: 20px;
    }

    .section_pricing .card-title {
        font-size: 20px;
    }

    .section_pricing .card h5 {
        font-size: 24px;
    }
}

/* Footer Styling */
footer.main-footer a {
    font-weight: bold;
}

footer.main-footer a:hover {
    color: #facc40;
}

/* Section 1: Email Marketing */
.section_welcome {
    background-color: #f0f0f0; /* Fallback color */
    background-image: url('https://mailimpulse.com/frontend/assets/img/mkt-bg-05.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay; /* Blends the background image with the color */
    padding: 60px 0;
}

.section_welcome h1, 
.section_welcome p {
    color: white; /* Ensure the text is visible against the overlay */
}

.section_welcome .btn-primary {
    background-color: #facc40;
    border-color: #facc40;
	color: #333
}

.section_welcome .btn-primary:hover {
    background-color: #fee442;
	color: #333
}
.content-wrapper {
    padding: 0 0 0 0;
}

/* Pricing Plan Features Styling */
.plan-features {
    margin-top: 20px;
}

.plan-feature {
    padding: 10px 0;
    font-size: 16px;
    color: #555;
    border-top: 1px solid #e0e0e0; /* Soft divider between features */
}

.plan-feature:first-child {
    border-top: none; /* Remove the top border for the first item */
}

/* Card Body Styling Update */
.card-body {
    padding: 30px 20px; /* Add some padding for a more spacious design */
}

/* General Styling for the Pricing Section */
.section_pricing .card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.section_pricing .card:hover {
    transform: translateY(-10px);
}

.section_pricing .card-title {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.section_pricing h5 {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 20px;
}

.section_pricing .card-text {
    font-size: 16px;
    color: #777;
    margin-bottom: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section_pricing .card {
        margin-bottom: 30px;
    }
}

/* MOBILE STYLES */
header.navbar-default .navbar-toggle:hover, header.navbar-default .navbar-toggle:focus {
background-color: #340950;	
}
header.navbar-default .navbar-toggle .icon-bar {background-color:#facc40;}
header.navbar-default .navbar-collapse {border: 0px;}


/* BLOG */
.title a {
    font-size: 22px;
    color: #facc40;
    font-weight: bold;
}

.list-articles .article .excerpt, .list-articles .article .categories {
    font-size: 16px;
}
a {
    color: #1a022a;
    font-weight: bold;
}

.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
    color: #1a022a;
}

