/* ====================================================
   PIONEERS SECTION STYLES
   ==================================================== */
.about-pioneers-section {
    background-color: var(--color-white);
    overflow: hidden; /* Prevents animations from causing horizontal scroll */
   
}

.content-with-border {
    border-left: 3px solid var(--color-primary);
    
}
@media (min-width: 992px) {
    .my-lg-5 {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }
}
.desc-dark {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark-navy);
    line-height: 1.6;
}

.desc-muted {
    font-size: 15px;
    color: #7a7a7a;
    line-height: 1.8;
}

/* --- Image & Badge --- */
.pioneer-img-wrapper {
    position: relative;
    /* Use margin instead of padding to make room for the badge */
    margin-left: 45px; 
    display: flex; 
    align-items: flex-end;
    margin-bottom: 40px;
}

.pioneer-img-wrapper img {
    width: 100%;
    height: 700px; 
    object-fit: cover; 
    display: block;
    border-radius: 15px;
    margin-top: 20px; /* Softer corners */
}

.vertical-experience-badge {
    position: absolute;
    left: 0px;
    bottom: 0px; /* Distance from the bottom of the tall image */
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 30px 15px;
    border-radius: 17px 17px 0 17px;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.badge-text {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
}

/* --- Dark Slide Button --- */
.btn-dark-slide {
    background-color: var(--color-dark-navy);
    color: var(--color-white);
    padding: 16px 35px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-dark-slide:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* --- Scroll Reveal Animations --- */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ====================================================
   MISSION & VISION SECTION
   ==================================================== */

.mission-vision-section {
    background-color: #f4f7f9; /* Keeps your solid light-gray base color */
    padding: 100px 0;
    position: relative; /* CRITICAL: Anchors the background image overlay */
    overflow: hidden;
}

/* --- The Light Opacity Background Image Overlay --- */
.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Replace this URL with your preferred background image */
    background: url('../image/bg3.png') center/cover no-repeat;
    opacity: 0.6; /* Very light opacity (5%) so it acts like a watermark */
    z-index: 0; /* Puts the image at the very back */
    pointer-events: none; /* Prevents the image from interfering with clicks */
}

/* CRITICAL: Pulls your container and cards ABOVE the background image */
.mission-vision-section .container {
    position: relative;
    z-index: 2; 
}



.purpose-card {
    background-color: var(--color-white);
    padding: 60px 45px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--color-primary); 
    transition: all 0.4s ease;
    height: 100%;
}

.purpose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.purpose-card.active {
    background-color: var(--color-white);
}

