@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* WebFire Custom Styles */

:root {
    --wf-primary-color: #1a237e;
    /* Dark Blue from the Login button */
    --wf-secondary-color: #e53935;
    /* Red from the logo */
    --wf-text-dark: #212121;
    --wf-navbar-bg: #f8f9fa;
    --wf-nav-link-color: #333;
    --wf-nav-link-active: #2C3578;
    --wf-nav-link-gradient: linear-gradient(90deg, #2C3578 0%, #565D93 100%);
    --wf-transition: all 0.3s ease;
}

body {
    font-family: 'Outfit', sans-serif;
}

/* Unique Navbar Classes to avoid conflicts */
.wf-navbar-main {
    background-color: rgba(248, 249, 250, 0.95);
    /* Slightly transparent */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #dee2e6;
    padding: 0.8rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.wf-logo-img {
    height: 55px;
    /* Adjust based on design */
    width: auto;
}

.wf-nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.wf-nav-item {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wf-nav-link-custom {
    text-decoration: none;
    color: var(--wf-nav-link-color) !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--wf-transition);
}

.wf-nav-link-custom:hover,
.wf-nav-link-custom.active {
    background: var(--wf-nav-link-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wf-nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--wf-nav-link-gradient);
    border-radius: 2px;
    transition: var(--wf-transition);
}

.wf-nav-link-custom:hover::after,
.wf-nav-link-custom.active::after {
    width: 100%;
}

.wf-login-btn {
    background: linear-gradient(180deg, #2C3578 -16.35%, #232A60 100.96%);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--wf-transition);
    border: 2px solid transparent;
}

.wf-login-btn:hover {
    background-color: #121858;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.wf-login-icon {
    font-size: 1.1rem;
}

/* Mobile Toggler Customization */
.wf-navbar-toggler {
    border: none;
    outline: none !important;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0 !important;
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .wf-nav-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
        gap: 0.5rem;
    }

    .wf-login-btn {

        display: inline-flex;
    }

    .wf-hero-img-container {
        height: 300px !important;
    }
}

/* Hero Section Styling */
.wf-hero-section {
    padding: 80px 0 0 0;
    text-align: center;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF0F0 100%);
    position: relative;
    overflow: hidden;
}


.wf-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.wf-hero-badge {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid #2C3578;
    border-radius: 50px;
    color: #2C3578;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.wf-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

#wf-typed-text {
    background: var(--wf-nav-link-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    display: inline-block;
    vertical-align: bottom;
}

@media (min-width: 1000px) {
    #wf-typed-text {
        min-width: 480px;
        text-align: left;
        margin-left: 10px;
    }
}

@media (max-width: 999px) {
    .wf-hero-title {
        font-size: 2.5rem;
    }

    #wf-typed-text {
        text-align: center;
        width: 100%;
    }
}

.wf-hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}

.wf-hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;

}

.wf-btn-primary {
    background: linear-gradient(180deg, #2C3578 -16.35%, #232A60 100.96%);
    color: #fff !important;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--wf-transition);
    border: none;
    display: inline-block;
}

.wf-btn-outline {
    background: #fff;
    color: #2C3578 !important;
    padding: 15px 35px;
    border: 1px solid #2C3578;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--wf-transition);
    display: inline-block;
}

.wf-btn-primary:hover,
.wf-btn-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(44, 53, 120, 0.2);
}

.wf-hero-img-container {
    position: relative;
    z-index: 1;
    margin-top: 20px;
    overflow: hidden;
    height: 500px;
}

.wf-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

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

    .wf-hero-btns {
        flex-direction: column;
        align-items: center;
    }
}

/* Features Section Styling */
.wf-features-section {
    padding: 80px 0 0 0;
    background-color: #f4f6f9;
    /* Very light greyish blue */
    text-align: center;
}

