
 
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #eff6ff, #fff7ed);
            padding: 120px 20px 80px;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #111827;
        }

        .hero p {
            font-size: 1.2rem;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Products Section */
        .products-section {
            padding: 80px 20px;
            background: white;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 50px;
            color: #111827;
        }

        .highlight {
            color: #f97316;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .product-image {
            height: 200px;
            background: linear-gradient(135deg, #f97316, #2563eb);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
        }

        .product-content {
            padding: 30px;
        }

        .product-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #111827;
        }

        .product-description {
            color: #6b7280;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .product-features {
            list-style: none;
            margin-bottom: 25px;
        }

        .product-features li {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            color: #374151;
            font-size: 0.9rem;
        }

        .product-features li::before {
            content: '✓';
            color: #10b981;
            font-weight: bold;
            margin-right: 10px;
        }

        .product-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #f97316;
            margin-bottom: 20px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #f97316, #ea580c);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
        }

        /* Use Cases Section */
        .use-cases {
            background: #f9fafb;
            padding: 80px 20px;
        }

        .use-case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .use-case-card {
            background: white;
            padding: 30px 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        }

        .use-case-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #f97316, #2563eb);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            margin: 0 auto 20px;
        }

        .use-case-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #111827;
        }

        .use-case-description {
            color: #6b7280;
            font-size: 0.9rem;
        }

       




        /* Features Grid */
        .features-section {
            padding: 80px 20px;
            background: white;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #f97316, #ea580c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            margin-bottom: 25px;
        }

        .feature-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #111827;
        }

        .feature-description {
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .feature-benefits {
            list-style: none;
            padding: 0;
        }

        .feature-benefits li {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            color: #374151;
        }

        .feature-benefits li::before {
            content: '✓';
            color: #10b981;
            font-weight: bold;
            margin-right: 10px;
        }

        /* Categories */
        .category-section {
            background: #f9fafb;
            padding: 60px 20px;
        }

        .category-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 50px;
            color: #111827;
        }

        .category-title .highlight {
            color: #f97316;
        }
        
        
        
   
        .download-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .download-btn {
            background: #000;
            color: white;
            padding: 15px 25px;
            border-radius: 12px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s;
            font-weight: 500;
        }

        .download-btn:hover {
            background: #333;
            transform: translateY(-2px);
        }

        .download-btn i {
            font-size: 1.5rem;
        }

        /* Apps Section */
        .apps-section {
            padding: 80px 20px;
            background: white;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 50px;
            color: #111827;
        }

        .highlight {
            color: #f97316;
        }

        .apps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .app-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .app-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .app-preview {
            height: 300px;
            background: linear-gradient(135deg, #f97316, #2563eb);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .phone-mockup {
            width: 200px;
            height: 350px;
            background: #000;
            border-radius: 25px;
            padding: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: white;
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #333;
        }

        .app-content {
            padding: 40px 30px;
        }

        .app-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #111827;
        }

        .app-description {
            color: #6b7280;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .app-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .app-features li {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            color: #374151;
        }

        .app-features li::before {
            content: '✓';
            color: #10b981;
            font-weight: bold;
            margin-right: 12px;
            font-size: 1.1rem;
        }

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

        .app-download-btn {
            background: linear-gradient(135deg, #f97316, #ea580c);
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .app-download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
        }

                /* Footer */
        .footer {
            background: #111827;
            color: white;
            padding: 60px 20px 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-section p {
            color: #d1d5db;
            line-height: 1.6;
            margin-bottom: 20px;
        }

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

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

        .footer-section ul li a {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s;
        }

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

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

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

        .social-links a:hover {
            background: #f97316;
            color: white;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .contact-icon {
            color: #f97316;
            font-size: 16px;
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 30px;
            text-align: center;
            color: #9ca3af;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .hero-stats {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .section-title {
                font-size: 2rem;
            }

            .cta-section h2 {
                font-size: 2rem;
            }

            .why-choose-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .reason-item {
                flex-direction: column;
                text-align: center;
            }

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

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 100px 20px 60px;
            }

            .hero h1 {
                font-size: 2rem;
            }

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

            .features-grid,
            .audience-grid {
                grid-template-columns: 1fr;
            }

            .btn-primary,
            .btn-secondary,
            .btn-white,
            .btn-outline {
                padding: 14px 24px;
                font-size: 1rem;
            }
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

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

        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }
        
        
        
        
    
        .demo-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, #f97316, #ea580c);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 1.1rem;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
        }

        .btn-secondary {
            border: 2px solid #2563eb;
            color: #2563eb;
            padding: 15px 30px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 1.1rem;
            background: white;
        }

        .btn-secondary:hover {
            background: #2563eb;
            color: white;
        }

        /* Video Section */
        .video-section {
            padding: 80px 20px;
            background: white;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 50px;
            color: #111827;
        }

        .highlight {
            color: #f97316;
        }

        .video-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            background: #000;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }

        .video-placeholder {
            width: 100%;
            height: 450px;
            background: linear-gradient(135deg, #f97316, #2563eb);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 20px;
        }

        .play-button:hover {
            background: rgba(255,255,255,0.3);
            transform: scale(1.1);
        }

        .play-button i {
            font-size: 30px;
            margin-left: 5px;
        }

        .video-title {
            font-size: 1.5rem;
            font-weight: 600;
            text-align: center;
        }

        .video-duration {
            font-size: 1rem;
            opacity: 0.8;
            margin-top: 10px;
        }

        /* Demo Steps */
        .demo-steps {
            padding: 80px 20px;
            background: #f9fafb;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .step-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            transition: all 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-5px);
        }

        .step-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #f97316, #ea580c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .step-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #f97316, #2563eb);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            margin: 20px auto 25px;
        }

        .step-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #111827;
        }

        .step-description {
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .step-features {
            list-style: none;
            text-align: left;
        }

        .step-features li {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            color: #374151;
            font-size: 0.9rem;
        }

        .step-features li::before {
            content: '✓';
            color: #10b981;
            font-weight: bold;
            margin-right: 10px;
        }

        /* Interactive Demo */
        .interactive-demo {
            padding: 80px 20px;
            background: white;
        }

        .demo-interface {
            max-width: 900px;
            margin: 0 auto;
            background: #f8fafc;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        .demo-header {
            background: linear-gradient(135deg, #f97316, #2563eb);
            color: white;
            padding: 20px 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .demo-tabs {
            display: flex;
            background: white;
            border-bottom: 1px solid #e5e7eb;
        }

        .demo-tab {
            flex: 1;
            padding: 15px 20px;
            text-align: center;
            background: none;
            border: none;
            cursor: pointer;
            font-weight: 600;
            color: #6b7280;
            transition: all 0.3s;
        }

        .demo-tab.active {
            color: #f97316;
            border-bottom: 3px solid #f97316;
        }

        .demo-content {
            padding: 40px;
            min-height: 400px;
        }

        .demo-panel {
            display: none;
        }

        .demo-panel.active {
            display: block;
        }

        .demo-screenshot {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }

        .demo-screenshot::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 15px;
            width: 12px;
            height: 12px;
            background: #ef4444;
            border-radius: 50%;
            box-shadow: 20px 0 0 #f59e0b, 40px 0 0 #10b981;
        }

        .demo-screenshot i {
            font-size: 4rem;
            color: #9ca3af;
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 20px;
            background: #f9fafb;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .testimonial-content {
            font-style: italic;
            color: #374151;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #f97316, #2563eb);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
        }

        .author-info h4 {
            font-weight: 600;
            color: #111827;
        }

        .author-info p {
            color: #6b7280;
            font-size: 0.9rem;
        }

   

        /* Contact Section */
        .contact-section {
            padding: 80px 20px;
            background: white;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info {
            background: #f9fafb;
            padding: 40px;
            border-radius: 20px;
        }

        .contact-info h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: #111827;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #f97316, #ea580c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            margin-right: 20px;
        }

        .contact-details h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: #111827;
        }

        .contact-details p {
            color: #6b7280;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .contact-form h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: #111827;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #374151;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #f97316;
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .btn-submit {
            background: linear-gradient(135deg, #f97316, #ea580c);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
        }

        /* Office Hours */
        .office-hours {
            background: #f9fafb;
            padding: 60px 20px;
        }

        .office-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .office-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .office-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #f97316, #2563eb);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            margin: 0 auto 20px;
        }

        .office-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #111827;
        }

        .office-details {
            color: #6b7280;
            line-height: 1.6;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 20px;
            background: white;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 50px;
            color: #111827;
        }

        .highlight {
            color: #f97316;
        }

        .faq-item {
            background: #f9fafb;
            margin-bottom: 20px;
            border-radius: 12px;
            overflow: hidden;
        }

        .faq-question {
            background: none;
            border: none;
            width: 100%;
            padding: 20px 25px;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: #111827;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #f3f4f6;
        }

        .faq-answer {
            padding: 0 25px 20px;
            color: #6b7280;
            line-height: 1.6;
            display: none;
        }

        .faq-answer.active {
            display: block;
        }

   

        /* Support Options */
        .support-options {
            padding: 60px 20px;
            background: white;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .support-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .support-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .support-card:hover {
            transform: translateY(-5px);
            border-color: #f97316;
        }

        .support-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #f97316, #ea580c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            margin: 0 auto 20px;
        }

        .support-card.whatsapp .support-icon {
            background: linear-gradient(135deg, #25d366, #128c7e);
        }

        .support-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #111827;
        }

        .support-description {
            color: #6b7280;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .support-btn {
            background: linear-gradient(135deg, #f97316, #ea580c);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .support-card.whatsapp .support-btn {
            background: linear-gradient(135deg, #25d366, #128c7e);
        }

        .support-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
        }

        /* Chat Interface */
        .chat-section {
            padding: 80px 20px;
            background: #f9fafb;
        }

        .chat-container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .chat-header {
            background: linear-gradient(135deg, #f97316, #2563eb);
            color: white;
            padding: 20px 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .chat-avatar {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .chat-info h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .chat-status {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .chat-messages {
            height: 400px;
            overflow-y: auto;
            padding: 20px 30px;
            background: #f8fafc;
        }

        .message {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .message.sent {
            flex-direction: row-reverse;
        }

        .message-avatar {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f97316, #2563eb);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            flex-shrink: 0;
        }

        .message.sent .message-avatar {
            background: linear-gradient(135deg, #6b7280, #374151);
        }

        .message-content {
            background: white;
            padding: 12px 16px;
            border-radius: 18px;
            max-width: 70%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .message.sent .message-content {
            background: linear-gradient(135deg, #f97316, #ea580c);
            color: white;
        }

        .message-time {
            font-size: 0.8rem;
            color: #6b7280;
            margin-top: 5px;
        }

        .chat-input {
            padding: 20px 30px;
            background: white;
            border-top: 1px solid #e5e7eb;
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .chat-input input {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid #e5e7eb;
            border-radius: 25px;
            outline: none;
            font-size: 1rem;
        }

        .chat-input input:focus {
            border-color: #f97316;
        }

        .send-btn {
            background: linear-gradient(135deg, #f97316, #ea580c);
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .send-btn:hover {
            transform: scale(1.1);
        }

        /* WhatsApp Integration */
        .whatsapp-section {
            padding: 80px 20px;
            background: white;
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #111827;
        }

        .highlight {
            color: #f97316;
        }

        .whatsapp-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .whatsapp-feature {
            padding: 30px 20px;
            background: #f9fafb;
            border-radius: 15px;
            text-align: center;
        }

        .whatsapp-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            margin: 0 auto 20px;
        }

        .whatsapp-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #111827;
        }

        .whatsapp-description {
            color: #6b7280;
            font-size: 0.9rem;
        }

        .whatsapp-cta {
            margin-top: 40px;
        }

        .whatsapp-btn {
            background: linear-gradient(135deg, #25d366, #128c7e);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .whatsapp-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
        }

       