/*
Theme Name: problemmd
Theme URI: https://problemmd.com/
Author: Jescobar
Author URI: https://problemmd.com/
Description: A custom WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-problemmd-theme
*/
/* Header styles */
/* Header Styles */
.site-header {
    background-color: #f8f9fa;
    padding: 15px 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img {
    max-height: 50px;
    height: auto;
    width: auto;
}

.site-navigation .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.site-navigation .nav-menu li {
    display: inline-block;
}

.site-navigation .nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.site-navigation .nav-menu li a:hover {
    color: #0073aa;
}


/* Hero Banner Styles */
.hero-banner {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-banner .hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero-banner h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-banner p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hero-banner .hero-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero-banner .hero-button:hover {
    background-color: #005580;
}

.hero-banner .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-banner .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    
}

/*  Section - 1- */
/* Interview Preparation Insights Section */
/* Interview Preparation Insights Section */
.interview-insights {
    background-color: #e0f7fa;
    padding: 60px 20px;
    text-align: center;
}

.interview-insights .container {
    max-width: 1200px;
    margin: 0 auto;
}

.interview-insights .section-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000; /* Black color for H1 */
}

.interview-insights .section-subheading {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #004d40;
}

.interview-insights .insights-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Ensure boxes are spaced evenly */
    gap: 20px;
    text-align: left; /* Ensure all text is left-aligned */
}

.interview-insights .insight-column {
    border-radius: 10px; /* Rounded corners */
    padding: 0px;
    width: calc(33.333% - 20px); /* Adjust width for three columns */
    box-shadow: none; /* Remove box shadow */
    text-align: left; /* Left-align text inside boxes */
    background-color: transparent; /* Remove background color */
}

.interview-insights .insight-image {
    width: 100%; /* Ensure the image takes the full width of its container */
    height: 50%; /* Set a fixed height for uniformity */
    object-fit: cover; /* Maintain aspect ratio and crop excess parts */
    border-radius: 10px; /* Rounded corners for the images */
    margin-bottom: 15px;
}

.interview-insights .insight-column h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #000; /* Black color for H2 */
}

.interview-insights .insight-column p {
    font-size: 1rem;
    color: #004d40;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .interview-insights .insights-columns {
        flex-direction: column; /* Stack boxes vertically on smaller screens */
        gap: 30px;
    }

    .interview-insights .insight-column {
        width: 100%; /* Full width for mobile */
    }

    .interview-insights .section-heading {
        font-size: 2rem; /* Adjust H1 size for mobile */
    }

    .interview-insights .insight-column h2 {
        font-size: 1.3rem; /* Adjust H2 size for mobile */
    }
}

/*--------------------Customer Reviews------------------------------*/

/* Customer Reviews Section */
.customer-reviews {
    padding: 60px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

.customer-reviews .container {
    max-width: 1200px;
    margin: 0 auto;
}

.customer-reviews .section-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000;
}

.customer-reviews .section-subheading {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #333;
}

.reviews-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    overflow: hidden; /* Hide overflow for slider */
}

.review-block {
    background-color: #e0f7fa;
    border-radius: 10px;
    padding: 20px;
    width: calc(50% - 20px);
    box-sizing: border-box;
    text-align: left;
    position: relative;
}

.review-stars {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.review-details {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}

.review-customer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.customer-info {
    font-size: 0.9rem;
}

.customer-name {
    font-weight: bold;
    margin: 0;
}

.customer-city {
    color: #777;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .review-block {
        width: 100%;
    }
}
/*---------------------Footer top---------------------------------------*/
/* Footer Top Section */
.footer-top-section {
    padding: 40px 20px;
    background-color: #f7f7f7; /* Optional background color */
}

.footer-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1;
    text-align: left; /* Center text */
}

.footer-heading {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #000;
}

.footer-subheading {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #333;
}

.footer-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 15px;
    background-color: #007bff; /* Button color */
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.footer-button:hover {
    background-color: #0056b3; /* Button hover color */
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: center; /* Center image */
}

.footer-image {
   
    border-radius: 10px;
    object-fit: cover; /* Ensure the image covers the area */
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-top-content {
        flex-direction: column; /* Stack columns on small screens */
        text-align: center; /* Center text on smaller screens */
    }
}
/*-------------------------FOOTER -----------------------------*/
.footer-top {
    padding: 20px 0;
    background-color: #000; /* Set background color to black */
    color: #fff; /* Set text color to white for better contrast */
}

.footer-top .container {
    max-width: 1200px;
    margin: auto;
    display: flex; /* Use flexbox for column alignment */
    justify-content: space-between; /* Space between columns */
}

.footer-top .col-md-4 {
    flex: 1; /* Ensure columns take equal width */
    padding: 0 15px; /* Add some horizontal padding between columns */
}

.footer-bottom {
    padding: 10px 0;
	color: white;
    background-color: black; /* Change as needed for the bottom section */
}

.footer-bottom p {
    margin: 0;
    text-align: center; /* Center align copyright text */
}
@media (max-width: 768px) {
    .footer-top .container {
        flex-direction: column; /* Stack columns vertically on small screens */
    }

    .footer-top .col-md-4 {
        margin-bottom: 20px; /* Add some space between stacked columns */
    }
}
.footer-top {
    padding: 20px 0;
    background-color: #000; /* Background color for footer */
    color: #fff; /* Text color */
}

.footer-top .col-md-4 {
    margin-bottom: 20px; /* Space between columns */
}

.rounded-input {
    border-radius: 15px; /* Round corners for the input */
    padding: 10px; /* Padding for the input */
    border: 1px solid #ccc; /* Border for the input */
    width: 100%; /* Full width */
    margin-top: 5px; /* Space between label and input */
}

.rounded-button {
    border-radius: 15px; /* Round corners for the button */
    padding: 10px 20px; /* Padding for the button */
    margin-top: 10px; /* Space above the button */
}