﻿/* Hero Slider Container - Keep original */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Slides Container - Keep original */
.slides-container {
    width: 400%;
    height: 100%;
    display: flex;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Individual Slide - Keep original */
.hero-slide {
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 20px;
}


.slide-1 {
    background: linear-gradient( rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.35) ), url('/assets/images/hero-home.webp') center/cover;
    max-height: 100vh;
}

.slide-2 {
    background: linear-gradient( rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.35) ), url('/assets/images/hero-home_2.webp') center/cover;
    max-height: 100vh;
}

.slide-3 {
    background: linear-gradient( rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.35) ), url('/assets/images/hero-home_4.webp') center/cover;
    max-height: 100vh;
}

.slide-4 {
    background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.45) ), url('/assets/images/hero-home.webp') center/cover;
}



/* SIMPLIFIED Hero Containers - Remove extra styling */
.hero-container {
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    z-index: 10;
}

.hero-container-4 {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    z-index: 10;
    padding: 0 20px;
}

/* SIMPLIFIED Hero Inner - Remove background/effects */
.hero-inner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    /* Removed: padding, background, border-radius, backdrop-filter */
}

/* ENHANCED Text Styles for Better Visibility */
.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7), 0 0 15px rgba(0, 0, 0, 0.4);
}

.hero h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7), 0 0 10px rgba(0, 0, 0, 0.4);
}

/* Slide-specific Colors */
.slide-1 h1 {
    color: #eb1616;
}

.slide-2 h1 {
    color: #fff;
}

.slide-3 h1 {
    color: #fff;
}

/* Buttons - Keep Original Style */
.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #eb1616;
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: 2px solid #eb1616;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
    padding: 12px 30px;
    font-size: 18px;
}

    .btn-primary:hover {
        background-color: #e55a2b;
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    }

/* Slide 4 - Left Content SIMPLIFIED */
.left-content {
    flex: 1;
    text-align: left;
    max-width: 500px;
}

    .left-content h1 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
        line-height: 1.1;
        color: #eb1616;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    }

    .left-content p {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        color: #ffffff;
        line-height: 1.6;
        font-weight: 400;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7), 0 0 10px rgba(0, 0, 0, 0.4);
        display: block; /* Default: show on desktop */
    }

/* SIMPLIFIED Contact Form */
.contact-form-container {
    flex: 1;
    max-width: 500px;
    background-color: rgba(10, 14, 23, 0.85);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

    .contact-form-container h2 {
        font-size: 32px;
        margin-bottom: 30px;
        text-align: center;
        color: #eb1616;
    }


/* Form Styles - Enhanced Input Visibility */
.form-group {
    margin-bottom: 24px;
}


    .form-group label {
        display: block;
        font-size: 18px;
        margin-bottom: 8px;
        color: #ffffff;
        font-weight: 600;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .form-group input {
        width: 100%;
        padding: 16px 20px;
        font-size: 16px;
        border-radius: 8px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        background-color: rgba(255, 255, 255, 0.15);
        color: white;
        transition: all 0.3s;
    }

        .form-group input:focus {
            outline: none;
            border-color: #ff6b6b;
            background-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.3);
        }

        .form-group input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

/* Submit Button */
.submit-btn {
    background-color: #eb1616;
    color: white;
    padding: 18px;
    font-size: 18px;
    width: 100%;
    margin-top: 20px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

    .submit-btn:hover {
        background-color: #e55a2b;
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    }

/* Responsive Text Adjustments */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero h3 {
        font-size: 1.2rem;
    }

    .left-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .hero h3 {
        font-size: 1rem;
    }

    .left-content h1 {
        font-size: 2rem;
    }

    .left-content p {
        font-size: 1.1rem;
    }

    .hero-container,
    .hero-container-4 {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.4rem;
    }

    .btn-primary {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* ========================================
   CLEANED & OPTIMIZED CSS - LIGHT THEME
   ======================================== */

/* Trading Assessment Section */
.trading-assessment-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    background-color: #ffffff;
}

.assessment-header {
    text-align: center;
    margin-bottom: 50px;
}

    .assessment-header h2 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #1a237e;
    }

    .assessment-header p {
        font-size: 18px;
        line-height: 1.6;
        color: #455a64;
        max-width: 800px;
        margin: 0 auto;
        font-weight: 400;
    }

.assessment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.assessment-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e0e0e0;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .assessment-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border-color: #1976d2;
    }