.wf-features-header {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.wf-features-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.wf-features-title span {
    background: var(--wf-nav-link-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wf-features-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.wf-feature-item {
    text-align: left;
    padding: 40px 30px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: var(--wf-transition);
}

.wf-feature-item:hover {
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(44, 53, 120, 0.05);
    z-index: 1;
}

.wf-feature-icon-sm {
    width: 60px;
    height: 60px;
    background-color: #2C35780D;
    /* Very light brand blue */
    color: #2C3578;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: var(--wf-transition);
}

.wf-feature-item:hover .wf-feature-icon-sm {
    background-color: #2C3578;
    color: #fff;

}

.border-right {
    border-right: 1px solid rgba(44, 53, 120, 0.15);
}

.wf-feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.wf-feature-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .wf-features-header {
        margin: 0 auto 30px auto;
    }

    .wf-feature-item {
        border-right: none !important;
        border-bottom: 1px solid #d1d8e0;
        padding: 10px 0;
    }

    .wf-feature-item:last-child {
        border-bottom: none;
    }

    .wf-features-title {
        font-size: 2rem;
    }
}

/* Trusted By Section Styling */
.wf-trusted-section {
    padding: 60px 0;
    background-color: #f4f6f9;
    ;
    overflow: hidden;
}

.wf-trusted-header {
    margin-bottom: 50px;
    position: relative;
    text-align: center;
}

.wf-trusted-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.wf-trusted-subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.wf-trusted-subtitle span {
    color: #2C3578;
}

/* Gradient Lines on sides of subtitle (Absolute Position) */
.wf-trusted-subtitle::before,
.wf-trusted-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 4px;
    border-radius: 2px;
    opacity: 0.8;
}

.wf-trusted-subtitle::before {
    right: 100%;
    margin-right: 25px;
    background: linear-gradient(90deg, transparent 0%, #DE2416 50%, #82AF2B 100%);
}

.wf-trusted-subtitle::after {
    left: 100%;
    margin-left: 25px;
    background: linear-gradient(90deg, #DE2416 0%, #82AF2B 50%, transparent 100%);
}

/* Hide lines on smaller screens to avoid mess */
@media (max-width: 1200px) {

    .wf-trusted-subtitle::before,
    .wf-trusted-subtitle::after {
        width: 100px;
        /* Shorten them first */
    }
}

@media (max-width: 991px) {

    .wf-trusted-subtitle::before,
    .wf-trusted-subtitle::after {
        display: none;
    }
}

.wf-logo-swiper {
    padding: 20px 0;
}

.wf-logo-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
}

.wf-logo-swiper .swiper-slide img {
    max-width: 140px;
    max-height: 60px;
    height: auto;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.wf-logo-swiper .swiper-slide:hover img {
    opacity: 1;
}

@media (max-width: 768px) {
    .wf-trusted-title {
        font-size: 1.4rem;
    }

    .wf-trusted-subtitle {
        font-size: 1.3rem;
    }

    .wf-trusted-header::after {
        width: 80%;
    }
}

/* Challenge Section Styling */
.wf-challenge-section {
    padding: 60px 0;
    background-color: #fff;
}

.wf-challenge-content {
    padding-right: 40px;
}

.wf-challenge-badge {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid #2C3578;
    border-radius: 50px;
    color: #2C3578;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.wf-challenge-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.wf-challenge-title .highlight {
    color: #2C3578;
}

.wf-challenge-divider {
    width: 100%;
    max-width: 540px;
    height: 4px;
    background: linear-gradient(90deg, #DE2416 0%, #82AF2B 50%, transparent 100%);
    border-radius: 2px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.wf-challenge-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.wf-challenge-list li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.wf-challenge-list li i {
    color: #DA2114;
    /* Red 'X' color */
    font-size: 1.4rem;
}

.wf-challenge-alert {
    background-color: #DA2114;
    color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    line-height: 1.4;
    box-shadow: 0 10px 20px rgba(222, 36, 22, 0.2);
    text-align: left;
}

.wf-challenge-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.wf-challenge-img-wrapper {
    position: relative;
    text-align: center;
}

.wf-challenge-img-wrapper img {
    max-width: 100%;
    height: auto;
}

/* Solution Section Styling */
.wf-solution-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    /* Slightly different bg for contrast */
}

.wf-solution-content {
    padding-left: 40px;
}

.wf-solution-badge {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid #2C3578;
    border-radius: 50px;
    color: #2C3578;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.wf-solution-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.wf-solution-title .highlight {
    color: #2C3578;
}

.wf-solution-divider {
    width: 100%;
    max-width: 540px;
    height: 4px;
    background: linear-gradient(90deg, #82AF2B 0%, #DE2416 50%, transparent 100%);
    border-radius: 2px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.wf-solution-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.wf-solution-list li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.wf-solution-list li i {
    color: #8eb44e;
    /* Success Green */
    font-size: 1.4rem;
}

.wf-solution-alert {
    background-color: #8eb44e;
    /* Success Green */
    color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    line-height: 1.4;
    box-shadow: 0 10px 20px rgba(142, 180, 78, 0.2);
    text-align: left;
}

.wf-solution-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.wf-solution-img-wrapper {
    position: relative;
    text-align: center;
}

.wf-solution-img-wrapper img {
    max-width: 100%;
    height: auto;
}

/* Why Choose Section Styling */
.wf-why-section {
    padding: 60px 0;
    background-color: #9747FF1A;
    /* Lavender Background */
}

.wf-why-header {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.wf-why-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.wf-why-title span {
    color: #2C3578;
}

.wf-why-subtitle {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.wf-why-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    height: 100%;
    transition: var(--wf-transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #2C3578;
}

.wf-why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(44, 53, 120, 0.1);
}

.wf-why-icon {
    width: 60px;
    height: 60px;
    background-color: #2C3578;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(44, 53, 120, 0.3);
}

.wf-why-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.wf-why-card-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Courses Section Styling */
.wf-courses-section {
    padding: 60px 0;
    background-color: #fff;
}

.wf-courses-header {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.wf-courses-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.wf-courses-title span {
    color: #2C3578;
}

.wf-courses-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.wf-course-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--wf-transition);
}

.wf-course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.wf-course-img {
    height: 180px;
    overflow: hidden;
}

.wf-course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wf-course-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Pastel Background Classes for Course Info */
.bg-pink .wf-course-info {
    background-color: #9747FF0D;
    border: 1px solid #FF000033;
}

.bg-purple .wf-course-info {
    background-color: #9747FF0D;
    border: 1px solid #9747FF33;
}

.bg-green .wf-course-info {
    background-color: #82AF2B0D;
    border: 1px solid #82AF2B33;
}

.bg-blue .wf-course-info {
    background-color: #2C35780D;
    border: 1px solid #2C357833;
}

.wf-course-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.wf-course-card-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 10px;
    flex-grow: 1;
}

.wf-course-meta {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #2C3578;
    font-weight: 600;
    margin-bottom: 20px;
}

.wf-course-meta i {
    font-size: 17px;
    margin-top: 3px;
}

.wf-course-meta small {
    display: block;
    color: #666;
    font-weight: 400;
}

.wf-course-btn {
    display: block;
    width: 100%;
    background-color: #2C3578;
    color: #fff !important;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--wf-transition);
}

.wf-course-btn:hover {
    background-color: #1a237e;
    opacity: 0.9;
}

.wf-view-all-btn {
    background-color: #2C3578;
    color: #fff !important;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--wf-transition);
}

.wf-view-all-btn:hover {
    background-color: #1a237e;
    transform: scale(1.05);
}

/* Testimonials Section Styling - Static Grid */
.wf-testimonials-section {
    padding: 60px 0;
    background-color: #FDFBF0;
    /* Light Cream BG */
}



.wf-testimonials-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
}

.wf-testimonials-title span {
    color: #2C3578;
}

/* Base Card Styles */
.wf-testimonial-card-v,
.wf-testimonial-card-h {
    background: #fff;
    border: 2px solid #2C3578;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

/* Vertical Card (3 Columns) */
.wf-testimonial-card-v {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

/* Horizontal Card (6 Columns) */
.wf-testimonial-card-h {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 30px;
    transform: translateY(26px);
    /* Move it down using transform */
}

.wf-testimonial-avatar {
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #2C3578;
}

.wf-testimonial-card-v .wf-testimonial-avatar {
    width: 100px;
    height: 100px;
}

.wf-testimonial-card-h .wf-testimonial-avatar {
    width: 140px;
    height: 140px;
}

.wf-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wf-testimonial-content {
    flex-grow: 1;
}

.wf-testimonial-content p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 500;
}

.wf-testimonial-card-v .wf-testimonial-content p {
    font-size: 0.95rem;
}

.wf-testimonial-card-h .wf-testimonial-content p {
    font-size: 0.9rem;
}

.wf-testimonial-footer {
    display: block;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    text-align: right;
    font-size: 0.9rem;
}

/* CTA Section Styling */
.wf-cta-section {
    padding: 100px 0;
    background-color: #2C3578;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.wf-cta-layer {
    position: absolute;
    width: 320px;
    height: auto;
    pointer-events: none;
    opacity: 0.8;
}

.wf-layer-left {
    top: -68px;
    left: -3px;
    transform: rotate(0deg);
}

.wf-layer-right {
    bottom: -70px;
    right: -3px;
    transform: rotate(180deg);
}

.wf-cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    text-transform: uppercase;
}

.wf-cta-text {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
    line-height: 1.6;
}

.wf-cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.wf-btn-white {
    background-color: #fff;
    color: #2C3578 !important;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--wf-transition);
}

.wf-btn-outline-white {
    background-color: transparent;
    color: #fff !important;
    padding: 15px 35px;
    border: 1px solid #fff;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--wf-transition);
}

.wf-btn-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.wf-btn-outline-white:hover {
    background-color: #fff;
    color: #2C3578 !important;
    transform: translateY(-5px);
}

@media (max-width: 991px) {
    .wf-solution-content {
        padding-left: 0 !important;
    }

    .wf-challenge-section,
    .wf-solution-section,
    .wf-why-section,
    .wf-courses-section {
        padding: 60px 0;
    }

    .wf-testimonials-section {
        padding: 80px 0 60px 0;
    }

    .wf-why-title,
    .wf-courses-title,
    .wf-testimonials-header {
        margin-bottom: 40px;
    }

    .wf-testimonials-title {
        font-size: 1.8rem !important;
        padding: 0 10px;
    }

    .wf-cta-title {
        font-size: 2.2rem;
    }

    .wf-cta-layer {
        width: 250px;
    }

    .wf-cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .wf-cta-btns a {
        width: 100%;
        max-width: 300px;
    }

    .wf-testimonial-card-h,
    .wf-testimonial-card-v {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        max-width: 100%;
        transform: none !important;
        margin-bottom: 15px;
        /* Add spacing between stacked cards */
    }

    .wf-testimonial-card-h .wf-testimonial-avatar,
    .wf-testimonial-card-v .wf-testimonial-avatar {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }

    .wf-testimonial-content p {
        font-size: 0.95rem !important;
        text-align: center;
    }

    .wf-testimonial-footer {
        text-align: center;
    }
}

/* Footer Section Styling */
.wf-footer {
    background-color: #D9DBE9;
    /* Light grey-blue background */
    padding-top: 40px;
    color: #4E4B66;
}

.wf-footer-logo {
    height: 60px;
    width: auto;
}

.wf-footer-desc {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 320px;
}

.wf-social-links {
    display: flex;
    gap: 15px;
}

.wf-social-btn {
    width: 45px;
    height: 45px;
    background-color: #2C3578;
    color: #fff !important;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--wf-transition);
    box-shadow: 0 4px 6px rgba(44, 53, 120, 0.1);
    text-decoration: none;
}

.wf-social-btn:hover {
    transform: translateY(-5px);
    background-color: #1a237e;
    box-shadow: 0 8px 15px rgba(44, 53, 120, 0.2);
}

.wf-footer-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #14142B;
    margin-bottom: 25px;
}

.wf-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wf-footer-links li {
    margin-bottom: 12px;
}

.wf-footer-links a {
    text-decoration: none;
    color: #4E4B66;
    font-size: 0.95rem;
    transition: var(--wf-transition);
}

.wf-footer-links a:hover {
    color: #2C3578;
    padding-left: 5px;
}

.wf-footer-divider {
    border-color: rgba(20, 20, 43, 0.856);
}

.wf-copyright {
    font-size: 0.9rem;
    color: #4E4B66;
}

.wf-bottom-links {
    list-style: none;
    padding: 0;
}

.wf-bottom-links a {
    text-decoration: none;
    color: #4E4B66;
    font-size: 0.9rem;
    transition: var(--wf-transition);
}

.wf-bottom-links a:hover {
    color: #2C3578;
}

/* Mobile Tweaks */
@media (max-width: 991px) {
    .wf-footer {
        padding-top: 60px;
        text-align: left;
    }

    .wf-footer-brand {
        margin-bottom: 20px;
    }

    .wf-footer-title {
        margin-top: 20px;
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .wf-courses-title {
        font-size: 1.8rem !important;
    }

    .wf-why-title {
        font-size: 1.8rem !important;
    }

    .wf-challenge-title,
    .wf-solution-title {
        font-size: 1.8rem !important;
    }

}