.purpose-icon {
    font-size: 50px;
    color: var(--color-dark-navy);
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.purpose-card:hover .purpose-icon {
    transform: scale(1.1);
    color: var(--color-primary);
}

.purpose-title {
    color: var(--color-dark-navy);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.purpose-text {
    color: var(--color-text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.btn-round-arrow {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-round-arrow:hover {
    background-color: var(--color-dark-navy);
    color: var(--color-white);
    transform: rotate(-45deg); 
}

/* ====================================================
   GLOBAL RESPONSIVE ADJUSTMENTS (For Both Sections)
   ==================================================== */

/* Tablet View */
@media (max-width: 991px) {
    /* Pioneers Section Adjustments */
    .pioneer-img-wrapper { 
        margin-left: 20px; 
        margin-top: 20px; /* Adds space above the image when stacked */
    }
    .vertical-experience-badge { 
        left: -20px; 
    }
    .pioneer-img-wrapper img {
        height: 500px;
    }

    /* Mission Section Adjustments */
    .purpose-card {
        padding: 40px 30px;
    }
    .mission-vision-section {
        padding: 80px 0;
    }
}

/* Mobile View */
@media (max-width: 767px) {
    /* Pioneers Section Adjustments */
    .desc-dark {
        font-size: 16px;
    }
    .desc-muted {
        font-size: 14px;
    }
    .pioneer-img-wrapper {
        margin-left: 0; /* Remove margin so image is full width */
    }
    .vertical-experience-badge {
        left: 0; /* Pin badge flush to the image so it doesn't bleed off-screen */
        bottom: 0px;
        padding: 20px 10px;
        border-radius: 0 17px 0 0; /* Square off the left side to match image */
    }
    .badge-text {
        font-size: 15px;
    }
    .pioneer-img-wrapper img {
        height: 350px; /* Keep image smaller on phones */
    }
    .btn-dark-slide {
        width: 100%; /* Full width button on phones */
        text-align: center;
        margin-bottom: 20px;
    }

    /* Mission Section Adjustments */
    .mission-vision-section {
        padding: 40px 0;
    }
    .purpose-card {
        padding: 30px 20px; /* Tighten up card padding */
        margin-bottom: 40px;
    }
    .purpose-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .purpose-icon {
        font-size: 40px; /* Smaller icon */
        margin-bottom: 15px;
    }
    .purpose-text {
        font-size: 14px;
        margin-bottom: 25px;
    }
    .pioneer-img-wrapper {
    position: relative;
  
   
    display: flex; 
    align-items: flex-end;
    margin-bottom: 30px;
    }
}

/* ====================================================
   OUR GOALS SECTION
   ==================================================== */
.our-goals-section {
    background-color: var(--color-white);
}

.heading-divider {
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

.custom-goal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-goal-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px 20px;
    background-color: #f8fafc; /* Very subtle gray background */
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.custom-goal-list li:hover {
    background-color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-left-color: var(--color-primary);
    transform: translateX(5px);
}

.custom-goal-list li i {
    color: var(--color-primary);
    font-size: 22px;
    margin-top: 2px; /* Aligns the icon perfectly with the first line of text */
}

.custom-goal-list li span {
    font-size: 15.5px;
    color: var(--color-text-gray);
    line-height: 1.7;
    font-weight: 500;
}

/* ====================================================
   DREAM BIG (SPLIT SECTION)
   ==================================================== */
.dream-big-section {
    background-color: var(--color-dark-navy);
}

.dream-img-col img {
    object-fit: cover; /* Ensures the image fills the space without stretching */
    min-height: 100%;
}

.dream-text-col {
    padding: 70px 70px;
    display: flex;
    align-items: center; /* Vertically centers the text next to the image */
}

.dream-content {
    max-width: 600px;
}

.dream-content h2 {
    font-size: 48px;
    font-weight: 800;
}

.dream-content p {
    font-size: 16px;
    line-height: 1.8;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.65) !important;
}

/* Optional: Add a reveal-up animation for the goals heading */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}
.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* ====================================================
   RESPONSIVE ADJUSTMENTS
   ==================================================== */
@media (max-width: 1199px) {
    .dream-text-col { padding: 80px 50px; }
    .dream-content h2 { font-size: 40px; }
}

@media (max-width: 991px) {
    /* Stack the image and text on tablets and phones */
    .dream-img-col { height: 400px; } /* Give image a fixed height when stacked */
    .dream-text-col { padding: 60px 30px; }
}

@media (max-width: 767px) {
    .dream-img-col { height: 300px; }
    .dream-text-col { padding: 50px 20px; }
    .dream-content h2 { font-size: 32px; }
    
    .custom-goal-list li {
        padding: 15px;
        font-size: 14px;
    }
}

/* ====================================================
   WHY CHOOSE US / FEATURES SECTION
   ==================================================== */
.why-choose-section {
    background-color: #f4f7f9; /* Soft background to make white cards pop */
    padding: 100px 0;
}

.text-primary-green {
    color: var(--color-primary); /* Highlights the EVS text */
}

/* --- The 5-Column Grid Layout --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 equal columns */
    gap: 25px; /* Space between cards */
    margin: 40px 0;
}

/* --- Individual Feature Cards --- */
.feature-box {
    background-color: var(--color-white);
    padding: 40px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border-bottom: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-bottom-color: var(--color-primary);
}

/* --- Interactive Icon Design --- */
.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(46, 204, 113, 0.1); /* Light green tint */
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: all 0.5s ease;
    /* Optional: creates a soft glowing ring */
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4); 
}

/* The 3D Flip & Color Fill on Hover */
.feature-box:hover .feature-icon-wrapper {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: rotateY(360deg); /* Smooth spin effect */
    box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); /* Ripple fades out */
}

/* --- Text Styles inside Cards --- */
.feature-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-dark-navy);
    margin-bottom: 15px;
    line-height: 1.4;
}

