:root {
                --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
                --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
                --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
                --warning-gradient: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
                --info-gradient: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);

                --white-bg: #ffffff;
                --light-bg: #f8fafc;
                --card-bg: #ffffff;
                --border-light: rgba(0, 0, 0, 0.08);
                --border-medium: rgba(0, 0, 0, 0.12);
                --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.04);
                --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.08);
                --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.12);

                --text-primary: #1a1a1a;
                --text-secondary: #6b7280;
                --text-muted: #9ca3af;
            }

            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            body {
                background: var(--light-bg);
                font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
                color: var(--text-primary);
                line-height: 1.7;
            }

            /* Hero Section */
            .hero-section {
                background: var(--primary-gradient);
                padding: 120px 0 80px;
                position: relative;
                overflow: hidden;
            }

            .hero-section::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
                opacity: 0.3;
            }

            .hero-content {
                position: relative;
                z-index: 2;
                text-align: center;
                color: white !important;
                
            }
            .hero-content p {
                color: rgb(230, 230, 230) !important;
            }

            .hero-title {
                font-size: 3.5rem;
                font-weight: 800;
                margin-bottom: 25px;
                line-height: 1.2;
                text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
                color: white !important;
            }

            .hero-background {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                opacity: 0.2;
                z-index: 1;
            }

            /* Features Section */
            .features-section {
                padding: 100px 0;
                background: var(--white-bg);
            }

            .feature-item {
                margin-bottom: 100px;
                display: flex;
                align-items: center;
                gap: 60px;
            }

            .feature-item:last-child {
                margin-bottom: 0;
            }

            .feature-image {
                flex: 1;
                position: relative;
            }

            .feature-img-container {
                position: relative;
                border-radius: 24px;
                overflow: hidden;
                box-shadow: var(--shadow-heavy);
                transition: all 0.3s ease;
            }

            .feature-img-container:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            }

            .feature-img-container::before {
                content: '';
                position: absolute;
                top: -20px;
                right: -20px;
                width: 100px;
                height: 100px;
                border-radius: 50%;
                z-index: -1;
                transition: all 0.3s ease;
            }

            .feature-item:nth-child(odd) .feature-img-container::before {
                background: var(--secondary-gradient);
            }

            .feature-item:nth-child(even) .feature-img-container::before {
                background: var(--accent-gradient);
            }

            .feature-item:nth-child(3n) .feature-img-container::before {
                background: var(--success-gradient);
            }

            .feature-img {
                width: 100%;
                height: 400px;
                object-fit: cover;
                transition: transform 0.3s ease;
            }

            .feature-img-container:hover .feature-img {
                transform: scale(1.05);
            }

            .feature-content {
                flex: 1;
                padding: 0 20px;
            }

            .feature-title {
                font-size: 2.2rem;
                font-weight: 700;
                margin-bottom: 30px;
                background: var(--primary-gradient);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                line-height: 1.3;
            }

            .feature-point {
                display: flex;
                align-items: flex-start;
                gap: 20px;
                margin-bottom: 25px;
                padding: 20px;
                background: var(--light-bg);
                border-radius: 16px;
                transition: all 0.3s ease;
            }

            .feature-point:hover {
                background: var(--white-bg);
                box-shadow: var(--shadow-medium);
                transform: translateX(10px);
            }

            .feature-icon {
                width: 50px;
                height: 50px;
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: 1.2rem;
                flex-shrink: 0;
                transition: all 0.3s ease;
            }

            .feature-point:nth-child(odd) .feature-icon {
                background: var(--primary-gradient);
            }

            .feature-point:nth-child(even) .feature-icon {
                background: var(--secondary-gradient);
            }

            .feature-point:nth-child(3n) .feature-icon {
                background: var(--accent-gradient);
            }

            .feature-point:hover .feature-icon {
                transform: scale(1.1);
            }

            .feature-text {
                color: var(--text-secondary);
                font-size: 1.1rem;
                line-height: 1.6;
            }

            .feature-text b {
                color: var(--text-primary);
                font-weight: 600;
            }

            .feature-list {
                list-style: none;
                padding: 0;
            }

            .feature-list li {
                display: flex;
                align-items: center;
                gap: 10px;
                margin-bottom: 8px;
                color: var(--text-secondary);
            }

            .feature-list li::before {
                content: '→';
                color: #667eea;
                font-weight: bold;
                font-size: 1.1rem;
            }

            /* Testimonials Section */
            .testimonials-section {
                padding: 100px 0;
                background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(240, 147, 251, 0.05));
            }

            .testimonials-title {
                text-align: left;
                margin-bottom: 50px;
            }

            .testimonials-title h2 {
                font-size: 2.5rem;
                font-weight: 800;
                background: var(--primary-gradient);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                margin-bottom: 15px;
            }

            .testimonials-title p {
                font-size: 1.2rem;
                color: var(--text-secondary);
            }

            .testimonial-card {
                background: var(--white-bg);
                border-radius: 20px;
                padding: 40px 35px;
                box-shadow: var(--shadow-light);
                border: 1px solid var(--border-light);
                transition: all 0.3s ease;
                height: 100%;
                position: relative;
                overflow: hidden;
            }

            .testimonial-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 4px;
                background: var(--primary-gradient);
            }

            .testimonial-card:hover {
                transform: translateY(-8px);
                box-shadow: var(--shadow-heavy);
            }

            .testimonial-avatar {
                width: 80px;
                height: 80px;
                border-radius: 50%;
                object-fit: cover;
                margin-bottom: 25px;
                border: 4px solid var(--light-bg);
                transition: all 0.3s ease;
            }

            .testimonial-card:hover .testimonial-avatar {
                transform: scale(1.1);
                border-color: rgba(102, 126, 234, 0.3);
            }

            .testimonial-text {
                font-size: 1.1rem;
                color: var(--text-secondary);
                margin-bottom: 25px;
                line-height: 1.7;
                font-style: italic;
            }

            .testimonial-author {
                font-size: 1.1rem;
                font-weight: 700;
                color: var(--text-primary);
                margin-bottom: 5px;
            }

            .testimonial-role {
                font-size: 0.95rem;
                color: var(--text-muted);
            }

            /* Contact Section */
            .contact-section {
                padding: 100px 0;
                background: var(--white-bg);
            }

            .contact-header {
                text-align: center;
                margin-bottom: 60px;
            }

            .contact-title {
                font-size: 2.5rem;
                font-weight: 700;
                background: var(--primary-gradient);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                margin-bottom: 20px;
                line-height: 1.3;
            }

            .contact-phone {
                font-size: 2rem;
                font-weight: 700;
                background: var(--secondary-gradient);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                text-decoration: none;
                transition: all 0.3s ease;
            }

            .contact-phone:hover {
                transform: scale(1.05);
                text-decoration: none;
            }

            .contact-form {
                background: var(--card-bg);
                border-radius: 24px;
                padding: 50px 40px;
                box-shadow: var(--shadow-medium);
                border: 1px solid var(--border-light);
            }

            .form-group {
                margin-bottom: 25px;
            }

            .form-control {
                width: 100%;
                padding: 18px 24px;
                border: 2px solid var(--border-light);
                border-radius: 16px;
                font-size: 1rem;
                background: var(--light-bg);
                color: var(--text-primary);
                transition: all 0.3s ease;
                font-weight: 500;
            }

            .form-control:focus {
                outline: none;
                border-color: rgba(102, 126, 234, 0.4);
                background: var(--white-bg);
                box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.1);
                transform: translateY(-2px);
            }

            .form-control::placeholder {
                color: var(--text-muted);
                font-weight: 400;
            }

            .submit-btn {
                background: var(--secondary-gradient);
                color: white;
                border: none;
                padding: 18px 40px;
                border-radius: 50px;
                font-size: 1.1rem;
                font-weight: 700;
                cursor: pointer;
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
                position: relative;
                overflow: hidden;
            }

            .submit-btn::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
                transition: left 0.6s;
            }

            .submit-btn:hover {
                transform: translateY(-3px);
                box-shadow: 0 15px 40px rgba(240, 147, 251, 0.4);
            }

            .submit-btn:hover::before {
                left: 100%;
            }

            /* CTA Section */
            .cta-section {
                padding: 100px 0;
                background: var(--accent-gradient);
                position: relative;
                overflow: hidden;
                color: white;
            }

            .cta-section::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
                opacity: 0.4;
            }

            .cta-content {
                position: relative;
                z-index: 2;
                display: flex;
                align-items: center;
                gap: 60px;
            }

            .cta-image {
                flex: 1;
            }

            .cta-img {
                width: 100%;
                height: 300px;
                object-fit: cover;
                border-radius: 20px;
            }

            .cta-text {
                flex: 1;
            }

            .cta-title {
                font-size: 2.5rem;
                font-weight: 800;
                margin-bottom: 20px;
                line-height: 1.2;
            }

            .cta-subtitle {
                font-size: 1.3rem;
                font-weight: 600;
                margin-bottom: 15px;
                opacity: 0.9;
            }

            .cta-description {
                font-size: 1.1rem;
                margin-bottom: 30px;
                opacity: 0.8;
                line-height: 1.6;
            }

            .cta-btn {
                display: inline-flex;
                align-items: center;
                gap: 12px;
                padding: 16px 32px;
                background: rgba(255, 255, 255, 0.15);
                color: white;
                text-decoration: none;
                border-radius: 50px;
                font-weight: 600;
                font-size: 1.1rem;
                backdrop-filter: blur(20px);
                border: 2px solid rgba(255, 255, 255, 0.2);
                transition: all 0.3s ease;
            }

            .cta-btn:hover {
                background: rgba(255, 255, 255, 0.25);
                transform: translateY(-3px);
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
                color: white;
                text-decoration: none;
            }

            /* Responsive Design */
            @media (max-width: 768px) {
                .hero-title {
                    font-size: 2.5rem;
                }

                .feature-item {
                    flex-direction: column;
                    gap: 40px;
                    margin-bottom: 80px;
                }

                .feature-content {
                    padding: 0;
                }

                .feature-title {
                    font-size: 1.8rem;
                }

                .cta-content {
                    flex-direction: column;
                    gap: 40px;
                }

                .cta-title {
                    font-size: 2rem;
                }

                .contact-form {
                    padding: 30px 25px;
                }
            }

           

            .floating {
                animation: float 6s ease-in-out infinite;
            }

            @keyframes float {

                0%,
                100% {
                    transform: translateY(0px);
                }

                50% {
                    transform: translateY(-15px);
                }
            }