/* Root Variables */
:root {
    --primary-color: #0a5763;
    --secondary-color: #b22a2e;
    --third-color: #9E925E;
    --footer-bg: #EBEBEB;
    --header-bg: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Header */
.header-section {
    background-color: var(--header-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid #b22a2e;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--primary-color);
    }

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10, 87, 99, 0.05) 0%, rgba(178, 42, 46, 0.05) 100%);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-primary:hover {
        background-color: #084552;
        border-color: #084552;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(10, 87, 99, 0.3);
    }

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-outline-primary:hover {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        transform: translateY(-2px);
    }

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

    .btn-secondary:hover {
        background-color: #8f2123;
        border-color: #8f2123;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(178, 42, 46, 0.3);
    }

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Facts Section */
.facts-section {
    background-color: #f8f9fa;
}

.fact-card {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

    .fact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(10, 87, 99, 0.2);
    }

    .fact-card h3 {
        color: var(--primary-color);
        font-size: 1.5rem;
    }

    .fact-card p {
        color: var(--text-light);
    }

/* Testimonials Section */
.testimonials-section {
    /* background-color: #f7ede4; */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    width: 80%;
    margin: auto;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* .testimonial-card:hover {
    border-color: var(--third-color);
    transform: translateY(-5px);
} */

.testimonial-image {
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.client-name {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.client-position {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0;
}

    .cta-section .btn-light {
        background-color: white;
        color: var(--primary-color);
        border: none;
        padding: 12px 40px;
        font-weight: 600;
    }

        .cta-section .btn-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

/* Footer */
.footer-section {
    background-color: var(--footer-bg);
    padding: 60px 0 10px;
    border-top: 4px solid #b22a2e;
}

    .footer-section .disclaimer-text {
        font-size: 0.8rem;
    }

@media (max-width: 600px) {
    .content-box {
        flex-flow: column;
        align-items: start !important;
        row-gap: 0.5rem;
    }

    .footer-links {
        flex-flow: column;
        align-items: start !important;
    }
}

.footer-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.25rem;
    text-decoration: none;
}

.footer-links {
    list-style: none;
    padding: 0;
    column-gap: 2rem;
}

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a:hover {
        color: var(--secondary-color);
        text-decoration: underline;
    }

.footer-contact {
    list-style: none;
    padding: 0;
}

    .footer-contact li {
        margin-bottom: 0.5rem;
        color: var(--text-dark);
    }

.social-links a {
    display: inline-block;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

    .social-links a:hover {
        transform: scale(1.1);
    }


/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-section {
        padding: 60px 0;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        padding: 10px 25px;
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

.fact-card .fact-icon {
    column-gap: 1rem;
}

.animated-stats-section {
    padding: 60px 20px;
    overflow: hidden;
    background-color: #f5f0eb;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-stats-card {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

    .animated-stats-card.animate {
        opacity: 1;
        transform: translateY(0);
    }

    .animated-stats-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.animated-stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
}

.animated-stats-number {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 10px;
    line-height: 1;
}

.animated-stats-description {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.4;
}

.card-teal {
    background-color: #7fcdcd;
    color: #1a1a1a;
}

.animated-stats-section .card-image-right {
    background-color: #e8e8e8;
    color: #1a1a1a;
}

.animated-stats-section .card-image-left {
    background-color: #f0f0f0;
    color: #1a1a1a;
}

.card-coral {
    background-color: #d85847;
    color: white;
}

.card-teal .animated-stats-overlay {
    background-color: #7fcdcd;
}

.card-coral .animated-stats-overlay {
    background-color: #d85847;
}

.animated-stats-section .card-image-right .animated-stats-overlay,
.animated-stats-section .card-image-left .animated-stats-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4));
    color: white;
}

@media (max-width: 767px) {

    .animated-stats-number {
        font-size: 3rem;
    }

    .animated-stats-description {
        font-size: 1.1rem;
    }
}

.stories .newsThumbWrp {
    margin-right: 1rem !important;
    width: 200px;
    height: 100px;
    background: url("https://www.theleague.coop/Sitefinity/WebsiteTempl…/App_Themes/wculmain19/global/images/newsback.png") center center no-repeat;
}

.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}