.feature-text {
    font-size: 14.5px;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* ====================================================
   RESPONSIVE GRID ADJUSTMENTS
   ==================================================== */
@media (max-width: 1199px) {
    /* Tablet Landscape: 3 columns top, 2 centered below */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    /* Tablet Portrait: 2 columns */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    /* Mobile: 1 single column */
    .why-choose-section {
        padding: 60px 0;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .feature-box {
        padding: 30px 20px;
    }
}

/* ====================================================
   INNER PAGE HERO & BREADCRUMBS
   ==================================================== */
.inner-page-hero {
    position: relative;
    /* 180px top padding ensures it completely clears your sticky navbar */
    padding: 180px 0 60px;  
    background-color: var(--color-dark-navy);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Image & Gradient Overlay */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates a cool parallax effect when scrolling */
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Rich Navy to Green gradient overlay */
    background: linear-gradient(135deg, rgba(26, 43, 60, 0.92) 0%, rgba(26, 43, 60, 0.85) 50%, rgba(46, 204, 113, 0.4) 100%);
    z-index: 2;
}

/* Floating Decorative Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.15);
    filter: blur(40px);
    z-index: 2;
    animation: floatUpDown 6s infinite ease-in-out;
}
.hero-shape-1 { width: 300px; height: 300px; top: -100px; left: -100px; }
.hero-shape-2 { width: 250px; height: 250px; bottom: -50px; right: -50px; animation-delay: 2s; }

/* Title Styling */
.inner-page-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-top: 15px;
}

/* --- Frosted Glass Breadcrumb --- */
.custom-breadcrumb {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); /* Creates the frosted glass look */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px; /* Pill shape */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.custom-breadcrumb li {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.custom-breadcrumb a {
    color: var(--color-white);
    transition: color 0.3s ease;
}

.custom-breadcrumb a:hover {
    color: var(--color-primary); /* Turns EVS green on hover */
}

.custom-breadcrumb .separator {
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.custom-breadcrumb .current {
    color: var(--color-primary); /* The current page is highlighted in Green */
}

/* ====================================================
   RESPONSIVE ADJUSTMENTS
   ==================================================== */
@media (max-width: 991px) {
    .inner-page-hero {
        padding: 180px 0 80px;
    }
    .inner-page-title {
        font-size: 42px;
    }
    .custom-breadcrumb {
        padding: 10px 20px;
    }
    .custom-breadcrumb li {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .inner-page-hero {
        padding: 150px 0 60px; /* Clears mobile navbar */
    }
    .inner-page-title {
        font-size: 32px;
        margin-top: 50px;
    }
    .custom-breadcrumb {
        padding: 10px 15px;
        flex-wrap: wrap; /* Allows breadcrumbs to wrap if they get too long on tiny phones */
        justify-content: center;
        gap: 5px;
        border-radius: 12px; /* Less pill-like, more box-like on phones to save space */
    }
    .custom-breadcrumb .separator {
        margin: 0 5px;
    }
}

:root {
    --evs-green: #2e7d32;      /* Primary Theme Color */
    --evs-light-green: #e8f5e9; /* Background Ring Color */
    --evs-text-dark: #333333;
    --evs-text-gray: #777777;
}


/* --- STATS SECTION --- */
.evs-cbg-stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.evs-cbg-stat-item {
    text-align: center;
    width: 180px;
}

.evs-cbg-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Initial state before JS animates it */
    background: conic-gradient(var(--color-dark-navy) 100%, transparent 0); 
    position: relative;
    box-shadow: inset 0 0 0 8px #fff; /* Creates the inner hollow ring effect */
}

.evs-cbg-stat-number, .evs-cbg-percent {
    font-size: 26px;
    font-weight: bold;
    color: var(--evs-text-dark);
    position: relative;
    z-index: 2;
}

.evs-cbg-stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--evs-text-dark);
    line-height: 1.4;
}

/* --- TESTIMONIALS SECTION --- */
/* 1. Constrain the Container to 1300px and Center It */
.evs-cbg-testimonials-section .evs-cbg-container {
    max-width: 1300px;
    margin: 0 auto; /* Centers the content */
    padding: 0 20px; /* Breathing room on mobile */
    width: 100%;
    box-sizing: border-box; /* Crucial: stops padding from breaking the width */
}

/* Title Styling */
.evs-cbg-section-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 50px;
    color: var(--evs-text-dark);
}

/* 2. Slider Window */
.evs-cbg-testimonials-slider {
    overflow: hidden; /* Hides the cards that are off-screen */
    width: 100%;
    padding-bottom: 40px; /* Space for the quote bubble */
    box-sizing: border-box;
}