.card-content {
    flex-grow: 1;
}

.assessment-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a237e;
    line-height: 1.4;
}



/* Simple version with background image */
#workflow {
    padding: 100px 20px;
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.9)), url('/assets/images/dollar-rate.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
}

    #workflow .workflow-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    #workflow .workflow-title {
        text-align: center;
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 60px;
        color: white;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    #workflow .workflow-steps {
        display: flex;
        justify-content: space-between;
        gap: 30px;
        flex-wrap: wrap;
    }

    #workflow .workflow-step {
        flex: 1;
        min-width: 300px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 40px 30px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: all 0.3s ease;
    }

        #workflow .workflow-step:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

    #workflow .step-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        margin-bottom: 20px;
    }

    #workflow .step-description {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        margin-bottom: 30px;
        flex-grow: 1;
    }

    #workflow .step-cta {
        display: inline-block;
        padding: 12px 28px;
        background: white;
        color: #1e293b;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

        #workflow .step-cta:hover {
            background: #3b82f6;
            color: white;
            transform: translateY(-2px);
        }

/* Responsive */
@media (max-width: 768px) {
    #workflow {
        padding: 60px 10px;
        background-attachment: scroll;
    }

        #workflow .workflow-title {
            font-size: 28px;
        }

        #workflow .workflow-steps {
            flex-direction: column;
            align-items: center;
        }

        #workflow .workflow-step {
            width: 100%;
            max-width: 500px;
        }
}
/* Education Section */
/*.education-section {
    padding: 80px 20px;
    background-color: #e8ebf1;
}

.full-section-image {
    background: linear-gradient(rgba(26, 35, 126, 0.1), rgba(26, 35, 126, 0.1)), url('/assets/images/dollar-rate.webp') no-repeat center center/cover;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 20px;
}



    .full-section-image h2 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 50px;
        text-align: center;
        color: #ffffff;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }

.content-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.content-block {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .content-block:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-color: rgba(25, 118, 210, 0.3);
    }

.block-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a237e;
}

.block-description {
    font-size: 16px;
    line-height: 1.5;
    color: #546e7a;
    margin-bottom: 25px;
}*/

/* Expert Education Section */
.expert-education-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

    .expert-education-section .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .expert-education-section .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

        .expert-education-section .section-header h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1a237e;
        }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid #f0f0f0;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-color: #1976d2;
    }

.card-image img {
    width: 100%;
    max-width: 350px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto 20px;
    display: block;
}

.feature-card h3 {
    font-size: 22px;
    color: #1a237e;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Why Us Section */
.why-us-section {
    margin: 0 auto;
    padding: 80px 20px;
    background-color: #e8ebf1;
}

    .why-us-section .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

        .why-us-section .section-header h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1a237e;
        }

            .why-us-section .section-header h2::after {
                content: '';
                position: absolute;
                bottom: -15px;
                left: 50%;
                transform: translateX(-50%);
                width: 100px;
                height: 4px;
                background: linear-gradient(90deg, #1976d2, #2196f3);
                border-radius: 2px;
            }

        .why-us-section .section-header p {
            font-size: 18px;
            line-height: 1.6;
            color: #546e7a;
            max-width: 800px;
            margin: 40px auto 0;
            font-weight: 400;
        }

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-items {
    background: white;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .feature-items::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(to bottom, #1976d2, #2196f3);
    }

    .feature-items:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-color: #1976d2;
    }

.feature-item-content {
    font-size: 20px;
    font-weight: 600;
    color: #1a237e;
    line-height: 1.4;
    position: relative;
    padding-left: 45px;
}

    .feature-item-content::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 16px;
        font-weight: bold;
    }