.media-body {
    -ms-flex: 1;
    flex: 1;
}

    .media-body a {
        color: var(--primary-color);
    }

.stories .media:nth-child(odd) {
    background-color: #F4F4F4;
}

/* Media Gallery */
.media-gallery {
    height: 400px;
    background: #9E925E;
    color: #EBEBEB;
    align-content: space-evenly;
}

@media (min-width: 767px) {
    .media-gallery .carousel {
        padding: 0 4rem;
    }
}

.media-gallery .video-thumb {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}

.media-gallery .carousel-control-prev-icon, .media-gallery .carousel-control-next-icon {
    background-color: var(--secondary-color);
    border-radius: 10rem;
}

.media-gallery .carousel-control-prev {
    left: -4.5% !important;
}

.media-gallery .carousel-control-next {
    right: -4.5%;
}

.share-story-form .main-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    min-height: 100vh;
    box-sizing: border-box;
}

.share-story-form .form-wrapper {
    width: 100%;
    max-width: 42rem;
    border-radius: 0.5rem;
    background-color: white;
    padding: 2.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.share-story-form .form-image {
    margin-bottom: 3rem;
    width: 100%;
    border-radius: 0.5rem;
}

.share-story-form .form-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: #1f2937;
}

.share-story-form .form-description {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.5;
}

.share-story-form .form-group {
    margin-bottom: 1.5rem;
}

.share-story-form .form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: #4b5563;
}

.share-story-form .form-input,
.share-story-form .form-select,
.share-story-form .form-textarea {
    width: 100%;
    border-radius: 0.375rem;
    border: 1px solid #d1d5db;
    padding: 0.75rem;
    font-size: 0.875rem;
    color: #1f2937;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .share-story-form .form-input:focus,
    .share-story-form .form-select:focus,
    .share-story-form .form-textarea:focus {
        border-color: var(--secondary-color);
        box-shadow: 0 0 0 1px var(--secondary-color);
        outline: none;
    }

.share-story-form .star-rating-group {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

    .share-story-form .star-rating-group input[type="radio"] {
        display: none;
    }

    .share-story-form .star-rating-group label {
        font-size: 2rem;
        color: #d1d5db;
        cursor: pointer;
        transition: color 0.2s ease-in-out;
        padding: 0 0.1em;
    }

        .share-story-form .star-rating-group label:hover,
        .share-story-form .star-rating-group label:hover ~ label {
            color: #f59e0b;
        }

    .share-story-form .star-rating-group input[type="radio"]:checked ~ label {
        color: #f59e0b;
    }

.share-story-form .options-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.share-story-form .option-item {
    display: flex;
    align-items: center;
}

.share-story-form .form-radio,
.share-story-form .form-checkbox {
    height: 1rem;
    width: 1rem;
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.share-story-form .options-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.share-story-form .consent-group {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.share-story-form .consent-label {
    margin-left: 0.5rem;
    font-size: 1rem;
    color: #4b5563;
}

.creditunionupper{
   margin-bottom: 3rem;
    margin-top: 3rem;
}
.sbmittbtn{
	    margin-top: 1rem;
    margin-bottom: 3rem;
}

.sf-icon-xxs{
	width: 45px;
    height: 56px;
}

.creditunionspace{
	margin-top: 1rem;
}

@media (max-width: 640px) {
    .share-story-form .main-container {
        padding: 1rem;
    }

    .share-story-form .form-wrapper {
        padding: 1.5rem;
    }

    .share-story-form .form-title {
        font-size: 1.5rem;
    }

    .share-story-form .options-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}