 /* CSS Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* Base Styles */
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }
        
        /* Utility Classes */
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .text-center {
            text-align: center;
        }
        
        .section {
            padding: 5rem 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #333;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background-color: #ff3366; /* Updated to match logo */
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(to right, #ff3366, #ff9966); /* Updated to match logo */
            color: #fff;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 51, 102, 0.2);
        }
        
        .btn-secondary {
            background: #fff;
            color: #ff3366; /* Updated to match logo */
            border: 2px solid #ff3366; /* Updated to match logo */
        }
        
        .btn-secondary:hover {
            background: #f8f9fa;
        }
        
        /* Header Styles */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header-shrink {
            padding: 5px 0;
        }
        
        .header-shrink .logo img {
            height: 45px;
            width: 25%;
        }
        
        .header-shrink .logo h1 {
            font-size: 1.5rem;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            position: relative;
        }
        
        .logo {
            display: flex;
            align-items: center;
            z-index: 1001;
            width: 100%;
            height: 100%;
        }
        
        .logo img {
            height: 100%;
            width: 25%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .logo h1 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #333;
            transition: all 0.3s ease;
            margin: 0;
        }
        
        .logo span {
            color: #ff3366;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: #ff3366;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: #ff3366;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            z-index: 1001;
            padding: 5px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .hamburger:hover {
            background-color: #f8f9fa;
        }
        
        .hamburger i {
            font-size: 1.5rem;
            color: #333;
        }
        
        /* Hero Section */
        .hero {
            background: #ffffff;
            padding: 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero-carousel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-slide.active {
            opacity: 1;
            visibility: visible;
        }

        .hero-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: rgba(0, 0, 0, 0.4); */
            z-index: 2;
        }

        .hero-slide[data-bg="particles"] .hero-overlay {
            background: transparent;
        }
        
        .particles-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        #particles-canvas {
            width: 100%;
            height: 100%;
            display: block;
            /* Performance optimizations for mobile */
            will-change: auto;
            transform: translateZ(0);
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

        /* GenAI Animation Styles */
        .genai-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            background: #ffffff;
        }

        #genai-canvas {
            width: 100%;
            height: 100%;
            display: block;
            will-change: auto;
            transform: translateZ(0);
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

        /* AI/ML Applications Animation Styles */
        .aiml-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            background: #ffffff;
        }

        #aiml-canvas {
            width: 100%;
            height: 100%;
            display: block;
            will-change: auto;
            transform: translateZ(0);
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

        /* Digital Marketing Animation Styles */
        .digital-marketing-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            background: #ffffff;
        }

        #digital-marketing-canvas {
            width: 100%;
            height: 100%;
            display: block;
            will-change: auto;
            transform: translateZ(0);
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }
        
        .hero .container {
            position: relative;
            z-index: 3;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 15px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            animation: fadeInUp 1s ease-out;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: #333;
            text-shadow: none;
            font-weight: 700;
            line-height: 1.2;
        }

        /* .hero-slide[data-bg="genai"] h1,
        .hero-slide[data-bg="aiml"] h1 {
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        } */
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #666;
            text-shadow: none;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 2.5rem;
        }

        /* .hero-slide[data-bg="genai"] p,
        .hero-slide[data-bg="aiml"] p {
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        } */
        
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* Hero Navigation */
        .hero-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }

        .hero-dots {
            display: flex;
            gap: 15px;
        }

        .hero-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: 2px solid #ff3366;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hero-dot.active {
            background: #ff3366;
            border-color: #ff3366;
            transform: scale(1.2);
        }

        .hero-dot:hover {
            background: rgba(255, 51, 102, 0.7);
            transform: scale(1.1);
        }

        /* Hero Arrows */
        .hero-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 30px;
            z-index: 10;
        }

        .hero-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .hero-arrow:hover {
            background: rgba(255, 51, 102, 0.8);
            border-color: #ff3366;
            transform: scale(1.1);
        }

        .hero-arrow i {
            font-size: 1.2rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Services Section */
        .services {
            background-color: #f8f9fa;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 3rem;
        }
        
        .service-card {
            background-color: transparent;
            width: 100%;
            height: 400px;
            perspective: 1000px;
            border-radius: 10px;
        }
        
        .service-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s;
            transform-style: preserve-3d;
        }
        
        .service-card.flip .service-card-inner {
            transform: rotateY(180deg);
        }
        
        .service-card-front, .service-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden; /* Safari */
            backface-visibility: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: #fff;
        }
        
        .service-card-front {
            background-color: #fff;
        }
        
        .service-card-back {
            background-color: #fff;
            transform: rotateY(180deg);
            justify-content: center;
        }

        .service-card-back h3{
            color: #ff3366;
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: #ff3366; /* Updated to match logo */
            margin-bottom: 1.5rem;
        }
        
        .tech-btn, .tech-btn-back {
            background-color: white;
            color: black;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 15px;
            font-family: 'Poppins', sans-serif;
            transition: background-color 0.3s;
            width: 50%;
            align-self: flex-end;
        }
        
        .tech-btn:hover, .tech-btn-back:hover {
            background: linear-gradient(90deg, purple, red, tomato, orange);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;

            /* Optional for modern browsers */
            background-clip: text;
            color: transparent;
        }
        
        .tech-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
            align-self: center;
        }
        
        .tech-list li {
            padding: 8px 0;
            border-bottom: 1px solid #f1f1f1;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .tech-list li i {
            color: #ff3366;
            width: 20px;
            text-align: center;
        }
        
        .tech-list li:last-child {
            border-bottom: none;
        }
        
        .service-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #333;
        }
        
        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 50px;
            align-items: center;
        }
        
        .about-img img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #333;
        }
        
        .about-content p {
            margin-bottom: 1.5rem;
            color: #666;
            font-size: 1.1rem;
        }
        
        .about-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-top: 2rem;
        }
        
        .stat {
            text-align: center;
            padding: 1.5rem;
            background-color: #f8f9fa;
            border-radius: 10px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ff3366; /* Updated to match logo */
            margin-bottom: 0.5rem;
        }
        
        .stat-title {
            font-size: 1rem;
            color: #666;
        }
        
        /* Team Section */
        .team {
            background-color: #f8f9fa;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin-top: 3rem;
        }
        
        .team-member {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .member-img img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        
        .member-info {
            padding: 1.5rem;
            text-align: center;
        }
        
        .member-name {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #333;
        }
        
        .member-role {
            color: #ff3366; /* Updated to match logo */
            margin-bottom: 1rem;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .social-links a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background-color: #f8f9fa;
            color: #ff3366; /* Updated to match logo */
            border-radius: 50%;
            transition: background-color 0.3s, color 0.3s;
        }
        
        .social-links a:hover {
            background-color: #ff3366; /* Updated to match logo */
            color: #fff;
        }
        
        /* Testimonials Section */
        .testimonials-slider {
            max-width: 800px;
            margin: 3rem auto 0;
            position: relative;
            overflow: hidden;
        }
        
        .testimonials-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .testimonial {
            min-width: 100%;
            padding: 2rem;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.5rem;
            border: 5px solid #f8f9fa;
        }
        
        .testimonial-text {
            font-style: italic;
            color: #666;
            margin-bottom: 1.5rem;
        }
        
        .testimonial-name {
            font-weight: 600;
            color: #333;
        }
        
        .testimonial-role {
            color: #ff3366; /* Updated to match logo */
            font-size: 0.9rem;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
            gap: 20px;
        }
        
        .slider-btn {
            width: 40px;
            height: 40px;
            background-color: #fff;
            color: #ff3366; /* Updated to match logo */
            border: 2px solid #ff3366; /* Updated to match logo */
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .slider-btn:hover {
            background-color: #ff3366; /* Updated to match logo */
            color: #fff;
        }
        
        /* Pricing Section */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 3rem;
        }
        
        .pricing-plan {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }
        
        .pricing-plan:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-header {
            padding: 2rem;
            background: linear-gradient(to right, #ff3366, #ff9966); /* Updated to match logo */
            color: #fff;
        }
        
        .pricing-name {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .pricing-price {
            font-size: 2.5rem;
            font-weight: 700;
        }
        
        .pricing-duration {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .pricing-features {
            padding: 2rem;
        }
        
        .pricing-feature {
            margin-bottom: 1rem;
            color: #666;
        }
        
        .pricing-features .btn {
            margin-top: 1.5rem;
        }
        
        /* Testimonials Section */
        .testimonials {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            position: relative;
        }
        
        .testimonials::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 20"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff3366" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ff9966" opacity="0.05"/></pattern></defs><rect width="100" height="20" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }
        
        .testimonials .container {
            position: relative;
            z-index: 2;
        }
        
        .testimonials-subtitle {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 3rem;
            font-weight: 400;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 2rem;
        }
        
        .testimonial-card {
            background: #fff;
            border-radius: 16px;
            padding: 2.5rem 2rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid rgba(255, 51, 102, 0.1);
            overflow: hidden;
        }
        
        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #ff3366, #ff9966);
            border-radius: 16px 16px 0 0;
            transform: scaleX(1);
            transition: transform 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 51, 102, 0.15);
            border-color: rgba(255, 51, 102, 0.3);
        }
        
        .testimonial-card:hover::before {
            transform: scaleX(1.05);
        }
        
        .testimonial-content {
            margin-bottom: 2rem;
        }
        
        .quote-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff3366, #ff9966);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .testimonial-card:hover .quote-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .quote-icon path {
            color: #fff;
            font-size: 1.2rem;
        }
        
        .testimonial-content p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #444;
            font-style: italic;
            margin: 0;
            position: relative;
        }
        
        .testimonial-author {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            border-top: 1px solid #f0f0f0;
            padding-top: 1.5rem;
        }
        
        .author-info h4 {
            font-size: 1.1rem;
            color: #333;
            margin-bottom: 0.5rem;
            font-weight: 600;
            line-height: 1.3;
        }
        
        .service-tag {
            display: inline-block;
            background: linear-gradient(135deg, #ff3366, #ff9966);
            color: #fff;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover .service-tag {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(255, 51, 102, 0.3);
        }
        
        .rating {
            display: flex;
            gap: 3px;
            transition: transform 0.3s ease;
        }
        
        .testimonial-card:hover .rating {
            transform: scale(1.1);
        }
        
        .rating .fa-star {
            color: #ffc107;
            font-size: 0.9rem;
            transition: transform 0.2s ease;
        }
        
        .testimonial-card:hover .rating i {
            transform: scale(1.1);
        }

        /* Testimonial Animations */
        .testimonial-card {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .testimonial-card.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        /* Testimonials Error State */
        .testimonials-error {
            text-align: center;
            padding: 3rem;
            color: #666;
            font-style: italic;
        }

        /* Show More Button Styling */
        .testimonials-actions {
            margin-top: 3rem;
        }

        #showMoreTestimonials {
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        #showMoreTestimonials:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 51, 102, 0.3);
        }
        
        /* Contact Section */
        .contact {
            background-color: #f8f9fa;
            padding: 4rem 0;
        }
        
        .contact .container {
            max-width: 1200px;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 2rem;
            align-items: start;
            padding: 1rem;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding: 1rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 1rem;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }
        
        .contact-item:hover {
            transform: translateX(8px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-left-color: #ff3366;
        }
        
        .contact-icon {
            min-width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff3366, #ff9966);
            color: #fff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            box-shadow: 0 3px 12px rgba(255, 51, 102, 0.3);
            transition: transform 0.3s ease;
        }
        
        .contact-item:hover .contact-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .contact-detail {
            flex: 1;
        }
        
        .contact-detail h3 {
            margin-bottom: 0.5rem;
            color: #333;
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        .contact-detail p, .contact-detail a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .contact-detail a:hover {
            color: #ff3366;
        }
        
        .contact-form {
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, #ff3366, #ff9966);
        }
        
        .contact-form h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: #333;
            text-align: center;
        }
        
        .contact-form p {
            text-align: center;
            color: #666;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #333;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e9ecef;
            border-radius: 6px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            background-color: #fafafa;
        }
        
        .form-control:focus {
            border-color: #ff3366;
            outline: none;
            background-color: #fff;
            box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.1);
        }
        
        .form-control:hover {
            border-color: #ff9966;
            background-color: #fff;
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 120px;
            font-family: 'Poppins', sans-serif;
        }
        
        .form-group .btn {
            width: 100%;
            padding: 12px 30px;
            font-size: 1rem;
            font-weight: 600;
            margin-top: 0.5rem;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: #fff;
            padding: 3rem 0 0;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 30px;
            margin-bottom: 2rem;
            align-items: start;
        }
        
        .footer-widget h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            color: #fff;
        }
        
        .footer-widget h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(to right, #ff3366, #ff9966);
            border-radius: 2px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .footer-logo img {
            height: 35px;
            width: 70px;
            margin-right: 10px;
        }
        
        .footer-logo h3 {
            font-size: 1.3rem;
            margin: 0;
        }
        
        .footer-logo h3 span {
            color: #ff3366;
        }
        
        .footer-widget p {
            color: #bdc3c7;
            margin-bottom: 1rem;
            line-height: 1.5;
            font-size: 0.85rem;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 8px;
        }
        
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 4px 0;
            font-size: 0.85rem;
        }
        
        .footer-links a:hover {
            color: #ff3366;
            transform: translateX(3px);
        }
        
        .footer-links a i {
            font-size: 0.8rem;
            width: 14px;
        }
        
        .footer-contact {
            list-style: none;
            padding: 0;
        }
        
        .footer-contact li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            padding: 6px 0;
        }
        
        .footer-contact i {
            color: #ff3366;
            font-size: 0.9rem;
            min-width: 16px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .footer-contact div {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .footer-contact strong {
            display: block;
            color: #ecf0f1;
            margin-bottom: 3px;
            font-size: 0.85rem;
            line-height: 1.2;
        }
        
        .footer-contact p, .footer-contact a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.8rem;
            line-height: 1.3;
            margin: 0;
        }

        .footer-contact a:hover {
            color: #ff3366;
        }
        
        .footer-social {
            display: flex;
            gap: 10px;
            margin-top: 0.5rem;
        }
        
        .footer-social a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 35px;
            height: 35px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border-radius: 50%;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-social a:hover {
            background: linear-gradient(135deg, #ff3366, #ff9966);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 51, 102, 0.3);
        }
        
        .footer-bottom {
            background: rgba(0, 0, 0, 0.2);
            padding: 1.5rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .footer-bottom p {
            color: #bdc3c7;
            margin: 0;
            font-size: 0.85rem;
        }
        
        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }
        
        .footer-bottom-links a {
            color: #bdc3c7;
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }
        
        .footer-bottom-links a:hover {
            color: #ff3366;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, #ff3366, #ff9966);
            color: #fff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 999;
            box-shadow: 0 5px 20px rgba(255, 51, 102, 0.3);
            backdrop-filter: blur(10px);
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 51, 102, 0.4);
        }
        
        .back-to-top i {
            font-size: 1.2rem;
        }
        
        /* WhatsApp Button */
        .whatsapp-button {
            position: fixed;
            bottom: 100px; /* Position above the back-to-top button when it's visible */
            right: 30px;
            width: 55px;
            height: 55px;
            background: #25d366; /* WhatsApp green color */
            color: #fff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 998;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
            backdrop-filter: blur(10px);
        }
        
        /* WhatsApp button when back-to-top is hidden */
        .whatsapp-button.bottom-position {
            bottom: 30px; /* Move to same position as back-to-top when it's hidden */
        }
        
        .whatsapp-button:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
            background: #128c7e; /* Darker green on hover */
        }
        
        .whatsapp-button i {
            font-size: 1.4rem;
        }
        
        /* WhatsApp button tooltip */
        .whatsapp-button:hover::before {
            content: "Chat with us on WhatsApp";
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: #333;
            color: #fff;
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 1;
            z-index: 999;
        }
        
        .whatsapp-button:hover::after {
            content: "";
            position: absolute;
            right: 60px;
            top: 50%;
            transform: translateY(-50%);
            border: 5px solid transparent;
            border-left-color: #333;
        }
        
        /* Responsive adjustments for WhatsApp button */
        @media (max-width: 768px) {
            .whatsapp-button {
                bottom: 90px; /* Above back-to-top when visible */
                right: 20px; /* Move to right corner on mobile */
                width: 50px;
                height: 50px;
            }
            
            .whatsapp-button.bottom-position {
                bottom: 30px; /* Same as back-to-top position when it's hidden */
            }
            
            .whatsapp-button i {
                font-size: 1.2rem;
            }
            
            /* Hide tooltip on mobile */
            .whatsapp-button:hover::before,
            .whatsapp-button:hover::after {
                display: none;
            }
        }
        
        /* Alert Styles */
        .alert {
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            display: none;
        }
        
        .alert-success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .alert-error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-grid, .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .nav-links li {
                margin-left: 20px;
            }
            
            .nav-links a {
                font-size: 0.9rem;
            }
            
            .logo img {
                height: 45px;
                /* width: 25%; */
            }
            
            .logo h1 {
                font-size: 1.5rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .contact-form {
                padding: 2.5rem;
            }
            
            .contact-info {
                padding: 1.5rem;
                gap: 25px;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                position: relative;
                padding: 12px 0;
            }
            
            .logo img {
                height: 40px;
                width: 20%;
            }
            
            .logo h1 {
                font-size: 1.3rem;
            }
            
            .hamburger {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 44px;
                height: 44px;
                font-size: 1.4rem;
            }
            
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #fff;
                padding: 0;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
                border-radius: 0 0 12px 12px;
                overflow: hidden;
                transform: translateY(-20px);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }
            
            .nav-links.active {
                display: flex;
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-links li {
                margin: 0;
                border-bottom: 1px solid #f0f0f0;
            }
            
            .nav-links li:last-child {
                border-bottom: none;
            }
            
            .nav-links a {
                display: block;
                padding: 15px 20px;
                font-size: 1rem;
                color: #333;
                transition: all 0.3s ease;
                border-left: 4px solid transparent;
            }
            
            .nav-links a:hover {
                background-color: #f8f9fa;
                border-left-color: #ff3366;
                padding-left: 24px;
            }
            
            .nav-links a::after {
                display: none;
            }
            
            .hero-btns {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }

            .hero-btns .btn {
                width: auto;
                min-width: 200px;
            }
            
            .hero h1 {
                font-size: 2.3rem;
                margin-bottom: 1rem;
            }

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

            .hero .container {
                padding: 1.5rem 15px;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-arrows {
                padding: 0 15px;
            }

            .hero-arrow {
                width: 45px;
                height: 45px;
            }

            .hero-arrow i {
                font-size: 1rem;
            }

            .hero-nav {
                bottom: 20px;
            }

            .hero-dot {
                width: 10px;
                height: 10px;
            }
            
            .section {
                padding: 3rem 0;
            }
            
            .contact {
                padding: 3rem 0;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                margin-top: 1.5rem;
            }
            
            .contact-form {
                padding: 1.5rem;
                margin: 0 10px;
            }
            
            .contact-info {
                padding: 0.5rem;
                gap: 15px;
            }
            
            .contact-item {
                padding: 1rem;
                gap: 15px;
            }
            
            .contact-icon {
                min-width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
            
            .form-control {
                padding: 10px 12px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .footer-logo {
                justify-content: center;
                text-align: center;
            }
            
            .footer-social {
                justify-content: center;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }
            
            .footer-bottom-links {
                gap: 12px;
            }
        }
        
        @media (max-width: 480px) {
            .navbar {
                padding: 10px 0;
            }
            
            .logo img {
                height: 35px;
                width: 40%;
                margin-right: 8px;
            }
            
            .logo h1 {
                font-size: 1.2rem;
            }
            
            .hamburger {
                width: 40px;
                height: 40px;
                font-size: 1.3rem;
            }
            
            .nav-links a {
                padding: 12px 16px;
                font-size: 0.95rem;
            }
            
            .container {
                padding: 0 10px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
        }
        
        /* Add-On Services Section */
        .pricing-category {
            margin-bottom: 4rem;
        }
        
        .addon-services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 2rem;
        }
        
        .addon-service-card {
            background-color: #fff;
            border-radius: 15px;
            padding: 2rem 1.5rem;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .addon-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, #ff3366, #ff9966);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .addon-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            border-color: #ff3366;
        }
        
        .addon-service-card:hover::before {
            transform: scaleX(1);
        }
        
        .addon-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #ff3366, #ff9966);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }
        
        .addon-service-card:hover .addon-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .addon-icon path {
            font-size: 1.8rem;
            color: #fff;
        }
        
        .addon-service-card h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #333;
            font-weight: 600;
        }
        
        .addon-description {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .addon-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: #ff3366;
            background: linear-gradient(135deg, #ffe6ea, #fff0f3);
            padding: 0.8rem 1rem;
            border-radius: 25px;
            border: 2px solid #ffccd5;
            transition: all 0.3s ease;
        }
        
        .addon-service-card:hover .addon-price {
            background: linear-gradient(135deg, #ff3366, #ff9966);
            color: #fff;
            border-color: #ff3366;
            transform: scale(1.05);
        }
        
        .plan-subtitle {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 0.5rem;
            font-style: italic;
        }
        
        .pricing-featured {
            position: relative;
            border: 3px solid #ff3366;
        }
        
        .pricing-featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #ff3366, #ff9966);
            color: #fff;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        @media (max-width: 992px) {
            .addon-services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .addon-service-card {
                padding: 1.5rem 1rem;
            }
            
            .addon-icon {
                width: 60px;
                height: 60px;
            }
            
            .addon-icon i {
                font-size: 1.5rem;
            }
            
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }
        
        @media (max-width: 768px) {
            .pricing-grid, .team-grid, .services-grid, .addon-services-grid {
                grid-template-columns: 1fr;
            }
            
            .addon-service-card {
                padding: 2rem 1.5rem;
            }
            
            .addon-icon {
                width: 70px;
                height: 70px;
            }
            
            .addon-icon i {
                font-size: 1.8rem;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .testimonial-card {
                padding: 2rem 1.5rem;
            }
            
            .testimonial-author {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                min-height: 100vh;
            }
            
            .hero h1 {
                font-size: 1.8rem;
                margin-bottom: 1rem;
                line-height: 1.3;
            }

            .hero p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
                line-height: 1.5;
            }

            .hero .container {
                padding: 1rem 10px;
            }

            .hero-btns {
                gap: 12px;
                flex-direction: column;
            }

            .hero-btns .btn {
                font-size: 0.9rem;
                padding: 10px 25px;
                min-width: 180px;
            }

            .hero-arrows {
                display: none; /* Hide arrows on very small screens */
            }

            .hero-nav {
                bottom: 15px;
            }

            .hero-dots {
                gap: 10px;
            }

            .hero-dot {
                width: 8px;
                height: 8px;
            }
            
            /* Optimize particles for mobile performance */
            .particles-container {
                opacity: 0.8; /* Slightly reduce opacity for better performance */
            }
            
            #particles-canvas {
                /* Further mobile optimizations */
                image-rendering: auto;
                image-rendering: crisp-edges;
                image-rendering: pixelated;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .pricing-grid, .team-grid, .services-grid, .addon-services-grid {
                grid-template-columns: 1fr;
            }
            
            .container {
                padding: 0 15px;
            }
            
            .contact {
                padding: 2.5rem 0;
                margin: 0 10px;
            }
            
            .contact-grid {
                margin-top: 1rem;
                gap: 20px;
            }
            
            .contact-form {
                padding: 1.2rem;
                margin: 0 5px;
            }
            
            .contact-info {
                padding: 0.3rem;
                gap: 12px;
            }
            
            .contact-item {
                padding: 0.8rem;
                gap: 12px;
                flex-direction: row;
                text-align: left;
            }
            
            .contact-icon {
                min-width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .contact-item h4 {
                font-size: 0.95rem;
                margin-bottom: 3px;
            }
            
            .contact-item p {
                font-size: 0.85rem;
                line-height: 1.3;
            }
            
            .form-row {
                flex-direction: column;
                gap: 12px;
            }
            
            .form-control {
                padding: 8px 10px;
                font-size: 0.9rem;
            }
            
            .testimonials-subtitle {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
            
            .testimonial-card {
                padding: 1.5rem;
            }
            
            .quote-icon {
                width: 40px;
                height: 40px;
            }
            
            .quote-icon i {
                font-size: 1rem;
            }
            
            .testimonial-content p {
                font-size: 1rem;
                line-height: 1.6;
            }
            
            .author-info h4 {
                font-size: 1rem;
            }
        }