.feature-items:nth-child(1) .feature-item-content::before {
    content: '1';
    background-color: #1976d2;
    color: white;
}

.feature-items:nth-child(2) .feature-item-content::before {
    content: '2';
    background-color: #2196f3;
    color: white;
}

.feature-items:nth-child(3) .feature-item-content::before {
    content: '3';
    background-color: #03a9f4;
    color: white;
}

.feature-items:nth-child(4) .feature-item-content::before {
    content: '4';
    background-color: #00bcd4;
    color: white;
}

/* Mentors Section */
.mentors-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    background-color: #ffffff;
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

    .section-content .section-header h2 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #1a237e;
    }

.section-description {
    margin-bottom: 50px;
}

    .section-description p {
        font-size: 18px;
        line-height: 1.6;
        color: #546e7a;
        font-weight: 400;
        margin-bottom: 25px;
    }

.resources-section {
    margin: 0 auto;
    padding: 80px 20px;
    background-color: #e8ebf1;
}

    .resources-section .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

        .resources-section .section-header h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1a237e;
        }

.resources-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.resource-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

    .resource-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-color: #1976d2;
    }

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a237e;
}

.card-description {
    font-size: 16px;
    line-height: 1.6;
    color: #546e7a;
    margin-bottom: 30px;
    flex-grow: 1;
}

.resource-cta {
    display: inline-block;
    background-color: #1976d2;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: 2px solid #1976d2;
    cursor: pointer;
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 6px;
    width: auto;
}

    .resource-cta:hover {
        background-color: #1565c0;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(21, 101, 192, 0.2);
    }

/* Ratings Section - Fixed */
.ratings-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

    .ratings-section .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .ratings-section .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

        .ratings-section .section-header h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1a237e;
        }

        .ratings-section .section-header p {
            font-size: 18px;
            line-height: 1.6;
            color: #546e7a;
            max-width: 800px;
            margin: 0 auto;
            font-weight: 400;
        }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .testimonial-card:before {
        content: "\201C";
        font-size: 80px;
        color: #1976d2;
        opacity: 0.2;
        position: absolute;
        top: -20px;
        left: 10px;
        font-family: serif;
        font-weight: bold;
    }

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: #455a64;
    line-height: 1.6;
    font-size: 16px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #1976d2;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 18px;
}

.author-info h4 {
    color: #1a237e;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 600;
}

.author-info p {
    color: #546e7a;
    font-size: 14px;
    margin-bottom: 5px;
}

.author-rating {
    color: #ffc107;
    font-size: 14px;
}

    .author-rating i {
        margin-right: 2px;
    }


/* Disclaimer Banner */
.disclaimer-banner {
    max-width: 1200px;
    margin: 80px auto 0px;
    padding: 30px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-radius: 12px;
    border: 1px solid #ffd54f;
    position: relative;
    text-align: center;
}
/*
.warning-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #f57c00;
}*/

.disclaimer-text {
    font-size: 16px;
    line-height: 1.6;
    color: #5d4037;
    font-weight: 400;
}

.highlight {
    color: #d84315;
    font-weight: 600;
}

/* ========================================
   BUTTON STYLES (Common for all sections)
   ======================================== */

.card-cta,
.block-cta,
.resource-cta,
.circle-cta,
.mentor-cta, 
.blog-cta {
    display: inline-block;
    background-color: #1976d2;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: 2px solid #1976d2;
    cursor: pointer;
    text-align: center;
}

.card-cta {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 6px;
    width: 100%;
    margin-top: 20px;
}

.block-cta,
.resource-cta,
.blog-cta {
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 6px;
    width: auto;
    margin-top: 0;
}

