/*
Theme Name: Trader2B
Description: Custom WordPress theme for trading education website
Version: 1.0
Author: Custom Development
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: #ffffff !important;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
    background: #ffffff !important;
    padding-top: 80px; /* Add space for fixed header */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-main {
    background: #ffffff;
}

/* Header Styles */
.header {
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo,
.site-title,
.site-title a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
    letter-spacing: -0.5px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.logo-text {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1f2937;
}

.logo-highlight {
    color: #2DAF53;
}

.nav,
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav a,
.main-navigation a {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.nav a:hover,
.main-navigation a:hover {
    color: #2DAF53;
}

.nav sup {
    font-size: 10px;
    color: #2DAF53;
    font-weight: 600;
}

/* Active Navigation State */
.nav li.current-menu-item a,
.main-navigation li.current-menu-item a {
    color: #2DAF53;
    font-weight: 600;
    position: relative;
}

/* .nav li.current-menu-item a::after,
.main-navigation li.current-menu-item a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: #2DAF53;
    border-radius: 1px;
} */

.nav li.current-menu-item a sup,
.main-navigation li.current-menu-item a sup {
    color: #2DAF53;
}

.nav .dropdown {
    position: relative;
}

.nav .dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 200px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    z-index: 1;
    border-radius: 8px;
    padding: 8px 0;
    top: 100%;
    left: -20px;
    border: 1px solid #eef2f7;
}

.nav .dropdown:hover .dropdown-content {
    display: block;
}

.nav .dropdown-content a {
    color: #5a6c7d;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav .dropdown-content a:hover {
    background: #f8fafb;
    color: #2DAF53;
}

.header-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.login-dropdown {
    position: relative;
}

.login-btn {
    background: none;
    border: none;
    color: #2DAF53;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: 'Montserrat';
}

.login-btn:hover {
    color: #26a049;
    background: rgba(45, 175, 83, 0.1);
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.login-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.login-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 1px solid #eef2f7;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 8px 0;
    margin-top: 8px;
}

.login-dropdown.active .login-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.login-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: white;
    border: 1px solid #eef2f7;
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #5a6c7d;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: #f8fafb;
    color: #2DAF53;
    border-left-color: #2DAF53;
}

.signup-btn {
    background: transparent;
    color: #1f2937;
    padding: 10px 20px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.signup-btn:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    color: #1f2937;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #333;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
    min-width: 44px;
    min-height: 44px;
}

.mobile-menu-toggle:hover {
    background: rgba(45, 175, 83, 0.1);
    color: #2DAF53;
}

