/*  __  ___          __        ____           ____                   ______          ___                
   /  |/  /___ _____/ /__     / __ )__  __   / __ \___  ____ _____  / ____/___  ____/ (_)___  ____ _    
  / /|_/ / __ `/ __  / _ \   / __  / / / /  / /_/ / _ \/ __ `/ __ \/ /   / __ \/ __  / / __ \/ __ `/    
 / /  / / /_/ / /_/ /  __/  / /_/ / /_/ /  / _, _/  __/ /_/ / / / / /___/ /_/ / /_/ / / / / / /_/ /     
/_/  /_/\__,_/\__,_/\___/  /_____/\__, /  /_/ |_|\___/\__,_/_/ /_/\____/\____/\__,_/_/_/ /_/\__, /      
                                 /____/  ___   ____ ___  __ __                             /____/       
                                        |__ \ / __ \__ \/ // /                                          
                                        __/ // / / /_/ / // /_                                          
                                       / __// /_/ / __/__  __/                                          
                                      /____/\____/____/ /_/                                             
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
}

body {
    padding-top: 56px;
    /* Adjust this value based on your navbar's height */
}

.jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: .3rem;
}

.feature-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.feature-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.feature-section .col-md-4 {
    margin-bottom: 20px;
}

footer {
    padding: 20px 0;
    background-color: #343a40;
    color: white;
}

.hero-section {
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 600px;
    /* Increased height for a more impactful hero */
    background-size: cover;
    background-position: center;
}

.hero-section .mask {
    background-color: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-section h4 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.jumbotron {
    background-color: #f0f2f5 !important;
    /* Lighter background for contrast */
    padding: 3rem 2rem;
    margin-bottom: 0;
    /* Remove bottom margin if next section follows immediately */
}

.feature-section {
    background-color: #ffffff;
    /* White background for features */
    padding: 60px 0;
}

.feature-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.feature-section .col-md-4 {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.feature-section .col-md-4:hover {
    transform: translateY(-10px);
}

.call-to-action-section {
    background-color: #007bff;
    /* Primary blue background */
    color: white;
    padding: 80px 0;
    margin-top: 0;
    /* Remove top margin if previous section flows directly */
}

.call-to-action-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.call-to-action-section p.lead {
    font-size: 1.4rem;
    margin-bottom: 40px;
}

.about-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.about-section h2,
.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.contact-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.contact-section ul {
    list-style: none;
    padding: 0;
}

.contact-section li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-section a {
    color: #007bff;
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}

footer {
    background-color: #212529 !important;
    /* Darker footer */
    padding: 30px 0;
}

.services-section {
    padding: 60px 0;
    background-color: #e9ecef;
}

.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.services-section .card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.services-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.services-section .card-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #007bff;
}

.services-section .card-body {
    padding: 30px;
}

.testimonials-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.testimonials-section .card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.testimonials-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.testimonials-section .card-body {
    padding: 30px;
}

.testimonials-section .blockquote-footer {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #6c757d;
}

.team-section {
    padding: 60px 0;
    background-color: #f0f2f5;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.team-section .card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.team-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.team-section .card-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 15px;
    color: #007bff;
}

.team-section .card-text {
    font-size: 1.1rem;
    color: #555;
}

.news-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.news-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.news-section .card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.news-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.news-section .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #007bff;
}

.news-section .card-text {
    font-size: 1rem;
    color: #666;
}

.news-section .btn-primary {
    margin-top: 15px;
}

.faq-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.faq-section .accordion-button {
    font-size: 1.2rem;
    font-weight: bold;
    color: #007bff;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #0056b3;
    background-color: #e7f1ff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.faq-section .accordion-body {
    font-size: 1.1rem;
    color: #555;
}

.faq-section .accordion-item {
    margin-bottom: 10px;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 0.25rem;
}