        /* Custom Styles for Gradient and Animation */
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f7f8fc; /* Very light background matching the image */
            overflow-x: hidden;
            position: relative;
            /* Spacing fix for the fixed header */
            padding-top: 100px; 
        }

        /* Complex background blur/gradient simulation (Global) */
        .gradient-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            /* (Enquiry form styles removed) */
            pointer-events: none;
            z-index: 5; /* Ensure it is behind the content */
            opacity: 0.8;
        }

        /* Card-Style Header Shadow (Increased shadow for defined, professional look) */
        .header-card-shadow {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.08);
        }

        /* Hero Title Gradient Text (Used for all main headings) */
        .hero-title-gradient {
            background-image: linear-gradient(135deg, #6b46c1, #a855f7); /* Purple gradient */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent; /* Fallback for older browsers */
        }

        /* Line Scribble Animation for 'Profit' */
        @keyframes drawLine {
            from {
                width: 0;
            }
            to {
                width: 100%;
            }
        }

        .profit-underline {
            position: relative;
            display: inline-block;
        }

        .profit-underline::after {
            content: '';
            position: absolute;
            bottom: -5px; /* Adjust position */
            left: 0;
            height: 4px;
            background-image: linear-gradient(90deg, #a855f7, #ec4899); /* Pink/Purple Line */
            border-radius: 2px;
            /* Animation applied */
            width: 0;
            animation: drawLine 1.5s ease-out forwards;
            animation-delay: 0.5s;
        }
        
        /* Desktop Right-Side Navigation (Scroll Progress Indicator Mockup) */
        .desktop-nav-circles {
            position: fixed;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            z-index: 50;
        }
        
        .nav-circle {
            width: 10px;
            height: 10px;
            margin-bottom: 1.5rem;
            border-radius: 50%;
            background-color: #d1d5db; /* Light gray inactive */
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .nav-circle.active {
            width: 12px;
            height: 12px;
            background-color: #6d28d9; /* Deep purple active */
            box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.3);
        }

        /* Mobile Menu Styling */
        #mobile-menu {
            transition: transform 0.3s ease-in-out;
            transform: translateX(100%);
        }
        #mobile-menu.open {
            transform: translateX(0);
        }
        .mobile-nav-link {
            padding: 1.25rem 2rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            font-size: 1.25rem; /* text-xl */
            font-weight: 500;
            color: #1f2937; /* Dark text */
        }

        /* Animation for elements fading in on scroll */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-section {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
            transition-delay: 0.1s; /* Slight delay for staggered effect */
        }

        .fade-in-section.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Custom Class for Blurred Header Background (Glassmorphism Effect) */
        .blurred-header-bg {
            /* Default for Mobile: Semi-transparent white for readability */
            background-color: rgba(255, 255, 255, 0.95); 
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        /* DESKTOP FIX: Make the fixed header background transparent so the body's gradient shows through */
        @media (min-width: 1024px) {
            .blurred-header-bg {
                background-color: transparent; 
            }
        }

        /* Custom dark color for the Chat Now/Strategy Call button */
        .btn-dark {
            background-color: #24292e; /* A very dark grey/black shade for contrast */
        }
        .btn-dark:hover {
            background-color: #3b444c; /* Slightly lighter on hover */
        }
        
        /* --- Navigation Link Hover Underline Animation --- */
        .nav-link-underline {
            position: relative;
        }
        .nav-link-underline::after {
            content: '';
            position: absolute;
            bottom: -4px; 
            left: 0;
            width: 0; 
            height: 2px;
            background-color: #6d28d9; /* Deep purple color matching the theme */
            transition: width 0.3s ease-out; 
        }

        .nav-link-underline:hover::after {
            width: 100%; 
        }

        /* Register Section Animations */
        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .register-heading {
            animation: slideInDown 0.6s ease-out;
        }

        .register-subtitle {
            animation: slideInDown 0.6s ease-out 0.1s both;
        }

        .register-card {
            animation: slideInUp 0.6s ease-out;
        }

        .register-card:nth-child(2) {
            animation-delay: 0.15s;
        }

        /* Service Card Hover Effect (Kept for desktop view) */
        .service-card {
            transition: all 0.3s ease;
            /* Hide border/shadow on mobile to match the floating aesthetic */
            box-shadow: none;
            border: none;
            background-color: transparent;
            padding: 0; /* Remove padding on mobile item to make it a list */
            /* Ensure the mobile view is vertical, not a grid */
            margin-bottom: 2rem;
            align-items: flex-start;
        }
        
        .service-card:hover {
             transform: none; /* Disable hover movement on mobile */
             box-shadow: none;
        }
        
        /* Desktop Card Specific Styles */
        @media (min-width: 768px) {
             .service-card {
                background-color: white;
                padding: 1.5rem;
                border-radius: 1rem;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
                border: 1px solid #f3f4f6;
                margin-bottom: 0;
             }
             .service-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
             }
             /* Ensure grid on desktop */
             #services-grid {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 2rem;
             }
             @media (min-width: 1024px) {
                 #services-grid {
                    grid-template-columns: repeat(3, minmax(0, 1fr));
                 }
             }
        }

        /* New Icon Container Styling (matches screenshot) */
        .icon-container {
            width: 50px;
            height: 50px;
            min-width: 50px; /* Ensure fixed width */
            min-height: 50px;
            background-image: linear-gradient(135deg, rgba(167, 139, 250, 0.3) 0%, rgba(244, 114, 182, 0.3) 100%); /* Semi-transparent gradient */
            border-radius: 9999px; /* Full rounded */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            /* Inner glow effect mimic */
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.6) inset; 
        }

        /* New Title Styling for Mobile List */
        .service-title {
            font-size: 1.25rem; /* text-xl */
            font-weight: 700; /* font-bold */
        }
        
        /* Hide the specific service blur on desktop for cleaner background */
        @media (min-width: 1024px) {
            .services-blur-overlay {
                display: none;
            }
        }

        /* --- Strategic Marketing Card Styles --- */
        .marketing-card-wrapper {
            background-color: white;
            border-radius: 2rem;
            /* UPDATED: Increased shadow for better floating effect */
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid #e5e7eb;
            overflow: hidden;
            /* ADDED: Hover Animation for matching interaction */
            transition: all 0.3s ease;
        }
        .marketing-card-wrapper:hover {
            transform: scale(1.01); /* Slight zoom in */
            box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.08); /* More shadow on hover */
        }


        /* Image Container for the Placeholder */
        .image-container {
            position: relative;
            overflow: hidden;
            border-radius: 1.5rem;
            background-color: #fcfcfc;
            padding: 0; 
            /* REMOVED: aspect-ratio: 16 / 9; - Now using Tailwind's 'aspect-square' directly on the element */
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .image-container::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(244, 114, 182, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
            pointer-events: none;
        }
        
        /* Dedicated style for the Web Development Card image to give it a slightly different look */
        .image-webdev {
            background-color: #f0f7ff; /* Light blue background */
        }
        .image-webdev::before {
             background: radial-gradient(circle at center, rgba(66, 153, 225, 0.1) 0%, rgba(255, 255, 255, 0) 70%); /* Blue gradient glow */
        }

        /* Dedicated style for the PR Marketing / Social Media Card image */
        .image-pr-marketing {
            background-color: #ffeefb; /* Light pink background */
        }
        .image-pr-marketing::before {
             background: radial-gradient(circle at center, rgba(236, 72, 153, 0.1) 0%, rgba(255, 255, 255, 0) 70%); /* Pink gradient glow */
        }
        
        /* Custom Button Styling for the External Link (Secondary Button) */
        .btn-secondary-link {
            display: inline-flex;
            align-items: center;
            background-color: #f3e8ff; /* Light purple background */
            color: #6d28d9; /* Deep purple text */
            padding: 0.75rem 1.5rem; /* py-3 px-6 */
            font-weight: 600; /* font-semibold */
            border-radius: 0.75rem; /* rounded-xl */
            transition: all 0.2s ease-in-out;
            border: 2px solid transparent;
        }
        .btn-secondary-link:hover {
            background-color: #e9d5ff; /* Lighter purple on hover */
            color: #5b21b6; /* Darker purple text on hover */
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(109, 40, 217, 0.1);
        }

        /* --- Logo Slider Styling for Our Clients Section --- */
        .logo-slider-container {
            overflow: hidden;
            /* Create fade effect on edges */
            mask-image: linear-gradient(to right, 
                rgba(255, 255, 255, 0) 0%, 
                rgba(255, 255, 255, 1) 15%, 
                rgba(255, 255, 255, 1) 85%, 
                rgba(255, 255, 255, 0) 100%
            );
        }

        .logo-slide-track {
            display: flex;
            /* Calculated width for 12 logos duplicated (24 total), 300px each */
            width: calc(300px * 24); 
            animation: scroll-logos 40s linear infinite;
            will-change: transform;
        }

        .logo-item {
            width: 300px; /* Fixed width for consistent scrolling */
            flex-shrink: 0;
            padding: 1.5rem 1.5rem; /* Sufficient padding for square box */
        }
        
        /* CHANGED: logo-box is now an anchor tag */
        .logo-box {
            display: block; /* Ensure anchor behaves like a block */
            width: 100%;
            height: 100%;
            padding: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 1rem;
            background-color: transparent; /* Keep background transparent */
            box-shadow: 0 4px 10px rgba(2,6,23,0.06); /* Subtle shadow for a light floating effect */
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            cursor: pointer;
            aspect-ratio: 1 / 1; /* Enforce square size */
            text-decoration: none;
            overflow: visible; /* Allow logos to sit flush without clipping */
        }

        .logo-box:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 22px rgba(2,6,23,0.08); /* Slightly stronger on hover */
        }

        .logo-img {
            width: 100%;
            height: 100%;
            object-fit: contain; /* Ensures the logo fits inside without distortion */
            filter: grayscale(100%); /* Optional: Make logos grayscale initially */
            opacity: 0.7;
            transition: all 0.3s ease;
            border: none; /* Ensure logos have no visible borders */
        }
        
        .logo-box:hover .logo-img {
            filter: grayscale(0%); /* Show color on hover */
            opacity: 1;
        }

        @keyframes scroll-logos {
            0% {
                transform: translateX(0);
            }
            100% {
                /* Moves half the total width (12 logos) for infinite loop */
                transform: translateX(calc(-300px * 12)); 
            }
        }
        
        /* Mobile adjustment for faster scroll and smaller logos */
        @media (max-width: 640px) {
            .logo-item {
                width: 180px; /* Smaller width for mobile */
                padding: 1rem 1rem;
            }
            .logo-slide-track {
                 width: calc(180px * 24);
                 animation: scroll-logos-sm 30s linear infinite;
            }
            @keyframes scroll-logos-sm {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-180px * 12));
                }
            }
        }

        /* --- FAQ Accordion Styles --- */
        .faq-item {
            background-color: white;
            border: 1px solid #f3e8ff; /* Light purple border */
            border-radius: 1rem;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }

        .faq-item.open {
            box-shadow: 0 10px 30px rgba(109, 40, 217, 0.05);
        }

        .faq-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            cursor: pointer;
            font-weight: 600;
            color: #1f2937;
            transition: background-color 0.2s ease;
        }

        .faq-header:hover {
            background-color: #f9fafb;
        }

        .faq-content {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
            border-top: 1px solid transparent;
        }

        .faq-item.open .faq-content {
            max-height: 300px; /* Max height needs to be larger than content */
            padding: 0 1.5rem 1.5rem 1.5rem;
            border-top: 1px solid #f3e8ff;
        }

        .faq-icon {
            transition: transform 0.3s ease;
            color: #6d28d9;
        }

        .faq-item.open .faq-icon {
            transform: rotate(180deg);
        }
        
        /* --- Form Styling (For Enquiry) --- */
        .form-input {
            width: 100%;
            padding: 1rem;
            border: 1px solid #e5e7eb;
            border-radius: 0.75rem;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .form-input:focus {
            outline: none;
            border-color: #a855f7;
            box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
        }

        /* Additional form controls */
        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #374151;
        }

        .form-label .required {
            color: #ef4444;
            margin-left: 0.25rem;
            display: none; /* Hide asterisk visually */
        }

        .form-select {
            width: 100%;
            padding: 1rem;
            border: 1px solid #e5e7eb;
            border-radius: 0.75rem;
            background-color: white;
            appearance: none;
        }

        .form-textarea {
            width: 100%;
            min-height: 110px;
            padding: 1rem;
            border: 1px solid #e5e7eb;
            border-radius: 0.75rem;
            resize: vertical;
        }

        .btn-submit {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.85rem 1.25rem;
            background: linear-gradient(90deg,#7c3aed,#a855f7);
            color: white;
            border-radius: 0.75rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(124,58,237,0.18);
        }

        .btn-submit:hover { transform: translateY(-2px); }

        /* Modern Enquiry Section Styles */
        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInScale {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }

        @keyframes shimmer {
            0% { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }

        .enquiry-section {
            margin-top: 4rem;
            margin-bottom: 0;
            padding: 0;
        }

        .enquiry-wrapper {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            position: relative;
            overflow: hidden;
            padding: 4rem 1rem;
        }

        .enquiry-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: none;
            pointer-events: none;
        }

        .enquiry-container {
            max-width: 1200px;
            margin: 0 auto;
            animation: slideInUp 0.6s ease-out;
            position: relative;
            z-index: 10;
        }

        .enquiry-header {
            text-align: center;
            margin-bottom: 3rem;
            color: #1f2937;
        }

        .enquiry-header h2 {
            font-size: 2.75rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #a855f7, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
        }

        .enquiry-header p {
            color: #6b7280;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            font-weight: 500;
        }

        .enquiry-form-wrapper {
            background: rgba(255, 255, 255, 1);
            backdrop-filter: blur(10px);
            border-radius: 1.5rem;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #e5e7eb;
        }

        .enquiry-form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.75rem;
            margin-bottom: 2rem;
        }

        .form-group {
            animation: fadeInScale 0.5s ease-out;
        }

        .form-label {
            display: block;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.65rem;
            font-size: 0.95rem;
        }

        .form-label .required {
            color: #ef4444;
            margin-left: 0.25rem;
            display: none; /* Hide asterisk visually */
        }

        .form-input, .form-select, .form-textarea {
            width: 100%;
            padding: 0.85rem 1.1rem;
            border: 2px solid #e5e7eb;
            border-radius: 0.85rem;
            font-size: 0.95rem;
            font-family: inherit;
            transition: all 0.3s ease;
            background-color: #ffffff;
        }

        .form-input:focus, .form-select:focus, .form-textarea:focus {
            outline: none;
            border-color: #a855f7;
            box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.15);
            background-color: #faf9ff;
        }

        .form-textarea {
            resize: vertical;
            min-height: 110px;
        }

        .service-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.85rem;
            margin-top: 0.75rem;
        }

        .chip {
            display: inline-flex;
            align-items: center;
            padding: 0.7rem 1.15rem;
            background: linear-gradient(135deg, #f3f4f6, #f9fafb);
            border: 2px solid #e5e7eb;
            border-radius: 9999px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .chip::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .chip:hover {
            border-color: #a855f7;
            background: linear-gradient(135deg, #f5f3ff, #faf5ff);
            box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
        }

        .chip:hover::before {
            left: 100%;
        }

        .chip input[type="checkbox"] {
            margin-right: 0.6rem;
            cursor: pointer;
            accent-color: #a855f7;
        }

        .chip.selected {
            background: linear-gradient(135deg, #a855f7, #7c3aed);
            color: white;
            border-color: #7c3aed;
            box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
        }

        .enquiry-actions {
            display: flex;
            gap: 1.25rem;
            margin-top: 2.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-enquiry {
            padding: 1rem 2rem;
            border: none;
            border-radius: 1rem;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.65rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            position: relative;
            overflow: hidden;
        }

        .btn-enquiry::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .btn-enquiry:hover::before {
            transform: translateX(100%);
        }

        .btn-gmail {
            background: linear-gradient(135deg, #a855f7, #7c3aed);
            color: white;
            position: relative;
        }

        .btn-gmail:hover {
            background: linear-gradient(135deg, #9333ea, #6d28d9);
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(168, 85, 247, 0.4);
        }

        .btn-whatsapp {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            position: relative;
        }

        .btn-whatsapp:hover {
            background: linear-gradient(135deg, #059669, #047857);
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
        }

        .btn-enquiry:active {
            transform: translateY(-1px);
        }

        @media (max-width: 768px) {
            .enquiry-header h2 {
                font-size: 2rem;
            }

            .enquiry-form-wrapper {
                padding: 1.5rem;
            }

            .enquiry-actions {
                flex-direction: column;
                gap: 1rem;
            }

            .btn-enquiry {
                width: 100%;
            }
        }

/* Footer styles */
footer {
    background-color: #ffffff;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

footer .footer-logo {
    height: 4rem;
    margin-bottom: 1rem;
}

footer h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #9ca3af;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

footer ul {
    margin-top: 1rem;
    list-style: none;
    padding-left: 0;
}

footer ul li {
    margin-top: 1rem;
}

footer a {
    font-size: 1rem;
    color: #6b7280;
    text-decoration: none;
}

footer a:hover {
    color: #111827;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-copyright {
    font-size: 1rem;
    color: #9ca3af;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-social a {
    color: #9ca3af;
}

.footer-social a:hover {
    color: #6b7280;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-copyright {
        order: 1;
    }

    .footer-social {
        order: 2;
        margin-top: 0;
    }
}
