.elementor-307 .elementor-element.elementor-element-6642f70{--display:flex;--position:fixed;--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;--justify-content:center;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;top:0px;overflow:visible;}.elementor-307 .elementor-element.elementor-element-6642f70:not(.elementor-motion-effects-element-type-background), .elementor-307 .elementor-element.elementor-element-6642f70 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}body:not(.rtl) .elementor-307 .elementor-element.elementor-element-6642f70{left:0px;}body.rtl .elementor-307 .elementor-element.elementor-element-6642f70{right:0px;}.elementor-307 .elementor-element.elementor-element-1c9fabe{width:100%;max-width:100%;top:-1px;z-index:1;}.elementor-307 .elementor-element.elementor-element-1c9fabe > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-307 .elementor-element.elementor-element-1c9fabe.elementor-element{--align-self:center;}body:not(.rtl) .elementor-307 .elementor-element.elementor-element-1c9fabe{left:0px;}body.rtl .elementor-307 .elementor-element.elementor-element-1c9fabe{right:0px;}.elementor-307 .elementor-element.elementor-element-061d717{--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;overflow:visible;}.elementor-307 .elementor-element.elementor-element-dd2ee63 > .elementor-widget-container{margin:0px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-dd2ee63 */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.7;
            color: var(--gray-700);
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
                        background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--gray-200);
            z-index: 1000;
            transition: all 0.4s ease;
            min-height: 100px;
            padding-top: 20px;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0rem;
            text-decoration: none;
            width: 160px;
            height: 50px;
            padding: 0px;
            
        }

        .logo-icon {
            width: 40px;
            background: var(--gradient-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 800;
            font-size: 1.2rem;
        }

        .logo-text {
            height: 2rem;
            padding-bottom: 30px;
        }

        .logo-subtitle {
            font-size: 0.8rem;
            color: var(--primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding-bottom: 0px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--gray-700);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .cta-nav {
            background: var(--gradient-primary);
            color: white !important;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
        }

        .cta-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
        }


        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0a0f1c 0%, #1a202c 50%, #2d3748 100%);
            color: var(--white);
            padding: 8rem 2rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(0, 102, 204, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 204, 102, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            text-align: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(0, 204, 102, 0.2);
            border: 1px solid rgba(0, 204, 102, 0.3);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            font-weight: 400;
            line-height: 1.6;
            color: var(--gray-400);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 4rem;
        }

        .btn-hero-primary {
            background: var(--primary-dark);
            color: white !important;
            padding: 1.25rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: 0 8px 32px rgba(0, 204, 94, 0.06);
        }

        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(176, 213, 245, 0.6);
        }

        .btn-hero-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white !important;
            padding: 1.25rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(3px);
            box-shadow: 0 12px 40px rgba(176, 213, 245, 0.6);
        }

        /* Trust Bar */
        .trust-bar {
            background: var(--white);
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            margin-top: -2rem;
            position: relative;
            border-radius: 15px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            text-align: center;
        }

        .trust-item {
            padding: 1rem;
        }

        .trust-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--secondary);
            display: block;
            margin-bottom: 0.5rem;
        }

        .trust-label {
            font-size: 1rem;
            color: var(--gray-700);
            font-weight: 600;
        }

        /* Problems Section */
        .problems {
            padding: 6rem 2rem;
            background: var(--gray-100);
        }

        .problems-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .problems-title {
            font-size: 3rem;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 1.5rem;
        }

        .problems-subtitle {
            font-size: 1.25rem;
            color: var(--gray-600);
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .problems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .problem-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            text-align: left;
            border-left: 4px solid var(--accent);
        }

        .problem-icon {
            width: 3rem;
            height: 3rem;
            background: var(--gradient-accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .problem-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .problem-card p {
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* Solution Section */
        .solution {
            padding: 6rem 2rem;
            background: var(--white);
        }

        .solution-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .solution-title {
            font-size: 3rem;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 1.5rem;
        }

        .solution-subtitle {
            font-size: 1.25rem;
            color: var(--gray-600);
            margin-bottom: 4rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .solution-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-bottom: 4rem;
        }

        .solution-feature {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            text-align: left;
        }

        .solution-feature-icon {
            width: 3rem;
            height: 3rem;
            background: var(--gradient-success);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .solution-feature h4 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .solution-feature p {
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* Packages Section */
        .packages {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
        }

        .packages-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .packages-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .packages-title {
            font-size: 3rem;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 1.5rem;
        }

        .packages-subtitle {
            font-size: 1.25rem;
            color: var(--gray-600);
            max-width: 600px;
            margin: 0 auto;
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .package-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            border: 2px solid transparent;
        }

        .package-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .package-card.featured {
            border-color: var(--secondary);
            transform: scale(1.05);
        }

        .package-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-success);
            color: white !important);
            padding: 0.5rem 2rem;
            border-radius: 0 0 15px 15px;
            font-size: 0.875rem;
            font-weight: 700;
        }

        .package-header {
            padding: 2.5rem 2rem 0;
            text-align: center;
        }

        .package-name {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .package-subtitle {
            font-size: 0.875rem;
            color: var(--primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
        }

        .package-price {
            margin-bottom: 1.5rem;
        }

        .package-price-amount {
            font-size: 3rem;
            font-weight: 900;
            color: var(--dark);
        }

        .package-price-period {
            font-size: 1.25rem;
            color: var(--gray-600);
        }

        .package-price-range {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
        }

        .package-description {
            color: var(--gray-600);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .package-body {
            padding: 0 2rem 2.5rem;
        }

        .package-features {
            list-style: none;
            margin-bottom: 2.5rem;
        }

        .package-feature {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            color: var(--gray-700);
        }

        .package-feature-icon {
            width: 20px;
            height: 20px;
            color: var(--secondary);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .package-ideal {
            background: var(--gray-100);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }

        .package-ideal strong {
            color: var(--dark);
        }

        .package-ideal-text {
            font-size: 0.875rem;
            color: var(--gray-600);
            font-style: italic;
        }

        .package-button {
            width: 100%;
            padding: 1.25rem;
            background: var(--gradient-primary);
            color: white !important;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .package-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
        }

        .package-card.featured .package-button {
            
        }

        .package-card.featured .package-button:hover {
            box-shadow: 0 8px 25px rgba(0, 204, 102, 0.4);
        }

        /* Why Choose Us */
        .why-choose {
            padding: 6rem 2rem;
            background: var(--dark);
            color: var(--white);
        }

        .why-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .why-title {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 4rem;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .why-item {
            text-align: center;
        }

        .why-icon {
            width: 4rem;
            height: 4rem;
            background: var(--gradient-success);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
        }

        .why-item h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--white);
        }

        .why-item p {
            color: var(--gray-400);
            line-height: 1.7;
        }

        /* Testimonials */
        .testimonials {
            padding: 6rem 2rem;
            background: var(--white);
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: left;
        }

        .testimonials-title {
            font-size: 3rem;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 4rem;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .testimonial-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
            border-left: 4px solid var(--secondary);
             display: flex;
             flex-direction: column;
             height: 100%;
        }

        .testimonial-quote {
            font-size: 1.125rem;
            color: var(--gray-700);
            margin-bottom: 1.5rem;
            line-height: 1.7;
            font-style: italic;
            flex-grow: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
        }

        .testimonial-info h4 {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.25rem;
        }

        .testimonial-info p {
            color: var(--gray-600);
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient-success);
            color: var(--white);
            padding: 6rem 2rem;
            text-align: center;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            color: var(--primary-dark);
        }

        .cta-subtitle {
            font-size: 1.25rem;
            margin-bottom: 3rem;
            opacity: 0.95;
            color: var(--primary-dark);
        }

        .cta-button {
            background: var(--accent);
            color: white !important;
            padding: 1.5rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.2rem;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        }

        /* Footer */
        .footer {
            background: var(--gray-900);
            color: var(--white);
            padding: 3rem 2rem 1rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-text {
            color: var(--gray-400);
            margin-bottom: 2rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .footer-links a {
            color: var(--gray-400);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .footer-bottom {
            border-top: 1px solid var(--gray-800);
            padding-top: 1rem;
            color: var(--gray-400);
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .packages-title, .problems-title, .solution-title, .why-title, .testimonials-title, .cta-title {
                font-size: 2rem;
            }

            .packages-grid {
                grid-template-columns: 1fr;
            }

            .package-card.featured {
                transform: none;
            }

            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Animations */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.4s; }
        .stagger-5 { transition-delay: 0.5s; }
        .stagger-6 { transition-delay: 0.6s; }/* End custom CSS */