.mobile-menu-toggle .menu-icon {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: #ffffff;
    transform: translateY(-100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
    box-shadow: none;
    overflow-y: auto;
    visibility: hidden;
}

.mobile-menu.active {
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 10000;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #333;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background: rgba(45, 175, 83, 0.1);
    color: #2DAF53;
}

.mobile-menu-content {
    padding: 30px 6px;
}

.mobile-menu .nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu .nav li {
    margin: 0;
}

.mobile-menu .nav a {
    font-size: 14px;
    padding: 20px;
    border-bottom: 1px solid #f3f4f6;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.mobile-menu .nav a:hover {
    color: #2DAF53;
    background: rgba(45, 175, 83, 0.05);
    padding-left: 15px;
    border-left: 3px solid #2DAF53;
}

/* Active Mobile Menu State */
.mobile-menu .nav li.current-menu-item a {
    color: #2DAF53;
    font-weight: 600;
    background: rgba(45, 175, 83, 0.1);
    padding-left: 15px;
    border-left: 3px solid #2DAF53;
}

/* Mobile Menu Actions */
/* .mobile-menu-actions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
} */

.mobile-login-section {
    margin-bottom: 2rem;
}

.mobile-login-section .mobile-login-title {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    /* margin-bottom: 1rem; */
    font-family: 'Montserrat', sans-serif;
    padding:20px
}

.mobile-login-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-login-link {
    padding: 0.8rem 1rem;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-login-link:hover {
    background: rgba(45, 175, 83, 0.1);
    border-color: #2DAF53;
    color: #2DAF53;
}

.mobile-signup-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #2DAF53;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 2px 8px rgba(45, 175, 83, 0.3);
}

.mobile-signup-btn:hover {
    background: #26a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 175, 83, 0.4);
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Body scroll lock when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}

/* Add some touch-friendly improvements */
/* @media (hover: none) and (pointer: coarse) {
    .mobile-menu-toggle {
        padding: 12px;
        min-width: 48px;
        min-height: 48px;
    }

    .mobile-menu-close {
        padding: 12px;
        min-width: 48px;
        min-height: 48px;
    }

    .mobile-menu .nav a {
        padding: 1.5rem 0;
        font-size: 1.2rem;
    }

    .mobile-login-link {
        padding: 1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-signup-btn {
        padding: 1.2rem;
        min-height: 48px;
        font-size: 1.1rem;
    }
} */

.site-branding {
    display: flex;
    align-items: center;
    width: 12%;
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.main-navigation {
    display: flex;
    align-items: center;
}

/* Hero Section */
.hero {
    background: #ffffff;
    color: #333;
    padding: 80px 0 120px;
    text-align: center;
    position: relative;
}

.hero h2 {
    font-size: 56px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 80px;
    color: #2C2C2C;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 24px;
    margin-bottom: 2.5rem;
    /* max-width: 650px; */
    margin-left: auto;
    margin-right: auto;
    line-height: 28px;
    color: #2C2C2C;
    font-family: 'Montserrat', sans-serif;
}

.toro-btn.cta-button{
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: #2DAF53;
    border-radius: 5px 5px 5px 5px;
    padding: 16px 60px 16px 60px;
}

.cta-button {
    display: inline-block;
    background: #2DAF53;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(45, 175, 83, 0.3);
    font-family: 'Montserrat', sans-serif;
    line-height: 19px;
    border-radius: 5px 5px 5px 5px;
    padding: 10px 20px 10px 20px;
}

.cta-button:hover {
    background: #26a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 175, 83, 0.4);
}

.hero-image {
    /* margin-top: 60px; */
    /* max-width: 1000px; */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .hero-image img { */
    /* width: 100%; */
    /* height: auto; */
    /* border-radius: 12px; */
    /* box-shadow: 0 20px 60px rgba(0,0,0,0.15); */
    /* transition: transform 0.3s ease; */
/* } */

/* .hero-image img:hover { */
    /* transform: translateY(-5px); */
    /* box-shadow: 0 25px 70px rgba(0,0,0,0.2); */
/* } */

/* Features Section */
.features {
    padding: 100px 0;
    background: #ffffff;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 40px 0;
    width: 100%;
}

.feature-card.feature-reverse {
    flex-direction: row-reverse;
}

.feature-illustration {
    flex: 1;
    /* max-width: 400px; */
    width: 50%;
}

.feature-illustration img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.feature-content {
    flex: 1;
    text-align: left;
    width: 50%;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 60px;
    height: 60px;
}

.feature-content p {
    color: #000000B0;
    line-height:28px;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    font-weight: 400;
}
.feature-content.toro-feature-content p{
   color: #ffffff;
}

.feature-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2DAF53;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.feature-more-btn:hover {
    color: #26a049;
    transform: translateX(5px);
}

.feature-more-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.feature-more-btn:hover svg {
    transform: translateX(3px);
}

/* Specific feature illustrations */
/* .feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #00d847 0%, #00c43e 100%);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
} */

/* Section Styles */
.section {
    padding: 50px 0;
    background: #ffffff;
}

.section.challenge-section h2,
.section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 24px;
    color: #2c2c2c;
    font-weight: 500;
    line-height:53px;
    font-family: 'Montserrat', sans-serif;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #6c7d8d;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}
.feature-content h2 {
    text-align: left;
    font-size: 36px;
    margin-bottom: 20px;
    color: #000000;
    font-weight: 700;
    line-height: 42px;
    font-family: 'Montserrat', sans-serif;
}


/* Video Section */
.video-section {
    text-align: center;
    margin-top: 80px;
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
}

.video-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Testimonial Carousel */
.testimonial-carousel {
    margin-top: 80px;
    text-align: center;
}

.testimonial-container {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
}

.testimonial-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-item.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    margin: 20px;
    /* border: 1px solid #e8e8e8; */
}

.testimonial-content p {
    font-size: 24px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 20px;
    font-style: italic;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.testimonial-author {
    font-weight: 500;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    line-height: 36px;
    font-style: italic;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    background: #2DAF53;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #26a049;
}

.testimonial-indicators {
    display: flex;
    gap: 8px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: #2DAF53;
}

.trustpilot-section {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.trustpilot-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-stars {
    color: #00B67A;
    font-size: 1.2rem;
}

.rating-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #333;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 24px solid #2DAF53;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    margin-left: 6px;
}

/* Trust Section */
.trust-section {
    background: white;
    text-align: center;
    padding: 80px 0;
}

.trust-section p {
    font-size: 1.1rem;
    color: #6c7d8d;
    margin-bottom: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.trust-section strong {
    color: #2c3e50;
    font-weight: 600;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-logo {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.trust-logo:hover {
    opacity: 1;
}

.trust-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.rating-stars {
    color: #ffd700;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.rating-text {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

/* Challenge Section */
.challenge-section {
    background: #ffffff;
    color: #333;
    text-align: center;
    position: relative;
    padding: 100px 0;
}

.challenge-section h2 {
    color: #333;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.challenge-section .section-subtitle {
    color: #666;
    font-size: 1.4rem;
    margin-bottom: 50px;
    font-family: 'Montserrat', sans-serif;
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.challenge-item {
    padding: 30px 20px;
    border-radius: 20px;
    background: #f0f9f4;
    border: 1px solid #e8f5e8;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 175, 83, 0.1);
}

.challenge-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: #2DAF53;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.challenge-item h4 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.challenge-item p {
    color: #666;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 60px 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h2 {
    margin-bottom: 25px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.85rem;
    font-family: 'Montserrat', sans-serif;
}

.footer-section ul li a:hover {
    color: #2DAF53;
}

.text-green {
    color: #2DAF53;
}

/* eBook Section */
.ebook-section {
    text-align: center;
}

.ebook-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.ebook-image {
    margin-bottom: 20px;
}

.ebook-image img {
    width: 120px;
    height: 160px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.ebook-image img:hover {
    transform: scale(1.05);
}

.ebook-form {
    width: 100%;
    max-width: 250px;
}

.ebook-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ebook-form input[type="email"] {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    background: white;
    color: #333;
}

.ebook-form input[type="email"]:focus {
    outline: none;
    border-color: #2DAF53;
}

.ebook-form input[type="email"]::placeholder {
    color: #999;
}

.cta-button-green {
    background: #2DAF53;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-button-green:hover {
    background: #26a049;
}

/* Footer Bottom */
.footer-bottom {
    padding: 0;
    border: none;
}

.footer-apps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid #333;
}

.app-downloads {
    display: flex;
    gap: 15px;
}

.app-store-btn,
.google-play-btn {
    transition: all 0.3s ease;
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
}

.app-store-btn img,
.google-play-btn img {
    width: 160px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.app-store-btn:hover,
.google-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.app-store-btn:hover img,
.google-play-btn:hover img {
    transform: scale(1.05);
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.social-links a:hover {
    color: #2DAF53;
    transform: translateY(-2px);
}

.footer-disclaimer {
    background: #000000;
    padding: 30px 0;
    border-top: 1px solid #333;
}

.footer-disclaimer p {
    color: #999;
    font-size: 0.75rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-disclaimer .copyright {
    font-size: 0.85rem;
    color: #bdc3c7;
    font-weight: 600;
    text-align: center;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero h2 {
        font-size: 3rem;
    }

    .section.challenge-section h2,
    .section h2 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 40px;
    }

    /* .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    } */
}

@media (max-width: 1024px) {
    .nav,
    .main-navigation ul {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header {
        padding: 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .header .container {
        padding: 1rem 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 100%;
    }

    .header-actions {
        display: none;
    }

    .signup-btn {
        display: none;
    }

    .login-btn {
        display: none;
    }

    body {
        padding-top: 80px;
    }

    /* Ensure mobile menu works properly */
    .main-navigation {
        display: block;
    }

    .site-branding {
        width: 20%;
    }

    .site-branding .logo,
    .site-branding .site-title a {
        display: block;
        max-width: 200px;
    }

    .site-branding .logo img {
        max-height: 40px;
        width: auto;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-image {
        margin-top: 40px;
        max-width: 100%;
    }

    /* .hero-image img {
        border-radius: 8px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    } */

    .features-grid {
        gap: 40px;
    }

    .feature-card {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
    }

    .feature-content {
        text-align: start;
        width: 100%;
    }

    .feature-illustration {
        width: 100%;
        margin: 0 auto;
    }

    .feature-icon {
        margin-bottom: 15px;
    }
    .challenge-section .section-subtitle{
        font-size: 20px;
        line-height: 28px;
    }

    .feature-icon svg {
        width: 50px;
        height: 50px;
    }

    .testimonial-carousel {
        margin-top: 60px;
    }

    .testimonial-content {
        padding: 10px 20px;
        margin: 10px;
    }

    .testimonial-navigation {
        gap: 15px;
        margin-top: 20px;
    }

    .testimonial-prev,
    .testimonial-next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .trustpilot-section {
        flex-direction: column;
        gap: 15px;
    }

    .section {
        padding: 40px 0;
    }

    .section.challenge-section h2,
    .section h2 {
        font-size: 24px;
        line-height: 30px;
        font-weight: 600;
    }

    .feature-content h2 {
        font-size: 24px;
        line-height: 30px;
        font-weight: 600;
    }

    .testimonial-content p{
        font-size: 18px;
    }

    .container {
        padding: 0 20px;
    }

    .challenge-grid {
        grid-template-columns: 1fr;
    }

    .challenge-section h2 {
        font-size: 2.5rem;
    }

    /* .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    } */

    .footer-apps {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .app-downloads {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .app-store-btn img,
    .google-play-btn img {
        width: 140px;
        height: 42px;
    }

    .ebook-image img {
        width: 100px;
        height: 133px;
    }

    .ebook-form {
        max-width: 300px;
    }

    .ebook-form .form-group {
        gap: 15px;
    }

    /* .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    } */

    .video-container {
        border-radius: 12px;
    }

    .play-button {
        width: 80px;
        height: 80px;
    }

    .play-button::after {
        border-left: 20px solid #2DAF53;
        border-top: 14px solid transparent;
        border-bottom: 14px solid transparent;
        margin-left: 4px;
    }
}
@media (max-width: 768px){
    .footer-content{
        grid-template-columns: repeat(1, 1fr);
    text-align: left;
    }
}
@media (max-width: 480px) {
    .header .container {
        padding: 0.8rem 15px;
    }

    .mobile-menu-toggle {
        font-size: 1.6rem;
        padding: 8px;
        min-width: 40px;
        min-height: 40px;
    }

    .mobile-menu-header {
        padding: 0.8rem 15px;
    }

    .mobile-menu-content {
        padding: 1.5rem 15px;
    }

    .mobile-menu .nav a {
        font-size: 1.1rem;
        padding: 1rem 0;
    }

    .mobile-menu-actions {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .mobile-login-section .mobile-login-title {
        font-size: 1rem;
    }

    .mobile-login-link {
        padding: 0.7rem 0.8rem;
        font-size: 0.95rem;
    }

    .mobile-signup-btn {
        padding: 0.9rem;
        font-size: 1rem;
    }

    /* .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    } */

    /* .section h2 {
        font-size: 1.8rem;
    } */

    .cta-button {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .hero-image {
        margin-top: 30px;
    }

    /* .hero-image img {
        border-radius: 6px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    } */

    .feature-card {
        padding: 20px 20px;
    }

    .feature-icon {
        margin-bottom: 12px;
    }

    .feature-icon svg {
        width: 45px;
        height: 45px;
    }

    .challenge-section h2 {
        font-size: 26px;
        line-height: 42px;
        margin-bottom: 20px;
    }

    .container {
        padding: 0 15px;
    }

    .features-grid {
        gap: 25px;
        margin-top: 0px;
    }

    .trust-logos {
        flex-direction: column;
        gap: 20px;
    }

    .challenge-grid {
        gap: 25px;
    }

    .newsletter-form .form-group {
        flex-direction: column;
    }

    .newsletter-form input {
        margin-bottom: 15px;
    }

    .footer-disclaimer p{
        text-align: justify;
    }
}

/* @media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .section {
        padding: 30px 0;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
} */

/* Performance Optimizations */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for keyboard navigation */
/* a:focus, */
/* button:focus { */
    /* outline: 2px solid #00c851; */
    /* outline-offset: 2px; */
/* } */

/* Mobile Menu Styles */
.mobile-menu-active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1001;
    padding-top: 80px;
    overflow-y: auto;
}

.mobile-menu-active .nav {
    flex-direction: column;
    padding: 20px;
}

.mobile-menu-active .nav li {
    margin-bottom: 15px;
}

.mobile-menu-active .nav a {
    font-size: 18px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: block;
}

/* Dropdown Styles */
.dropdown-open .dropdown-content {
    display: block !important;
}

.dropdown-item {
    padding: 12px 20px;
    display: block;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-item:hover {
    background: #f8f9fa;
}

/* Header Scroll Effects */
.header-scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.header-hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-success {
    background: #00c851;
}

.notification-error {
    background: #ff4444;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.video-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-close:hover {
    background: rgba(255,255,255,0.2);
}

.video-modal iframe {
    border-radius: 10px;
}

/* Tooltips */
.tooltip {
    position: absolute;
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    z-index: 1000;
    opacity: 0;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Mobile Layout Class */
.mobile-layout {
    grid-template-columns: 1fr !important;
}

/* Enhanced Responsive */
@media (max-width: 1024px) {
    .mobile-menu-active .nav {
        display: flex;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .signup-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .login-dropdown {
        position: relative;
    }

    .login-dropdown-menu {
        left: auto;
        right: 0;
        min-width: 180px;
    }

    .login-dropdown-menu::before {
        left: auto;
        right: 20px;
    }

    .login-btn {
        padding: 6px 10px;
        font-size: 14px;
    }

    .video-modal-content {
        max-width: 95%;
        max-height: 95%;
    }

    .video-modal-close {
        top: -30px;
        right: -30px;
        font-size: 24px;
    }

    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
@media (max-width: 768px) {
    .site-branding {
        width: 30%;
    }
}

/* Prevent scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #00c851;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Toro Challenge Page Styles */
.toro-challenge-page {
    background: #ffffff;
}

/* Hero Section */
.toro-hero-section {
    background: #ffffff;
    padding: 80px 0 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.toro-hero-section .hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

.toro-hero-section .hero-text {
    flex: 1;
    /* max-width: 500px; */
}

.toro-hero-section .hero-text h1 {
    font-size: 56px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 3rem;
    line-height: 64px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
}

.toro-hero-section .hero-image {
    flex: 1;
    text-align: center;
    max-width: 600px;
}

.toro-hero-section .hero-image img {
    max-width: 100%;
    height: auto;
    width: 100%;
}

/* Feature Sections */
.trading-challenge-section {
    background: #323232;
    padding: 40px 0;
    color: #ffffff;
}

.train-confidence-section {
    background: #323232;
    padding: 40px 0;
    color: #ffffff;
}

.priority-one-section {
    background: #323232;
    padding: 40px 0;
    color: #ffffff;
}

.win-win-section {
    background: #323232;
    padding: 40px 0;
    color: #ffffff;
}

.feature-content-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.feature-content-wrapper.reverse {
    flex-direction: row-reverse;
}

.feature-illustration {
    flex: 1;
    text-align: center;
}

.feature-illustration img {
    max-width: 100%;
    height: auto;
}

.feature-content {
    flex: 1;
}

.feature-content.toro-feature-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.feature-content p {
    font-size: 24px;
    /* color: #d1d5db; */
    line-height: 28px;
}

/* Find Plan CTA Section */
.find-plan-cta-section {
    background: #fef3c7;
    padding: 80px 0;
    text-align: center;
}

.find-plan-cta-section .cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.find-plan-cta-section .cta-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
}

.find-plan-cta-section .cta-content .cta-button {
    flex-shrink: 0;
    margin-left: 2rem;
}

/* Benefits Main Section */
.benefits-main-section {
    background: #f9fafb;
    padding: 100px 0;
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 850px;
    margin: 0 auto;
}

.benefits-header h2 {
    font-size: 36px;
    line-height: 41px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.benefits-subtitle {
    font-size: 18px;
    color: #0000006E;
    line-height: 20px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.benefit-item {
    text-align: left;
}

.benefit-item h3 {
    font-size: 24px;
    line-height: 27px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.benefit-item h2 {
    font-size: 18px;
    color: #000000;
    line-height: 20px;
    margin-bottom: 2rem;
    font-weight: 400;
}
.benefit-item:nth-child(2) h2{
margin-bottom: 64px;
}

.benefit-icon {
    margin-top: 1rem;
}

.benefit-icon img {
    /* width: 200px; */
    height: auto;
}

/* Advanced Features Section */
.advanced-features-section {
    background: #EE7B6B;
    padding: 100px 0;
}

.advanced-feature-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.advanced-feature-wrapper.reverse {
    flex-direction: row-reverse;
}

.advanced-feature-wrapper:last-child {
    margin-bottom: 0;
}

.advanced-feature-illustration {
    flex: 1;
    text-align: center;
}

.advanced-feature-illustration img {
    max-width: 100%;
    height: auto;
}

.advanced-feature-content {
    flex: 1;
}

.advanced-feature-content h2 {
    font-size: 36px;
    line-height: 41px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom:14px;
    font-family: 'Montserrat', sans-serif;
}

.advanced-feature-content p {
    font-size: 24px;
    color: #F8F8F8;
    line-height: 28px;
    font-weight: 500;
}

/* Final CTA Section */
.final-cta-section {
    background: #fef3c7;
    padding: 80px 0;
    text-align: center;
}

.final-cta-section .final-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.final-cta-section .final-cta-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
}

.final-cta-section .final-cta-content .cta-button {
    flex-shrink: 0;
    margin-left: 2rem;
}

@media (max-width: 1024px) {
    .toro-hero-section .hero-text h1{
        font-size: 42px;
        line-height: 45px;
    }
    .feature-content.toro-feature-content h2 {
        font-size: 32px;
    }
    .feature-content p {
        font-size: 18px;
    }
    .advanced-feature-content h2{
        font-size: 32px;
    }
    .advanced-feature-content p{
        font-size: 18px;
    }
    .final-cta-section .final-cta-content h3{
        font-size: 22px;
    }
}
/* Mobile Responsive Styles for Toro Challenge */
@media (max-width: 1024px) {
    .toro-hero-section {
        padding: 0px 0 60px 0;
        min-height: auto;
    }

    .toro-hero-section .hero-content {
        flex-direction: column;
        gap: 0rem;
    }

    .toro-hero-section .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .toro-hero-section .hero-text h1 {
        font-size: 32px;
        line-height: 38px;
        text-align: center;
        margin-bottom: 2rem;
        font-weight: 500;
    }

    .toro-hero-section .hero-image {
        max-width: 100%;
    }
    .toro-feature-content{
        text-align: center;
    }

    .feature-content-wrapper,
    .feature-content-wrapper.reverse {
        flex-direction: column-reverse;
        gap: 1rem;
        text-align: center;
    }
    .feature-illustration img,
    .advanced-feature-illustration img,
    .benefit-icon img  {
        max-width: 500px;
        margin: 0 auto;
    }

    .feature-content.toro-feature-content h2 {
        font-size: 22px;
        line-height: 36px;
        margin-bottom: 10px;
        text-align: center;
    }

    .feature-content.toro-feature-content p {
        font-size: 16px;
    }

    .advanced-feature-wrapper,
    .advanced-feature-wrapper.reverse {
        flex-direction: column-reverse;
        gap: 1rem;
        text-align: center;
        margin-bottom: 3rem;
    }

    .advanced-feature-content h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .benefits-header h2 {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 16px;
    }
    .benefits-subtitle{
        font-size: 16px;
    }
    .benefit-item h2{
        font-size: 16px;
    }
    .benefit-item:nth-child(2) h2 {
        margin-bottom: 32px;
    }
    .advanced-feature-content p {
        font-size: 16px;
        line-height: 24px;
    }

    .find-plan-cta-section .cta-content,
    .final-cta-section .final-cta-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .find-plan-cta-section .cta-content h3,
    .final-cta-section .final-cta-content h3 {
        font-size: 22px;
        text-align: center;
    }

    .find-plan-cta-section .cta-content .cta-button,
    .final-cta-section .final-cta-content .cta-button {
        margin-left: 0;
    }

    .toro-hero-section,
    .trading-challenge-section,
    .train-confidence-section,
    .priority-one-section,
    .win-win-section,
    .benefits-main-section,
    .advanced-features-section {
        padding: 40px 0;
    }

    .find-plan-cta-section,
    .final-cta-section {
        padding: 50px 0;
    }
}
@media (max-width: 575px) {
    .feature-illustration img,
    .advanced-feature-illustration img,
    .benefit-icon img  {
        max-width: 100%;
    }
}

/* @media (max-width: 480px) {
    .toro-hero-section {
        padding: 60px 0 40px 0;
    }

    .toro-hero-section .hero-content {
        gap: 2rem;
    }

    .toro-hero-section .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .feature-content h2,
    .advanced-feature-content h2 {
        font-size: 1.5rem;
    }

    .benefits-header h2,
    .find-plan-cta-section .cta-content h3,
    .final-cta-section .final-cta-content h3 {
        font-size: 1.5rem;
    }

    .feature-content p,
    .advanced-feature-content p {
        font-size: 1rem;
    }

    .container {
        padding: 0 20px;
    }

    .advanced-feature-wrapper {
        margin-bottom: 4rem;
    }

    .benefits-grid {
        gap: 2rem;
    }

    .benefit-icon img {
        width: 150px;
    }
} */

/* Plans Page Styles */
.plans-page {
    padding-top: 0;
    background: #ffffff;
}

/* Hero Section Styles */
.hero-section {
    background: #ffffff;
    padding: 4rem 0 3rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-headline {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    font-size: 56px;
    line-height: 80px;
}

.hero-description {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-align: center;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    max-width: 560px;
    margin: 8px auto 10px;
}

/* Payment Toggle within Hero */
.hero-section .payment-toggle-wrapper {
    max-width: 400px;
    margin: 0 auto;
}

.hero-section .payment-toggle {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    max-width:560px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}

.hero-section .payment-option {
    background: #ffffff;
    /* border: 1px solid #e5e5e5; */
    padding: 20px;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    color: #333333;
    flex: 1;
    box-shadow: 0px 0px 10px 1px #efefef;
    min-width: 260px
}

.hero-section .payment-option.active {
    background: #2DAF53;
    color: white;
    border-color: #2DAF53;
    box-shadow: 0 2px 4px rgba(45, 175, 83, 0.3);
}

.hero-section .payment-option:hover:not(.active) {
    background: #f8f9fa;
    color: #2DAF53;
}

.hero-section .payment-note {
    font-size: 1rem;
    color: #000000;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.payment-toggle-section {
    background: #ffffff;
    padding: 80px 0 40px;
    text-align: center;
}

.payment-toggle-wrapper {
    max-width: 400px;
    margin: 0 auto;
}

.payment-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 20px;
    border-radius: 50px;
    padding: 5px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.payment-option {
    background: transparent;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
    color: #666;
    flex: 1;
}

.payment-option.active {
    background: #2DAF53;
    color: white;
}

.payment-option:hover:not(.active) {
    background: #e9ecef;
}

.payment-note {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.plans-cards-section {
    padding: 40px 0 80px;
    background: #ffffff;
    position: relative;
    overflow: visible;
}

.plans-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.plan-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e9ecef;
    text-align: center;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.plan-card.popular {
    border-color: #2DAF53;
    border-width: 2px;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2DAF53;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.plan-level {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.plan-icon {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.plan-pricing {
    text-align: center;
    margin-bottom: 30px;
}

.price-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
}

.original-price {
    font-size: 1.2rem;
    color: #6c757d;
    text-decoration: line-through;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    font-family: 'Montserrat', sans-serif;
}

.price-period {
    font-size: 1.2rem;
    color: #6c757d;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.plan-details {
    margin-bottom: 40px;
    text-align: left;
}

.plan-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f4;
}

.plan-detail:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.95rem;
    color: #6c757d;
    font-family: 'Montserrat', sans-serif;
}

.detail-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    font-family: 'Montserrat', sans-serif;
}

.plan-cta-button {
    width: 100%;
    background: #2DAF53;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-cta-button:hover {
    background: #228b22;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 175, 83, 0.4);
}



/* ==========================================================================
   Help Page Styles
   ========================================================================== */
.container.help-container{
    max-width: 1440px;
}
.help-page {
    padding-top: 0;
    background: #ffffff;
}

/* Help Hero Section */
.help-hero-section {
    background: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
}

.help-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.help-hero-illustration {
    display: flex;
    justify-content: center;
}

.help-hero-illustration svg {
    max-width: 100%;
    height: auto;
}

.help-hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
}

/* Help Search Form */
.help-search-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.search-input-wrapper {
    display: flex;
    background: white;
    border-radius: 40px;
    box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.search-field {
    flex: 1;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    border: 5px solid #fff !important;
    border-radius: 40px;
    padding: 7px 25px 7px 25px;
    z-index: 9;
    background-color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 1px;
}

.search-field::placeholder {
    color: #6c757d;
}

.search-submit {
    color: white;
    border: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0 50px 50px 0;
    padding: 7px 25px 7px 40px;
    margin-left: -25px;
    background-image: linear-gradient(180deg, #2DAF53 0%, #2DAF53 2%);
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    letter-spacing: 1px;
    background-color: #2BC1554F;
}

.search-submit span {
    display: inline-block;
}

/* Getting Started Section */
.getting-started-section {
    padding: 0px 80px;
    margin: 40px auto 80px;
    border-radius: 25px;
    position: relative;
    overflow: visible; /* Changed to allow overflow effect */
    max-width: 1725px;
}
.getting-started-section-bg{

    padding: 120px 0px 70px 120px;
    border-radius: 55px 55px 55px 55px;
}
.help-section-bg-1{
    background: #81CD35;
}
.help-section-bg-2{
    background: #4CC082;
}
.help-section-bg-3{
    background: #00AA63;
}
.help-section-bg-4{
    background: #2DAF53;
}

.getting-started-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.getting-started-content {
    flex: 1;
    color: white;
    width: 65%;
}

.getting-started-content h2 {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.getting-started-content p {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

.getting-started-illustration {
    flex-shrink: 0;
    width:35%;
}

/* Reusable Overflow Image Effect */
.overflow-image-container {
    position: relative;
    overflow: visible;
}

.overflow-image {
    position: absolute;
    bottom: -48px;
    right: 20px;
    width: 200px;
    height: auto;
    object-fit: contain;
    z-index: 10;
}

.overflow-image-left {
    position: absolute;
    bottom: -48px;
    left: 20px;
    width: 200px;
    height: auto;
    object-fit: contain;
    z-index: 10;
}

.overflow-image-center {
    position: absolute;
    bottom: -48px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: auto;
    object-fit: contain;
    z-index: 10;
}

/* Help Page Specific */
.getting-started-illustration-img{
    position: absolute;
   bottom: -48px;
    right:44px;
    object-fit: contain;
    z-index: 1;
}

.getting-started-illustration-img.help-illustration-img-2{
    bottom: 18px;
    right: 80px;
}

.getting-started-illustration svg {
    max-width: 100%;
    height: auto;
}

/* Help Categories Section */
.help-categories-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.help-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.help-category-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e9ecef;
}

.help-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #2DAF53;
}

.category-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.help-category-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.help-category-card p {
    color: #6c757d;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

/* Mobile Responsive Styles */
@media (max-width: 1440px) {
    .getting-started-illustration-img{
        right:0px;
    }
    .getting-started-section-bg {
        padding: 80px 0px 70px 40px;
    }
    .getting-started-illustration-img img{
        max-width: 90%;
    }
    .getting-started-illustration-img.help-illustration-img-2 {
        bottom: 0px;}
}

@media (max-width: 1024px) {
    .help-hero-illustration svg {
        width: 350px;
        height: 260px;
    }

    .getting-started-illustration svg {
        width: 150px;
        height: 150px;
    }

    .help-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Overflow Images Responsive */
    .overflow-image,
    .overflow-image-left,
    .overflow-image-center {
        width: 150px;
        bottom: -30px;
    }

    .getting-started-illustration-img {
        bottom: -30px;
    }
    .getting-started-section {
        padding: 0px 20px;
    }
    .container.help-container{
        padding: 0px;
    }
    .getting-started-section-bg {
        padding: 80px 0px 030px 40px
    }
    .getting-started-content h2{
        font-size: 36px;
    }
    .getting-started-illustration-img{
        width: 264px;
    }
    .getting-started-content p{
        font-size: 15px;
        line-height: 29px;
    }
    .getting-started-illustration-img.help-illustration-img-2{
        bottom: 18px;
        right: 30px;
    }
}

/* Range query removed since mobile breakpoint is now 1024px */


@media (max-width: 767px) {
    .help-hero-section {
        padding: 60px 0 40px;
    }

    .help-hero-content {
        gap: 30px;
    }

    .help-hero-illustration svg {
        width: 300px;
        height: 220px;
    }
    .help-hero-text,.search-input-wrapper,.getting-started-content{
        width: 100%;
    }
    .help-search-form{
        max-width: 100%;
    }

    .help-hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    .getting-started-section {
        margin: 0px ;
        border-radius: 20px;
        padding: 20px 20px;
    }
    .getting-started-wrapper {
        flex-direction: column;
    }
    .getting-started-illustration{
        width: 100%;
    }
    .getting-started-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
        text-align: center;
    }
    .getting-started-content p {
        text-align: center;
        font-size: 15px;
        line-height: 24px;
    }

    .help-categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .help-category-card {
        padding: 30px 20px;
    }

    .help-category-card h3 {
        font-size: 1.2rem;
    }
    .getting-started-section-bg{
        padding: 30px 20px 0px 20px;
        border-radius: 5px 5px 5px 5px;
    }
    .getting-started-illustration-img{
        position: relative;
        bottom: 0px;
        right: 0px;
        z-index: 1;
        margin: 0 auto;
    }
    .getting-started-illustration-img.help-illustration-img-2{
        bottom: 0px;
        right: 0px;
        padding: 0px 0px 35px 0px;
    }
}

@media (max-width: 480px) {
    .help-hero-section {
        padding: 40px 0 30px;
    }

    .help-hero-content {
        gap: 25px;
        padding: 0 15px;
    }

    .help-hero-illustration svg {
        width: 250px;
        height: 180px;
    }

    .help-hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .help-search-form {
        max-width: 100%;
    }

    .search-field {
        padding: 5px 0px 5px 15px;
        font-size: 13px !important;
        line-height: 15px;
        letter-spacing: 0px;
    }

    .search-submit {
        padding: 5px 15px 5px 38px !important;
        font-size: 13px !important;
        line-height: 15px;
        letter-spacing: 0px;
    }

    .getting-started-section {
        border-radius: 16px;
        padding: 30px 0;
        margin: 20px 10px;
    }

    .getting-started-wrapper {
        padding: 0 20px;
    }

    .getting-started-content h2 {
        font-size: 1.6rem;
    }

    .getting-started-content p {
        font-size: 0.95rem;
    }

    .getting-started-illustration svg {
        width: 120px;
        height: 120px;
    }

    .help-categories-section {
        padding: 50px 0;
    }

    .help-categories-grid {
        padding: 0 10px;
    }

    .help-category-card {
        padding: 25px 15px;
    }

    .help-category-card h3 {
        font-size: 1.1rem;
    }

    .help-category-card p {
        font-size: 0.9rem;
    }

    /* Small Mobile Overflow Images */
    .overflow-image,
    .overflow-image-left,
    .overflow-image-center {
        width: 100px;
        bottom: -20px;
    }


}

/* Plans Page Mobile Responsive Styles */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .plans-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .plan-card {
        padding: 30px 25px;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 3rem 0 2rem;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .hero-section .payment-toggle {
        max-width: 280px;
    }

    .hero-section .payment-option {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .payment-toggle-section {
        padding: 60px 0 30px;
    }

    .payment-toggle {
        max-width: 280px;
    }

    .payment-option {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .plans-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .plan-card {
        padding: 30px 20px;
    }

    .plan-name {
        font-size: 1.6rem;
    }

    .current-price {
        font-size: 2.2rem;
    }

    .plan-details {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 0 1.5rem;
    }
    
    .hero-headline {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    
    .hero-section .payment-toggle {
        flex-direction: column;
        gap: 8px;
        max-width: 250px;
    }

    .hero-section .payment-option {
        padding: 12px 16px;
        border-radius: 8px;
    }
    
    .payment-toggle {
        flex-direction: column;
        gap: 8px;
        max-width: 250px;
    }

    .payment-option {
        padding: 12px 16px;
        border-radius: 8px;
    }

    .plans-cards-container {
        gap: 15px;
        padding: 0 10px;
    }

    .plan-card {
        padding: 25px 15px;
    }

    .plan-name {
        font-size: 1.4rem;
    }

    .current-price {
        font-size: 2rem;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .mobile-menu-toggle,
    .back-to-top,
    .video-modal,
    .notification {
        display: none !important;
    }

    .hero {
        background: none !important;
        color: black !important;
    }

    .challenge-section {
        background: none !important;
        color: black !important;
    }
}


/* table css */
.title-desc-p{
    max-width: 560px;
    margin: 0px auto;
}

.title-desc-p h6{
    margin-bottom: 10px;
}

@media screen and (max-width:768px){
    .title-desc-p h6{
  margin-bottom: 0px;
}
}

@media screen and (max-width:575px){
   .title-desc-p{
    max-width: 400px;
}
}
@media screen and (min-width: 376px) and (max-width: 575px) {
   .title-desc-p {
    padding:0px 10px;
  }
}/* End custom CSS */
/* Start custom CSS for column, class: .elementor-element-d78540b */.title-story > .elementor-widget-wrap{
    display: flex;
    justify-content: center;
    align-items: center
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0f69d8f */input[name="quarterly_new"]:checked + label {
  background-color: #2DAF53;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px 1px #efefef;
  color: #fff !important;
}

.trade_monthly label,
.trade_quarterly label{
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 1px #efefef;
    width: 260px;
    text-align: center;
        font-weight: 500;
}

.trade_monthly,.trade_quarterly{
    padding: 0px !important;
}

#quarterly_new{
    height: 0px;
    opacity: 0;
}

.radio-btn{
    display: none
}
.custom_trading{
    gap: 20px;
}

@media screen and (max-width:767px){
   .trade_monthly label,
   .trade_quarterly label{
       padding:10px;
       font-size:14px !important;
   }
   input[name="quarterly_new"]:checked + label {
  padding: 10px;
   }
   
   .trade_quarterly label{
       width:160px;
   }
   
   .trade_monthly label{
       width:100px;
   }}/* End custom CSS */
/* Start custom CSS for column, class: .elementor-element-33e6a12 */.quarterly_template {
  display: none;
}/* End custom CSS */
/* Start custom CSS for column, class: .elementor-element-9f03336 */@media only screen and (min-width: 1051px) and (max-width: 1120px) {
    
    .elementor-4005 .elementor-element.elementor-element-f6ec7df > .elementor-element-populated,.elementor-4005 .elementor-element.elementor-element-50937a5 > .elementor-element-populated,.elementor-4005 .elementor-element.elementor-element-6fc06a2 > .elementor-element-populated {
            padding: 20px 15.5px 30px 15.5px;
}
}

.position-text{
    position: sticky;
    left: 0px;
    background: white;
    z-index: 2;
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-dd3aad1 */.info-tool.elementor-inner-section{
display: flex;
width: 29% !important;
}

.info-tool .elementor-container{
    max-width: 100% !important;
}

@media screen and (max-width:1024px){
    .info-tool.elementor-inner-section{
width: 36% !important;
}

}


@media screen and (max-width:768px){
   .info-tool.elementor-inner-section{
width: 270px !important;
}
.info-tool .elementor-container{
    margin:0px;
}
}

@media screen and (max-width:374px){
    .info-tool.elementor-section{
width: 250px !important;
}
}

.info-tool > .elementor-column-gap-default{
    margin: 0px
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-6972561 */@media screen and (max-width:768px){
del{
    font-size:16px !important;
}
}/* End custom CSS */
/* Start custom CSS for button, class: .elementor-element-8852af5 */.get-start-btn .elementor-button{
    width: 100%
}
@media screen and (max-width:768px){
.get-start-btn .elementor-button{
    padding:10px;
}
}

@media screen and (max-width:374px){
.get-start-btn .elementor-button{
    font-size:12px !important;
}
}/* End custom CSS */
/* Start custom CSS for heading, class: .elementor-element-26815e4 */@media screen and (max-width:374px){
.heading-text .elementor-heading-title{
    font-size:11px !important;
}
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-867a30b */@media screen and (max-width:768px){
del{
    font-size:16px !important;
}
}/* End custom CSS */
/* Start custom CSS for button, class: .elementor-element-c263878 */.get-start-btn .elementor-button{
    width: 100%
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-6f7394e */@media screen and (max-width:768px){
del{
    font-size:16px !important;
}
}/* End custom CSS */
/* Start custom CSS for button, class: .elementor-element-c01ba72 */.get-start-btn .elementor-button{
    width: 100%
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-97136bc */.inner-width{
    overflow-x: auto;
    width: 66%;
}
.inner-width .elementor-container{
    flex-wrap: nowrap;
}/* End custom CSS */
/* Start custom CSS for column, class: .elementor-element-f002451 */.elementor-51740 .elementor-element.elementor-element-f002451 > .elementor-widget-wrap {
  flex-wrap: nowrap;
}/* End custom CSS */
/* Start custom CSS for column, class: .elementor-element-91986e2 */@media only screen and (min-width: 1051px) and (max-width: 1120px) {
    
    .elementor-4005 .elementor-element.elementor-element-f6ec7df > .elementor-element-populated,.elementor-4005 .elementor-element.elementor-element-50937a5 > .elementor-element-populated,.elementor-4005 .elementor-element.elementor-element-6fc06a2 > .elementor-element-populated {
            padding: 20px 15.5px 30px 15.5px;
}
}

.position-text{
    position: sticky;
    left: 0px;
    background: white;
    z-index: 2;
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-a8d3d15 */.info-tool.elementor-inner-section{
display: flex;
width: 29% !important;
}

.info-tool .elementor-container{
    max-width: 100% !important;
}

@media screen and (max-width:1024px){
    .info-tool.elementor-inner-section{
width: 36% !important;
}

}


@media screen and (max-width:768px){
   .info-tool.elementor-inner-section{
width: 270px !important;
}
.info-tool .elementor-container{
    margin:0px;
}
}

@media screen and (max-width:374px){
    .info-tool.elementor-section{
width: 250px !important;
}
}

.info-tool > .elementor-column-gap-default{
    margin: 0px
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-ff952a8 */@media screen and (max-width:768px){
del{
    font-size:16px !important;
}
}/* End custom CSS */
/* Start custom CSS for button, class: .elementor-element-67e2761 */.get-start-btn .elementor-button{
    width: 100%
}
@media screen and (max-width:768px){
.get-start-btn .elementor-button{
    padding:10px;
}
}

@media screen and (max-width:374px){
.get-start-btn .elementor-button{
    font-size:12px !important;
}
}/* End custom CSS */
/* Start custom CSS for heading, class: .elementor-element-ed9cea0 */@media screen and (max-width:374px){
.heading-text .elementor-heading-title{
    font-size:11px !important;
}
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-c8e9ce9 */@media screen and (max-width:768px){
del{
    font-size:16px !important;
}
}/* End custom CSS */
/* Start custom CSS for button, class: .elementor-element-2337b94 */.get-start-btn .elementor-button{
    width: 100%
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-d48d4c3 */@media screen and (max-width:768px){
del{
    font-size:16px !important;
}
}/* End custom CSS */
/* Start custom CSS for button, class: .elementor-element-fcf2cd7 */.get-start-btn .elementor-button{
    width: 100%
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-0045676 */.inner-width{
    overflow-x: auto;
    width: 66%;
}
.inner-width .elementor-container{
    flex-wrap: nowrap;
}/* End custom CSS */
/* Start custom CSS for column, class: .elementor-element-299b8dd */.elementor-51740 .elementor-element.elementor-element-299b8dd > .elementor-widget-wrap {
  flex-wrap: nowrap;
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-5302dbc */.info-tool.elementor-inner-section{
display: flex;
width: 29% !important;
}

.info-tool .elementor-container{
    max-width: 100% !important;
}

@media screen and (max-width:1024px){
    .info-tool.elementor-inner-section{
width: 36% !important;
}

}


@media screen and (max-width:768px){
   .info-tool.elementor-inner-section{
width: 270px !important;
}
.info-tool .elementor-container{
    margin:0px;
}
}

@media screen and (max-width:374px){
    .info-tool.elementor-section{
width: 250px !important;
}
}

.info-tool > .elementor-column-gap-default{
    margin: 0px
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-37b29e1 */@media screen and (min-width:600px) {
     .table-scrollable thead tr th:nth-of-type(1){
  width: 45%;
 }

}
.desc{
  margin-top: 7px;
}
table th,table td{
    border: 0px
}

table tbody>tr:nth-child(odd)>td, table tbody>tr:nth-child(odd)>th,
table tbody tr:hover>td, table tbody tr:hover>th
{
    background-color:white !important;
}

tr:first-child th {
    border-top: 0px !important;
}

.th-first{
    text-align: left !important;
}
.th-title{
 line-height: 16px;   
}

.comparison-wrapper {
  display: flex;
  font-family: Montserrat, sans-serif;
  margin-bottom: 0px !important;
}

.first-column {
  flex: 0 0 303px;
}

.table-fixed,
.table-scrollable {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

.table-responsive-wrapper {
  width: 100%;
  overflow-x: auto;
}

.table-header {
  position: sticky;
  top: 0;
  background-color: white;
  height: 88px;
  padding: 19px 15px;
  box-sizing: border-box;
  border-bottom: 1px solid #2BC155;
  color: black;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
 white-space: nowrap;
  overflow: visible;
}

.main-title-border .table-cell{
    border-bottom: none;
    padding-top: 30px;
}


.table-cell {
  height: 88px;
  padding: 19px 15px;
  box-sizing: border-box;
  border-bottom: 1px solid #2BC155;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #777777;
  vertical-align: middle;
}

.first-column .table-cell {
  text-align: left;
  word-wrap: break-word;
}

.main-title{
    color: black !important;
    font-size: 20px !important;
    line-height: 22px !important;
}

.title {
  color: #666;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
}

.desc {
  color: #777777;
  font-size: 10px;
  font-weight: 400;
  overflow: hidden;
}

.green {
  color: #2BC155;
  font-size: 16px;
  font-weight: normal;
}

.gray {
  color: #d9d9d9;
  font-size: 16px;
}

.gray-text {
  color: #777777;
  font-size: 14px;
  font-weight: 400;
}

.has-link {
  position: relative;
  padding: 0;
}

.cell-link {
  display: block;
  height: 100%;
  padding: 19px 15px;
  text-decoration: none;
  color: inherit;
}

.cell-link .desc {
  color: #777777;
  font-size: 10px;
  font-weight: 400;
  position: relative; 
  padding-right: 0px; 
  display: inline-block;
}

.hover-arrow {
  position: static; 
  display: inline-block; 
  /*font-size: 18px;*/
  color: #2BC155;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(-5px);
  pointer-events: none;
  vertical-align: middle; 
  margin-left: 5px; 
}

.cell-link:hover .hover-arrow {
  opacity: 1;
  transform: translateX(0);
}


.table-fixed thead th,
.table-scrollable thead th {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: white;
}

.table-fixed thead th,
.table-scrollable thead th {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.table-header,
.first-header{
  position: relative;
}

.table-header::after,
.first-header::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  height: 1px;
  width: 100%;
  opacity: 1;
  background-color:#2BC155;
}

.table-fixed thead th,
.table-scrollable thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: white;
}

.catrgory-first{
    width: 303px;
    text-align: left;
}
.center-heading{
    display: flex  ;
    align-items: center;
}

@media screen and (max-width:767px) {
    .first-column tr th{
        position:relative !important;
    }
    .first-column{
        flex: 0 0 265px;
    }
   .second-column {
  overflow-x: auto;
  overflow-y: auto; 
  max-width: 808px;
  overflow-y: auto; 
}
.table-header{
   width:100px;   
  }
  .cell-link:hover .hover-arrow {
    opacity: 0;
}

.catrgory-first{
        position: sticky;
        left: 0;
        z-index: 5 !important;
    background-color:white !important;    
}
.cell-link .desc {
  padding-right: 0px
}
.catrgory-first{
    width: 225px;
}

}

@media screen and (max-width:575px) {
   .title{
       font-size:13px;
   }
  .catrgory-first{
    width: 165px !important;
}
.main-title-border .table-cell{
    padding-top: 0px;
}
}/* End custom CSS */
/* Start custom CSS */.cust_adv_tabs ul.eael-tab-inline-icon{
    width: fit-content;
    border:1px solid #00AA63;
    border-radius: 50px;
    padding: 8px;
}
#monthly-tab, #quarterly-tab{
    padding: 20px 0px!important;
}
.Micro_icon01 svg {
        width: 199px;
    height: 66px;
    object-fit: contain;
    object-position: 13% 12%;
}
@media screen and (max-width:1130px){
    .cust_text{
        left:0px!important;
    right:0px!important;
    position:unset!important;
}
.cust_heading{
    font-size: 24px;
    line-height: 30px;
}
}


@media screen and (max-width:767px){
.cust_adv_tabs ul.eael-tab-inline-icon{
    width:unset;
}
}/* End custom CSS */