/* 3. The Moving Track */
.evs-cbg-testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 30px; /* Gap between cards */
    width: 100%;
}

/* 4. The Cards */
.evs-cbg-testi-card {
    background: #fff;
    border-radius: 0 0 8px 8px;
    flex: 0 0 100%; /* Mobile: 1 card per view */
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    box-sizing: border-box;
}

/* Desktop: 3 cards per view */
@media (min-width: 992px) {
    .evs-cbg-testi-card {
        /* Total gap is 60px (2 gaps of 30px). This math fits 3 cards perfectly. */
        flex: 0 0 calc((100% - 60px) / 3); 
    }
}

/* Media & Images */
.evs-cbg-testi-media {
    position: relative;
    width: 100%;
    height: 220px;
}

.evs-cbg-testi-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* The Quote Icon */
.evs-cbg-quote-icon {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--evs-green);
    font-size: 40px;
    font-family: Georgia, serif;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    line-height: 0;
    padding-top: 15px;
}

/* Text Content */
.evs-cbg-testi-content {
    padding: 40px 20px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.evs-cbg-testi-text {
    font-size: 13px;
    color: var(--evs-text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.evs-cbg-testi-author {
    font-size: 14px;
    font-weight: bold;
    color: var(--evs-text-dark);
}

/* Navigation Dots */
.evs-cbg-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.evs-cbg-dot {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.evs-cbg-dot.active, .evs-cbg-dot:hover {
    background-color: var(--evs-green);
}

/* Container & Layout */
.evs-cbg-faq-modern-section {
    padding: 60px 20px;
    background-color: #fdfdfd; /* Very subtle off-white background */
    font-family: Arial, sans-serif;
}

.evs-cbg-faq-modern-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.evs-cbg-section-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: var(--evs-text-dark, #333);
    margin-bottom: 40px;
}

/* Floating Card Styling */
.evs-cbg-faq-card {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Highlight the active card with your theme green */
.evs-cbg-faq-card.active {
    border-left: 4px solid var(--color-dark-navy, #0d2a47);
    box-shadow: 0 6px 15px rgba(46, 125, 50, 0.1);
}

/* Button / Question Header */
.evs-cbg-faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--evs-text-dark, #333);
    transition: color 0.3s ease;
}

.evs-cbg-faq-card:hover .evs-cbg-faq-btn {
    color: var(--evs-green, #0d2a47);
}

/* Animated Plus/Minus Icon */
.evs-cbg-faq-toggle {
    position: relative;
    width: 24px;
    height: 24px;
    background-color: var(--evs-light-green, #e8f5e9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease, transform 0.4s ease;
}

.evs-cbg-faq-toggle::before,
.evs-cbg-faq-toggle::after {
    content: '';
    position: absolute;
    background-color: var(--evs-green, #2e7d32);
    transition: transform 0.4s ease;
}

/* Horizontal line of the Plus */
.evs-cbg-faq-toggle::before {
    width: 12px;
    height: 2px;
}

/* Vertical line of the Plus */
.evs-cbg-faq-toggle::after {
    width: 2px;
    height: 12px;
}

/* Active Icon State (Turns into a Minus) */
.evs-cbg-faq-card.active .evs-cbg-faq-toggle {
    background-color: var(--evs-green, #2e7d32);
    transform: rotate(180deg);
}

.evs-cbg-faq-card.active .evs-cbg-faq-toggle::before,
.evs-cbg-faq-card.active .evs-cbg-faq-toggle::after {
    background-color: #ffffff;
}

.evs-cbg-faq-card.active .evs-cbg-faq-toggle::after {
    transform: rotate(90deg); /* Flattens the vertical line into a horizontal one */
    opacity: 0; /* Hides it smoothly */
}

/* Hidden Content Panel */
.evs-cbg-faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.evs-cbg-faq-body {
    padding: 0 25px 25px 25px;
    color: var(--evs-text-gray, #666);
    font-size: 15px;
    line-height: 1.7;
}


.py-5 {
    padding-top:1rem !important;
    padding-bottom: 1rem !important;
}
.mb-5 {
    margin-bottom: 1rem !important;
}
/* Target the link ('a') inside the list item, not the list item ('li') itself */
.footer-links a:hover {
    color: var(--color-primary) !important; /* Forces it to turn green */
    padding-left: 5px; /* Keeps that nice little slide-to-the-right effect */
}
.logo-text{
    color: #2c8234;
}