.elementor-147 .elementor-element.elementor-element-bd5adc8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}body.elementor-page-147{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}@media(min-width:768px){.elementor-147 .elementor-element.elementor-element-bd5adc8{--width:100%;}}/* Start custom CSS */.wd-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        .wd-header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .wd-header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .wd-logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .wd-logo i {
            margin-right: 10px;
            font-size: 2rem;
        }
        
        .wd-nav ul {
            display: flex;
            list-style: none;
        }
        
        .wd-nav ul li {
            margin-left: 25px;
        }
        
        .wd-nav ul li a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .wd-nav ul li a:hover {
            color: var(--primary-color);
        }
        
        .wd-btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--white);
            padding: 10px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .wd-btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(61, 153, 67, 0.3);
        }
        
        /* Hero Section - Enhanced */
        .wd-hero {
            background: linear-gradient(135deg, rgba(61, 153, 67, 0.95), rgba(44, 122, 49, 0.9)), url('https://images.unsplash.com/photo-1556740738-b6a63e27c4df?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
            color: var(--white);
            padding: 180px 0 120px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .wd-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            z-index: 1;
        }
        
        .wd-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to top, var(--white), transparent);
            z-index: 1;
        }
        
        .wd-hero-content {
            position: relative;
            z-index: 2;
        }
        
        .wd-hero-badge {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            margin-bottom: 25px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            animation: fadeInDown 1s ease-out;
        }
        
        .wd-hero h1 {
            font-size: 4rem;
            margin-bottom: 25px;
            font-weight: 700;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            animation: fadeInUp 1s ease-out 0.2s both;
        }
        
        .wd-hero-subtitle {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 40px;
            opacity: 0.95;
            animation: fadeInUp 1s ease-out 0.4s both;
        }
        
        .wd-hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.6s both;
        }
        
        .wd-hero .wd-btn-primary {
            background-color: var(--white);
            color: var(--primary-color);
            font-size: 1.1rem;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 700;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }
        
        .wd-hero .wd-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            background-color: rgba(255, 255, 255, 0.95);
        }
        
        .wd-hero .wd-btn-secondary {
            background-color: transparent;
            color: var(--white);
            font-size: 1.1rem;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 700;
            border: 2px solid var(--white);
            transition: all 0.3s ease;
        }
        
        .wd-hero .wd-btn-secondary:hover {
            background-color: var(--white);
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .wd-hero-stats {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin-top: 70px;
            animation: fadeInUp 1s ease-out 0.8s both;
        }
        
        .wd-hero-stat {
            text-align: center;
        }
        
        .wd-hero-stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .wd-hero-stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        /* Features Section */
        .wd-features {
            padding: 100px 0;
            background-color: var(--light-bg);
        }
        
        .wd-section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .wd-section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .wd-section-title p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            color: #666;
        }
        
        .wd-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .wd-feature-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        
        .wd-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .wd-feature-icon {
            background-color: rgba(61, 153, 67, 0.1);
            color: var(--primary-color);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .wd-feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* How It Works Section */
        .wd-how-it-works {
            padding: 100px 0;
        }
        
        .wd-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .wd-step {
            text-align: center;
            position: relative;
        }
        
        .wd-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 35px;
            right: -15%;
            width: 30%;
            height: 2px;
            background-color: var(--primary-color);
        }
        
        .wd-step-number {
            background-color: var(--primary-color);
            color: var(--white);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            font-weight: bold;
        }
        
        .wd-step h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* CTA Section */
        .wd-cta {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 100px 0;
            text-align: center;
        }
        
        .wd-cta h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .wd-cta p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .wd-cta .wd-btn {
            background-color: var(--white);
            color: var(--primary-color);
            font-size: 1.2rem;
            padding: 15px 35px;
        }
        
        .wd-cta .wd-btn:hover {
            background-color: rgba(255, 255, 255, 0.9);
        }
        
        /* Footer */
        .wd-footer {
            background-color: #2c3e50;
            color: var(--white);
            padding: 50px 0 20px;
        }
        
        .wd-footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .wd-footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .wd-footer-column ul {
            list-style: none;
        }
        
        .wd-footer-column ul li {
            margin-bottom: 10px;
        }
        
        .wd-footer-column ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .wd-footer-column ul li a:hover {
            color: var(--primary-color);
        }
        
        .wd-copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        
        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .wd-hero h1 {
                font-size: 3.2rem;
            }
            
            .wd-hero-subtitle {
                font-size: 1.2rem;
            }
            
            .wd-section-title h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .wd-header-container {
                flex-direction: column;
            }
            
            .wd-nav ul {
                margin-top: 15px;
            }
            
            .wd-nav ul li {
                margin: 0 10px;
            }
            
            .wd-hero {
                padding: 140px 0 100px;
            }
            
            .wd-hero h1 {
                font-size: 2.5rem;
            }
            
            .wd-hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .wd-hero-stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .wd-step:not(:last-child)::after {
                display: none;
            }
        }
        
        @media (max-width: 576px) {
            .wd-hero h1 {
                font-size: 2rem;
            }
            
            .wd-hero-subtitle {
                font-size: 1.1rem;
            }
            
            .wd-section-title h2 {
                font-size: 1.8rem;
            }
            
            .wd-cta h2 {
                font-size: 2rem;
            }
        }/* End custom CSS */