.circle-cta {
    padding: 10px 24px;
    font-size: 14px;
    border-radius: 25px;
    background: transparent;
    border: 2px solid #1976d2;
    color: #1976d2;
    box-shadow: none;
}

.mentor-cta {
    padding: 18px 45px;
    font-size: 18px;
    border-radius: 8px;
}

    .card-cta:hover,
    .block-cta:hover,
    .resource-cta:hover,
    .mentor-cta:hover,
    .blog-cta:hover {
        background-color: #1565c0;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(21, 101, 192, 0.2);
    }

.circle-cta:hover {
    background: #1976d2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 118, 210, 0.2);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
    .full-section-image h1 {
        font-size: 32px;
    }

    .assessment-header h1,
    .expert-education-section .section-header h2,
    .why-us-section .section-header h1,
    .mentors-section .section-header h1,
    .resources-section .section-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .trading-assessment-section,
    .education-section,
    .expert-education-section,
    .why-us-section,
    .mentors-section,
    .resources-section,
    .ratings-section {
        padding: 60px 20px;
    }

    /* Full Section Image with Content - MOBILE FIX */
    .full-section-image {
        height: auto;
        min-height: auto;
        margin: 40px 0 0 0;
        width: 100%;
        max-width: 100%;
        padding: 40px 20px;
        border-radius: 0;
    }

        .full-section-image h2 {
            font-size: 28px;
            margin-bottom: 40px;
        }

    .content-blocks {
        grid-template-columns: 1fr;
        gap: 25px;
        width: 100%;
        max-width: 100%;
    }

    .content-block {
        padding: 30px 20px;
    }

    .block-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .block-description {
        font-size: 16px;
        margin-bottom: 20px;
    }


    .assessment-header h2,
    .expert-education-section .section-header h2,
    .why-us-section .section-header h2,
    .mentors-section .section-header h2,
    .resources-section .section-header h2 {
        font-size: 28px;
    }

    .assessment-header h2,
    .section-description h2,
    .why-us-section .section-header h2 {
        font-size: 28px;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item-content {
        font-size: 18px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Full Section Image with Content - MOBILE FIX */
    .full-section-image {
        padding: 30px 15px;
    }

        .full-section-image h2 {
            font-size: 24px;
            margin-bottom: 30px;
        }

    .content-block {
        padding: 25px 15px;
    }

    .block-title {
        font-size: 18px;
    }

    .block-description {
        font-size: 15px;
    }


    .assessment-header h2,
    .expert-education-section .section-header h2,
    .why-us-section .section-header h2,
    .mentors-section .section-header h2,
    .resources-section .section-header h2 {
        font-size: 24px;
    }

    .block-title,
    .assessment-card h3,
    .feature-card h3 {
        font-size: 20px;
    }

    .card-cta,
    .block-cta,
    .resource-cta,
    .blog-cta {
        padding: 12px 20px;
        font-size: 14px;
    }

    .mentor-cta {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .resources-container,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .resources-section,
    .ratings-section {
        padding: 60px 20px;
    }

        .resources-section .section-header h2,
        .ratings-section .section-header h2 {
            font-size: 28px;
            margin-bottom: 15px;
        }

    .resources-container,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .resource-card {
        padding: 30px 20px;
        min-height: 220px;
    }

    .card-title {
        font-size: 22px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .resources-section,
    .ratings-section {
        padding: 50px 15px;
    }

        .resources-section .section-header h2,
        .ratings-section .section-header h2 {
            font-size: 24px;
        }

    .resource-card {
        padding: 25px 20px;
        min-height: 200px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-description {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .resource-cta, .blog-cta {
        padding: 10px 20px;
        font-size: 13px;
    }

    .testimonial-card {
        padding: 20px 15px;
    }

    .author-img {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}



@media (max-width: 992px) {
    .hero-container-4 {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .left-content {
        max-width: 100%;
        text-align: center;
    }

        .left-content h1 {
            font-size: 2.5rem;
        }

    .contact-form-container {
        max-width: 100%;
        width: 100%;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .hero-slide {
        height: auto;
        min-height: 100vh;
        padding: 60px 20px;
        align-items: flex-start;
    }

    .slide-4 {
        max-height: none;
        height: auto;
    }

    .hero-container-4 {
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }

    .left-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    /* HIDE THE PARAGRAPH ON MOBILE */
    .left-content p {
        display: none !important;
    }

    .contact-form-container {
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
    }

        .contact-form-container h2 {
            font-size: 1.8rem;
            margin-bottom: 25px;
        }

    .form-group input {
        padding: 14px 16px;
        font-size: 16px;
    }

    .btn-secondary {
        padding: 16px;
        font-size: 16px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .slide-4 {
        padding: 40px 15px;
    }

    .hero-container-4 {
        gap: 30px;
    }

    .left-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .contact-form-container {
        padding: 25px 15px;
    }

        .contact-form-container h2 {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

    .form-group {
        margin-bottom: 20px;
    }

        .form-group input {
            padding: 12px 14px;
            font-size: 15px;
        }

    .btn-secondary {
        padding: 14px;
        font-size: 15px;
    }
}


/* Home Blog Section */
.home-blogs {
    background: #f8f9fa;
    position: relative;
    padding:80px 20px;
}

/* Section Header */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a3a8f;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #1a3a8f, #2c5aa0);
        border-radius: 2px;
    }

.section-subtitle {
    color: #666;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}





/* Home Blog Cards */
.blog-card-home {
    background: white !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.4s ease !important;
    height: 100% !important;
    border: 1px solid #eef2f7 !important;
}

    .blog-card-home:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.blog-card-home-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

    .blog-card-home-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.blog-card-home:hover .blog-card-home-img img {
    transform: scale(1.1);
}

.blog-card-home-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

    .blog-card-home-date .day {
        font-size: 20px;
        font-weight: 700;
        color: #1a3a8f;
        line-height: 1;
    }

    .blog-card-home-date .month {
        font-size: 12px;
        color: #666;
        text-transform: uppercase;
        margin-top: 2px;
    }

.blog-card-home-body {
    padding: 25px;
}

.blog-card-home-category {
    margin-bottom: 15px;
}

    .blog-card-home-category .badge {
        background: linear-gradient(90deg, #1a3a8f, #2c5aa0);
        color: white;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

.blog-card-home-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #1a3a8f;
}

    .blog-card-home-title a {
        color: inherit;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .blog-card-home-title a:hover {
            color: #2c5aa0;
        }

.blog-card-home-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 72px; /* 3 lines * 24px line-height */
}

.blog-card-home-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eef2f7;
}

.read-more-link {
    color: #1a3a8f;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

    .read-more-link:hover {
        color: #2c5aa0;
        gap: 8px;
    }

    .read-more-link i {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .read-more-link:hover i {
        transform: translateX(3px);
    }

.read-time {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
}

/* View All Button */
.btn-view-all {
    background: linear-gradient(90deg, #1a3a8f, #2c5aa0);
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .btn-view-all:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(26, 58, 143, 0.2);
    }

    .btn-view-all i {
        transition: transform 0.3s ease;
    }

    .btn-view-all:hover i {
        transform: translateX(5px);
    }

/* Responsive Design */
@media (max-width: 1199px) {
    .section-title {
        font-size: 32px;
    }

    .blog-card-home-img {
        height: 200px;
    }
}

@media (max-width: 991px) {
    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .blog-card-home-body {
        padding: 20px;
    }

    .blog-card-home-title {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .home-blogs {
        padding: 60px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .blog-card-home {
        margin-bottom: 20px;
    }

    .blog-card-home-img {
        height: 250px;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 24px;
    }

    .blog-card-home-img {
        height: 220px;
    }

    .blog-card-home-title {
        font-size: 18px;
    }
}