        /* Reset and Base Styles */
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
        body { background-color: #f8f9fa; color: #333; line-height: 1.6; overflow-x: hidden; }

        /* Color Variables */
        :root { --primary: #7209B7; --accent: #FF6B81; --highlight: #FFD700; --white: #FFFFFF; --dark: #333333; --background: #F3F4F6; }

        /* Navigation Styles */
        nav {
            background-color: rgba(114, 9, 183, 0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
            padding: 1rem 5%; position: fixed; width: 100%; z-index: 1000; display: flex;
            justify-content: space-between; align-items: center; box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1); height: 70px;
        }
        .logo { color: var(--white); font-size: 1.5rem; font-weight: 700; text-decoration: none; display: flex; align-items: center; }
        .logo span { color: var(--accent); }
        .nav-logo-img { height: 30px; width: auto; vertical-align: middle; margin-right: 8px; }
        .nav-links { display: flex; list-style: none; }
        .nav-links.mobile-nav-active {
            display: flex; flex-direction: column; position: absolute; top: 100%;
            left: 0; width: 100%; background-color: rgba(114, 9, 183, 0.98);
            padding: 1.5rem 0; text-align: center;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2); z-index: 999;
        }
        .nav-links li { margin-left: 2rem; }
        .nav-links.mobile-nav-active li { margin: 0.75rem 0; margin-left: 0; }
        .nav-links a { color: var(--white); text-decoration: none; font-weight: 500; transition: color 0.3s ease, background-color 0.3s ease, padding 0.3s ease; display: inline-block; padding: 0.4rem 0.8rem; border-radius: 6px; }
        .nav-links a:hover { color: var(--highlight); }
        .nav-links.mobile-nav-active li a { /* Base style */ }
        .nav-links.mobile-nav-active li a.mobile-nav-link-active { color: var(--highlight); background-color: rgba(255, 255, 255, 0.15); }
        .nav-links.mobile-nav-active li a:not(.mobile-nav-link-active):hover { color: var(--highlight); background-color: rgba(255, 255, 255, 0.08); }
        .mobile-menu { display: none; font-size: 1.5rem; color: var(--white); cursor: pointer; background: none; border: none; padding: 0.5rem; }

        /* Hero Section Styles */
        .hero {
            background: var(--primary); color: #fff; position: relative; text-align: center;
            overflow: hidden; padding-bottom: 5px; z-index: 3; min-height: 70vh;
            display: flex; flex-direction: column;
        }
        .hero-inner-content {
            width: 100%; max-width: 900px; margin: 0 auto; padding: 100px 5%;
            position: relative; z-index: 10; padding-bottom: 80px;
        }
        .hero-positioning-container {
            position: relative; width: 100%; flex-grow: 1;
            display: flex; flex-direction: column; justify-content: center;
            padding-top: 80px; z-index: 5;
        }
        .hero h1 {
            font-size: 60px; margin: 0 0 15px 0; line-height: 1.1;
            text-transform: uppercase; font-weight: bold;
            opacity: 0; transform: translateY(20px);
            animation: fadeInUp 1s ease forwards 0.3s;
        }
        .hero p {
            font-size: 18px; margin: 0 auto 30px auto; max-width: 600px;
            opacity: 0; transform: translateY(20px);
            animation: fadeInUp 1s ease forwards 0.5s;
            line-height: 1.7;
        }
        @keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

        /* Button Styles */
        .button-container {
            display: flex; align-items: center; justify-content: center;
            z-index: 10; padding-bottom: 0; margin-top: 0;
            opacity: 0; transform: translateY(20px);
            animation: fadeInUp 1s ease forwards 0.9s;
        }
        .button {
            position: relative; padding: 0.75rem 1.8rem; color: white; font-weight: 600;
            border-radius: 9999px; overflow: hidden; transform: scale(1);
            transition: transform 0.3s ease, box-shadow 0.3s ease; border: none; cursor: pointer;
            display: inline-flex; justify-content: center; align-items: center; text-align: center;
        }
        .button:hover { transform: scale(1.05); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3); }
        .gradient-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 9999px; z-index: 1;}
        .button-text { position: relative; z-index: 2; }
        #contact-gradient-bg { z-index: 1; }

        /* Services Section */
        .services-section {
            padding: 7rem 5%; background: linear-gradient(to bottom, #7209B7 0%, #ff1493 10%, #ff1493 90%, #7209B7 100%);
            position: relative; overflow: hidden; color: var(--white);
        }
        .services-section::before, .services-section::after {
            content: ''; position: absolute; border-radius: 50%; z-index: 0;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
        }
        .services-section::before { top: -150px; right: -150px; width: 300px; height: 300px; }
        .services-section::after { bottom: -100px; left: -100px; width: 250px; height: 250px; }
        .section-title {
            text-align: center; margin-bottom: 4rem; font-size: 3rem; color: var(--white);
            position: relative; font-weight: 800; z-index: 1;
        }
        .section-title::after {
            content: ''; display: block; width: 120px; height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            margin: 1.2rem auto 0; border-radius: 5px;
            box-shadow: 0 3px 10px rgba(255, 107, 129, 0.3);
        }
        .section-title::before {
            content: attr(data-text); position: absolute; top: -30px; left: 50%;
            transform: translateX(-50%); font-size: 5rem; color: rgba(255, 255, 255, 0.05);
            font-weight: 900; white-space: nowrap; z-index: -1;
        }
        .services-container {
            display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
            z-index: 1; position: relative; max-width: 1200px; margin: 0 auto;
        }
        .service-card-wrapper { flex: 1 1 300px; max-width: 400px; width: 100%; }
        .service-card {
            background-color: var(--primary); color: var(--white); padding: 2.5rem;
            border-radius: 15px; position: relative; overflow: hidden;
            box-shadow: 0 15px 30px rgba(114, 9, 183, 0.3), 0 5px 15px rgba(0, 0, 0, 0.2), inset 0 0 15px rgba(255, 255, 255, 0.1);
            transform: scale(1); transition: transform 0.3s ease, box-shadow 0.3s ease;
            will-change: transform; backface-visibility: hidden; z-index: 2; height: 100%;
        }
        .service-card::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
            z-index: -1;
        }
        .service-card::after {
            content: ''; position: absolute; bottom: -50px; right: -50px; width: 100px; height: 100px;
            background: radial-gradient(circle, var(--accent) 0%, rgba(255, 107, 129, 0) 70%);
            opacity: 0.3; transition: transform 0.5s ease, opacity 0.5s ease; z-index: -1;
        }
        .service-card:hover {
            transform: scale(1.05) translateY(-10px);
            box-shadow: 0 20px 40px rgba(114, 9, 183, 0.4), 0 8px 20px rgba(0, 0, 0, 0.25);
        }
        .service-card:hover::after { transform: scale(3); opacity: 0.1; }
        .service-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
        .service-card p { margin-bottom: 1.5rem; line-height: 1.7; }
        .service-card .feature-icon { font-size: 3rem; margin-bottom: 1.5rem; color: var(--accent); }

        /* Call to Action Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, #530786 100%);
            color: var(--white); padding: 5rem 5%; text-align: center; position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at 90% 10%, rgba(255, 107, 129, 0.15) 0%, transparent 50%);
            z-index: 0;
        }
        .cta-container {
            position: relative; z-index: 2; max-width: 800px; margin: 0 auto;
        }
        .cta-container h2 {
            font-size: 2.5rem; margin-bottom: 1.5rem; font-weight: 700;
        }
        .cta-container p {
            font-size: 1.2rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto;
            opacity: 0.9;
        }

        /* Footer */
        footer {
            background-color: var(--dark); color: var(--white); padding: 3rem 5%;
        }
        .footer-content {
            display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem;
            max-width: 1200px; margin: 0 auto;
        }
        .footer-logo { flex: 1 1 300px; }
        .footer-logo h2 { color: var(--white); margin-bottom: 1rem; font-size: 1.8rem; }
        .footer-logo span { color: var(--accent); }
        .footer-logo p { margin-bottom: 1.5rem; line-height: 1.7; opacity: 0.8; }
        .social-icons {
            display: flex; gap: 1rem; margin-top: 1.5rem;
        }
        .social-icons a {
            color: var(--white); font-size: 1.5rem; transition: color 0.3s ease, transform 0.3s ease;
            text-decoration: none; display: inline-block;
        }
        .social-icons a:hover {
            color: var(--accent); text-decoration: none; transform: scale(1.1) translateY(-2px);
        }
        .footer-links { flex: 1 1 180px; }
        .footer-links h3 { margin-bottom: 1rem; color: var(--accent); font-size: 1.2rem; }
        .footer-links ul { list-style: none; padding-left: 0; }
        .footer-links li { margin-bottom: 0.7rem; display: flex; align-items: center; }
        .footer-links a {
            color: var(--white); text-decoration: none; transition: color 0.3s ease;
        }
        .footer-links a:hover { color: var(--highlight); text-decoration: none; }
        .footer-links i {
            margin-right: 0.8rem; color: var(--highlight); width: 1.2em; text-align: center; flex-shrink: 0;
        }
        .copyright {
            text-align: center; padding-top: 2rem; margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; opacity: 0.7;
        }

        /* Chat Banner */
        .chat-banner {
            position: fixed; bottom: 1.5rem; right: 1.5rem; background-color: var(--accent);
            color: var(--white); padding: 0.8rem 1.2rem; border-radius: 50px; cursor: pointer;
            box-shadow: 0 5px 15px rgba(255, 107, 129, 0.4); z-index: 999;
            display: flex; align-items: center; transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .chat-banner:hover {
            transform: translateY(-5px) scale(1.03); box-shadow: 0 8px 20px rgba(255, 107, 129, 0.5);
        }
        .chat-banner span { margin-left: 0.5rem; font-weight: 600; font-size: 0.9rem; }
        .chat-banner i { font-size: 1.1rem; }

        /* Responsive Styles */
        @media (max-width: 768px) {
            nav { height: 60px; padding: 0.5rem 5%; }
            .nav-links { display: none; }
            .mobile-menu { display: inline-flex; }
            .nav-logo-img { height: 25px; }

            .hero { min-height: 60vh; }
            .hero-inner-content { max-width: 100%; padding: 80px 5%; padding-bottom: 60px; }
            .hero-positioning-container { padding-top: 60px; }
            .hero h1 { font-size: 36px; }
            .hero p { font-size: 15px; max-width: 90%; margin-bottom: 25px; }

            .services-section, .cta-section { padding: 4rem 5%; }
            .section-title { font-size: 2rem; }
            .section-title::before { font-size: 3.5rem; top: -20px; }

            .services-container { flex-direction: column; align-items: center; gap: 1.5rem; }
            .service-card-wrapper { width: 95%; max-width: none; flex-basis: auto; }

            .cta-container h2 { font-size: 2rem; }
            .cta-container p { font-size: 1rem; }

            .footer-content { flex-direction: column; text-align: center; gap: 1.5rem; }
            .footer-logo, .footer-links { min-width: 100%; margin-bottom: 1rem; flex-basis: auto; }
            .social-icons { justify-content: center; }
            .footer-links ul { text-align: center; }
            .footer-links li { justify-content: center; }
            .footer-links i { margin-right: 0.5rem; }
        }

        /* Animation for scroll reveal */
        .reveal-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
        .reveal-on-scroll.active { opacity: 1; transform: translateY(0); }

        /* Font awesome base */
        .fa, .fas, .fab { display: inline-block; font-style: normal; font-variant: normal; text-rendering: auto; -webkit-font-smoothing: antialiased; }