        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Prevent layout shifts with aspect-ratio */
        [style*='--aspect-ratio'] {
            position: relative;
            width: 100%;
        }

        [style*='--aspect-ratio']::before {
            content: '';
            display: block;
            padding-bottom: calc(100% / (var(--aspect-ratio)));
        }

        [style*='--aspect-ratio']> :first-child {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        html {
            scroll-behavior: smooth;
            /* Prevent horizontal scroll */
            overflow-x: hidden;
            width: 100%;
        }

        body {
            /* Prevent layout shifts */
            overflow-x: hidden;
            width: 100%;
            position: relative;
        }

        /* Custom Scrollbar */
        :root {
            --scrollbar-track: #f8fafc;
            --scrollbar-thumb: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
            --scrollbar-thumb-hover: linear-gradient(135deg, #2563eb, #7c3aed, #db2777);
            --scrollbar-width: 8px;
        }

        /* Scrollbar Styling */
        ::-webkit-scrollbar {
            width: var(--scrollbar-width);
            height: var(--scrollbar-width);
        }

        ::-webkit-scrollbar-track {
            background: var(--scrollbar-track);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--scrollbar-thumb);
            background-size: 400% 400%;
            border-radius: 10px;
            animation: scrollGradient 8s ease infinite;
            transition: all 0.3s ease;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--scrollbar-thumb-hover);
            background-size: 400% 400%;
            transform: scale(1.05);
        }

        @keyframes scrollGradient {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        /* Poppins Font Faces - Local WOFF2 */
        @font-face {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 300;
            font-display: swap;
            src: local('Poppins Light'), local('Poppins-Light'),
                url('../fonts/poppins-light.woff2') format('woff2');
        }

        @font-face {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 400;
            font-display: swap;
            src: local('Poppins Regular'), local('Poppins-Regular'),
                url('../fonts/poppins-regular.woff2') format('woff2');
        }

        @font-face {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 500;
            font-display: optional;
            src: local('Poppins Medium'), local('Poppins-Medium'),
                url('../fonts/poppins-medium.woff2') format('woff2');
        }

        @font-face {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 600;
            font-display: swap;
            src: local('Poppins SemiBold'), local('Poppins-SemiBold'),
                url('../fonts/poppins-semibold.woff2') format('woff2');
        }

        @font-face {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 700;
            font-display: optional;
            src: local('Poppins Bold'), local('Poppins-Bold'),
                url('../fonts/poppins-bold.woff2') format('woff2');
        }

        @font-face {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 800;
            font-display: optional;
            src: local('Poppins ExtraBold'), local('Poppins-ExtraBold'),
                url('../fonts/poppins-extrabold.woff2') format('woff2');
        }

        @font-face {
            font-family: 'Poppins';
            font-style: normal;
            font-weight: 900;
            font-display: optional;
            src: local('Poppins Black'), local('Poppins-Black'),
                url('../fonts/poppins-black.woff2') format('woff2');
        }

        .icon {
            display: inline-block;
            width: 1em;
            height: 1em;
            background-color: currentColor;
            mask: var(--icon-url) no-repeat center / contain;
            -webkit-mask: var(--icon-url) no-repeat center / contain;
        }

        .icon-spin {
            animation: icon-spin 1s linear infinite;
        }

        @keyframes icon-spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .icon.icon-star {
            --icon-url: url('images/icons/star.svg');
        }

        .icon.icon-circle-check {
            --icon-url: url('images/icons/circle-check.svg');
        }

        .icon.icon-clock {
            --icon-url: url('images/icons/clock.svg');
        }

        .icon.icon-wand-magic-sparkles {
            --icon-url: url('images/icons/wand-magic-sparkles.svg');
        }

        .icon.icon-play {
            --icon-url: url('images/icons/play.svg');
        }

        .icon.icon-bolt {
            --icon-url: url('images/icons/bolt.svg');
        }

        .icon.icon-mobile-screen-button {
            --icon-url: url('images/icons/mobile-screen-button.svg');
        }

        .icon.icon-magnifying-glass {
            --icon-url: url('images/icons/magnifying-glass.svg');
        }

        .icon.icon-gear {
            --icon-url: url('images/icons/gear.svg');
        }

        .icon.icon-laptop-code {
            --icon-url: url('images/icons/laptop-code.svg');
        }

        .icon.icon-window-restore {
            --icon-url: url('images/icons/window-restore.svg');
        }

        .icon.icon-chart-line {
            --icon-url: url('images/icons/chart-line.svg');
        }

        .icon.icon-sliders {
            --icon-url: url('images/icons/sliders.svg');
        }

        .icon.icon-wallet {
            --icon-url: url('images/icons/wallet.svg');
        }

        .icon.icon-lightbulb {
            --icon-url: url('images/icons/lightbulb.svg');
        }

        .icon.icon-globe {
            --icon-url: url('images/icons/globe.svg');
        }

        .icon.icon-briefcase {
            --icon-url: url('images/icons/briefcase.svg');
        }

        .icon.icon-eye {
            --icon-url: url('images/icons/eye.svg');
        }

        .icon.icon-envelope {
            --icon-url: url('images/icons/envelope.svg');
        }

        .icon.icon-paper-plane {
            --icon-url: url('images/icons/paper-plane.svg');
        }

        .icon.icon-handshake {
            --icon-url: url('images/icons/handshake.svg');
        }

        .icon.icon-credit-card {
            --icon-url: url('images/icons/credit-card.svg');
        }

        .icon.icon-calendar-days {
            --icon-url: url('images/icons/calendar-days.svg');
        }

        .icon.icon-user-check {
            --icon-url: url('images/icons/user-check.svg');
        }

        .icon.icon-copyright {
            --icon-url: url('images/icons/copyright.svg');
        }

        .icon.icon-shield-halved {
            --icon-url: url('images/icons/shield-halved.svg');
        }

        .icon.icon-gears {
            --icon-url: url('images/icons/gears.svg');
        }

        .icon.icon-lock {
            --icon-url: url('images/icons/lock.svg');
        }

        .icon.icon-user-shield {
            --icon-url: url('images/icons/user-shield.svg');
        }

        .icon.icon-desktop {
            --icon-url: url('images/icons/desktop.svg');
        }

        .icon.icon-tablet-screen-button {
            --icon-url: url('images/icons/tablet-screen-button.svg');
        }

        .icon.icon-spinner {
            --icon-url: url('images/icons/spinner.svg');
        }

        .icon.icon-sitemap {
            --icon-url: url('images/icons/sitemap.svg');
        }

        .icon.icon-auto-awesome {
            --icon-url: url('images/icons/auto_awesome.svg');
        }

        .icon.icon-rocket-launch {
            --icon-url: url('images/icons/rocket_launch.svg');
        }

        /* Base Typography */
        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            font-weight: 400;
            line-height: 1.6;
            color: #1f2937;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background: #ffffff;
            scrollbar-width: thin;
            scrollbar-color: #8b5cf6 #f1f1f1;
        }

        /* Headings */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: #111827;
            letter-spacing: -0.02em;
        }

        /* Hero Section */
        .hero-headline h1 {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: #111827;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .hero-headline h1 .gradient-text {
            background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 900;
            position: relative;
            display: inline-block;
        }

        .hero-headline h1 .sparkle-icon {
            font-size: 0.8em;
            margin-left: 10px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            vertical-align: middle;
            animation: sparkle 2s infinite;
        }

        @keyframes sparkle {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.7;
                transform: scale(1.1);
            }
        }

        .hero-left h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: #111827;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        /* Section Headers */
        .section-header h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            color: #111827;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        /* Buttons */
        .btn {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-weight: 600;
            letter-spacing: 0.02em;
        }

        /* Dark mode root toggles */
        /* prevent body scroll when mobile menu is open */
        .no-scroll {
            overflow: hidden;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Announcement Bar */
        .announcement-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 48px;
            background: linear-gradient(90deg, #0b1220, #071022);
            color: #e6eefb;
            z-index: 1100;
            display: flex;
            align-items: center;
            backdrop-filter: blur(6px);
        }

        .announcement-inner {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            height: 100%;
        }

        .announcement-icon {
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .announcement-link {
            color: #cbd5e1;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 0.3px;
            text-decoration: none;
            transition: color 0.18s ease;
        }

        .announcement-link:hover,
        .announcement-link:focus {
            color: #ffffff;
        }

        /* Push header below the announcement bar */
        .header {
            top: 48px;
            /* Matches the height of the announcement bar */
        }

        /* Reduce spacing below header for hero section */
        .hero {
            margin-top: 50px;
            /* Reduced to bring hero closer to navbar */
        }

        /* Smooth Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Scroll-triggered animation utilities */
        [data-animate] {
            --animate-duration: 0.75s;
            --animate-easing: cubic-bezier(0.16, 1, 0.3, 1);
            --animate-transform: translateY(36px);
            opacity: 0;
            transform: var(--animate-transform);
            transition:
                opacity var(--animate-duration) var(--animate-easing),
                transform var(--animate-duration) var(--animate-easing);
            transition-delay: var(--animate-delay, 0s);
            will-change: opacity, transform;
        }

        [data-animate].animate {
            opacity: 1;
            transform: none;
        }

        [data-animate="fade"] {
            --animate-transform: translateY(0);
        }

        [data-animate="slide-up"] {
            --animate-transform: translateY(36px);
        }

        [data-animate="slide-down"] {
            --animate-transform: translateY(-36px);
        }

        [data-animate="slide-left"] {
            --animate-transform: translateX(36px);
        }

        [data-animate="slide-right"] {
            --animate-transform: translateX(-36px);
        }

        [data-animate="zoom"] {
            --animate-transform: scale(0.94);
        }

        @media (prefers-reduced-motion: reduce) {
            [data-animate] {
                transition: none !important;
                opacity: 1 !important;
                transform: none !important;
            }
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 20px;
            font-weight: bold;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }

        .back-to-top:hover {
            background: linear-gradient(135deg, #2563eb, #7c3aed);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top-arrow {
            line-height: 1;
            transition: transform 0.3s ease;
        }

        .back-to-top:hover .back-to-top-arrow {
            transform: translateY(-2px);
        }

        /* Responsive Back to Top */
        @media (max-width: 768px) {
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {

            /* Ensure "Why Choose Us" text stays on one line */
            .section-tag {
                white-space: nowrap;
                display: inline-flex !important;
                align-items: center !important;
                gap: 8px !important;
            }

            /* Ensure dots remain perfect circles on mobile */
            .section-tag span {
                white-space: nowrap;
            }

            /* Ensure the blue dot stays circular and aligned */
            .section-tag span:first-child {
                width: 8px !important;
                height: 8px !important;
                min-width: 8px !important;
                min-height: 8px !important;
                flex-shrink: 0;
                display: inline-block !important;
            }

            .back-to-top {
                bottom: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        /* Smooth Carousel Animation */
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            95% {
                opacity: 1;
                transform: translateX(-50%);
            }

            96% {
                opacity: 0;
            }

            97% {
                opacity: 0;
                transform: translateX(0);
            }

            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Pause animation on hover */
        .carousel-container:hover .carousel-track {
            animation-play-state: paused;
        }

        /* Smooth image transitions */
        img {
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        /* Smooth page transitions */
        body {
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* Smooth scroll behavior for anchor links */
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 120px;
            /* Account for fixed header */
        }

        /* Smooth loading states */
        [data-loading] {
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        [data-loading="true"] {
            opacity: 1;
            transform: translateY(0);
        }

        /* Image Carousel Styles */
        .image-carousel {
            background-size: cover;
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .carousel-container {
            width: 100%;
            overflow-x: hidden;
            overflow-y: visible;
            position: relative;
            height: auto;
            min-height: 220px;
        }

        .carousel-track {
            display: flex;
            width: 200%;
            backface-visibility: hidden;
            perspective: 1000px;
            transform-style: preserve-3d;
            animation: scroll 24s linear infinite;
            will-change: transform, opacity;
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .carousel-item {
            flex: 0 0 12.5%;
            padding: 0;
            /* Removed padding */
            box-sizing: border-box;
            background: none !important;
            /* Remove any background */
            border: none !important;
            /* Remove any borders */
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backface-visibility: hidden;
            transform: translateZ(0);
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-item {
            position: relative;
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border: none !important;
            /* Remove any borders */
            box-shadow: none !important;
            /* Remove any shadows */
            background: none !important;
            /* Remove any background */
            display: block;
            /* Prevent layout shifts */
            aspect-ratio: 16/9;
            background: #f5f5f5;
            transition: transform 0.35s ease, filter 0.35s ease;
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
            will-change: transform;
            border-radius: 12px;
        }

        /* Placeholder for missing images - removed text */

        .carousel-item img:not([src]) {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-item:hover img {
            transform: scale(1.05);
        }

        /* Pause animation on hover */
        .carousel-container:hover .carousel-track {
            animation-play-state: paused;
        }

        /* Responsive Design for Carousel */
        @media (max-width: 768px) {
            .image-carousel {
                padding: 30px 0;
            }

            .carousel-container {
                min-height: 200px;
            }

            .carousel-item {
                flex: 0 0 25%;
                padding: 0;
                /* Removed padding for mobile */
            }
        }

        @media (max-width: 480px) {
            .carousel-container {
                min-height: 180px;
            }

            .carousel-item {
                flex: 0 0 33.333%;
                padding: 0;
                /* Removed padding for smaller screens */
            }

            .carousel-track {
                animation-duration: 7s;
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }

        @keyframes bounce {

            0%,
            20%,
            53%,
            80%,
            100% {
                transform: translateY(0);
            }

            40%,
            43% {
                transform: translateY(-30px);
            }

            70% {
                transform: translateY(-15px);
            }

            90% {
                transform: translateY(-4px);
            }
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes gradientShift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes glossyShine {
            0% {
                background-position: -200% center;
            }

            100% {
                background-position: 200% center;
            }
        }

        @keyframes ripple-animation {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }

        /* Animation Classes */
        .slide-in-left {
            animation: slideInLeft 0.8s ease-out forwards;
        }

        .slide-in-right {
            animation: slideInRight 0.8s ease-out forwards;
        }

        .delay-200 {
            animation-delay: 200ms;
        }

        .delay-400 {
            animation-delay: 400ms;
        }

        .delay-600 {
            animation-delay: 600ms;
        }

        .delay-800 {
            animation-delay: 800ms;
        }

        .delay-1000 {
            animation-delay: 1000ms;
        }

        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease infinite;
        }

        /* Buttons */
        .btn-primary {
            background: linear-gradient(135deg, #786EF3, #E059AE),
                linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
            background-size: 200% 200%, 200% 100%;
            background-position: 0% 50%, -200% center;
            color: white;
            padding: 10px 16px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
            animation: gradientShift 3s ease infinite, glossyShine 2s ease-in-out infinite;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 200%;
            height: 100%;
            background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
            transform: skewX(-20deg);
            transition: left 0.5s ease;
            z-index: -1;
        }

        .btn-primary:hover::after {
            left: 100%;
            transition: left 0.7s ease;
        }

        .btn-primary--desktop {
            background: linear-gradient(135deg, #786EF3 0%, #A855F7 45%, #E059AE 100%);
            background-size: 200% 200%;
            font-weight: 700;
            font-size: 14px;
            padding: 12px 20px;
            gap: 10px;
            animation: gradientShift 3s ease infinite;
        }

        .btn-primary--desktop:hover {
            transform: translateY(-1px);
            background: linear-gradient(135deg, #786EF3 0%, #A855F7 45%, #E059AE 100%);
            background-size: 200% 200%;
            animation: gradientShift 3s ease infinite;
        }

        .btn-primary--desktop .material-symbols-rounded {
            font-size: 20px;
            line-height: 1;
            font-variation-settings: 'FILL' 0, 'wght' 600, 'GRAD' 0, 'opsz' 48;
        }

        .btn-primary:hover {
            transform: translateY(-1px);
        }

        .btn-primary-large {
            background: linear-gradient(135deg, #3b82f6, #8b5cf6, #E059AE);
            background-size: 200% auto;
            color: white;
            padding: 16px 32px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
            animation: gradientShift 3s ease infinite;
        }

        .btn-primary-large::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 200%;
            height: 100%;
            background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
            transform: skewX(-20deg);
            transition: left 0.5s ease;
            z-index: -1;
        }

        .btn-primary-large:hover {
            transform: translateY(-2px) scale(1.02);
            background-position: right center;
        }

        .btn-primary-large:hover::after {
            left: 100%;
            transition: left 0.7s ease;
        }

        .btn-secondary-large {
            border: 1px solid #e5e7eb;
            color: #374151;
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            overflow: hidden;
            z-index: 1;
        }

        .btn-secondary-large::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 200%;
            height: 100%;
            background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
            transform: skewX(-20deg);
            transition: left 0.5s ease;
            z-index: -1;
        }

        .btn-secondary-large:hover::after {
            left: 100%;
            transition: left 0.7s ease;
        }

        .btn-secondary-large .icon {
            transition: transform 0.3s ease;
        }

        .btn-secondary-large:hover {
            border-color: transparent;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            background-size: 200% 200%;
            color: white;
            transform: translateY(-2px) scale(1.02);
            animation: gradientShift 3s ease infinite;
        }

        .btn-secondary-large:hover .icon {
            transform: translateX(4px);
            color: white;
        }

        .btn-outline {
            border: 1px solid #e5e7eb;
            color: #374151;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: white;
            width: 100%;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-outline::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 200%;
            height: 100%;
            background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
            transform: skewX(-20deg);
            transition: left 0.5s ease;
            z-index: -1;
        }

        .btn-outline:hover::after {
            left: 100%;
            transition: left 0.7s ease;
        }

        .btn-outline:hover {
            border-color: transparent;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            background-size: 200% 200%;
            color: white;
            transform: translateY(-1px);
            animation: gradientShift 3s ease infinite;
        }

        /* Ripple Effect */
        .ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.6);
            transform: scale(0);
            animation: ripple-animation 0.6s linear;
            pointer-events: none;
        }

        button,
        .btn-primary,
        .btn-secondary-large,
        .btn-primary-large {
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        /* Header */
        .header {
            position: fixed;
            top: 48px;
            /* Adjusted to account for the announcement bar */
            width: 100%;
            z-index: 1200;
            /* Increased z-index to ensure visibility */
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 8px 0;
            /* reduce header height */
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(229, 231, 235, 0.35);
            animation: slideDownFade 0.6s ease-out;
        }

        .header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(0);
        }

        .header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            box-shadow: 0 1px 30px rgba(0, 0, 0, 0.12);
            border-bottom: 1px solid rgba(229, 231, 235, 0.3);
            padding: 8px 0;
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            height: auto;
            /* Removed fixed height to prevent cutting off */
            margin-left: 7px;
            padding: 5px 0;
            /* Add some vertical padding */
        }

        /* Mobile devices only (below 768px) */
        @media (max-width: 767px) {
            .logo {
                margin-left: 17px;
            }

            .nav-desktop {
                display: none !important;
            }

            .mobile-menu-btn {
                display: flex !important;
                position: relative;
                z-index: 1001;
            }
        }

        .logo-img {
            height: 45px;
            /* Set to 45px as requested */
            width: auto;
            /* Maintain aspect ratio */
            max-width: 225px;
            object-fit: contain;
            /* Ensure the image fits within the dimensions */
        }

        .logo-text {
            font-size: clamp(24px, 5vw, 32px);
            /* Dynamically adjusts between 24px and 32px */
            font-weight: 800;
            color: #111827;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #111827, #374151);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-desktop {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-desktop .btn-primary {
            background: linear-gradient(135deg, #786EF3 0%, #A855F7 50%, #6366F1 100%);
            font-weight: 600;
        }

        .nav-desktop .btn-primary:hover {
            transform: translateY(-1px);
        }

        .mobile-menu-btn {
            display: none;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border: none;
            background: transparent;
            padding: 0;
            cursor: pointer;
            transition: transform 0.25s ease;
        }

        .mobile-menu-btn:focus-visible {
            outline: 3px solid rgba(59, 130, 246, 0.4);
            outline-offset: 3px;
        }

        .mobile-menu-btn:hover {
            transform: translateY(-2px);
        }

        .mobile-menu-icon {
            font-size: 30px;
            line-height: 1;
            color: #4F46E5;
            transition: opacity 0.4s ease-in-out;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            backface-visibility: hidden;
            transform: translateZ(0);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            opacity: 1;
        }

        .mobile-menu-btn.is-active .mobile-menu-icon {
            opacity: 1;
        }

        .mobile-menu {
            position: absolute;
            top: 100%;
            right: 0;
            left: 0;
            display: block;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(8px);
            transition: opacity 0.25s ease, transform 0.25s ease;
            z-index: 1300;
        }

        .mobile-menu.open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
        }

        .mobile-menu-content {
            width: 100%;
            margin-left: auto;
            background: #ffffff;
            padding: 16px;
            box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
            border-radius: 16px;
            border: 1px solid rgba(226, 232, 240, 0.8);
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        @media (max-width: 768px) {
            .mobile-menu-content {
                max-width: none;
            }
        }

        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .mobile-menu-links .nav-link {
            width: 100%;
            display: block;
            padding: 12px 14px;
            border-radius: 10px;
            background: #F9FAFB;
            border: 1px solid rgba(229, 231, 235, 0.8);
            font-weight: 600;
            color: #0f172a;
        }

        .mobile-menu-links .nav-link:hover {
            background: #EEF2FF;
        }

        .mobile-menu .btn-primary.mobile-menu-cta {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-align: center;
            padding: 14px 0;
            border-radius: 14px;
            background: linear-gradient(135deg, #7C3AED 0%, #A855F7 45%, #6366F1 100%) !important;
            background-size: 200% 200% !important;
            animation: gradientShift 3s ease infinite !important;
            color: #ffffff;
            font-weight: 600;
            box-shadow: 0 18px 35px rgba(124, 58, 237, 0.25);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            margin: 0 auto;
        }

        .mobile-menu .btn-primary.mobile-menu-cta:hover {
            transform: translateY(-2px);
            background: linear-gradient(135deg, #7C3AED 0%, #A855F7 45%, #6366F1 100%) !important;
            background-size: 200% 200% !important;
            animation: gradientShift 3s ease infinite !important;
            box-shadow: 0 22px 40px rgba(99, 102, 241, 0.35);
        }

        @media (min-width: 769px) {
            .mobile-menu {
                display: none !important;
            }
        }

        .nav-link {
            color: #1f2937;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            padding: 8px 12px;
            margin: 0 4px;
            border-radius: 8px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .nav-dropdown {
            position: relative;
            padding-right: 24px !important;
        }

        .nav-chevron {
            font-size: 10px;
            transition: transform 0.3s ease, opacity 0.3s ease;
            opacity: 0.7;
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
        }

        /* Removed dropdown chevron hover effect */

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: #3b82f6;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 70%;
        }

        .nav-link:hover {
            color: #111827;
        }


        /* Animated Blur Circle */
        @keyframes float {
            0% {
                transform: translate(0, 0) scale(1);
                opacity: 0.4;
            }

            50% {
                transform: translate(10px, 10px) scale(1.1);
                opacity: 0.6;
            }

            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.4;
            }
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: #8b5cf6;
            /* Updated to a softer purple */
            border-radius: 50%;
            filter: blur(80px);
            right: 10%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.2;
            /* Reduced opacity for a more subtle effect */
            animation: float 8s ease-in-out infinite;
            z-index: 0;
        }

        /* Hero Section */
        @media (max-width: 480px) {

            /* Contact form button centering for mobile */
            .contact-form .btn-primary-large {
                display: block;
                margin: 0 auto;
                width: 80%;
                max-width: 220px;
                text-align: center;
            }

            /* Background images optimized for mobile - now enabled on all devices */

            .services::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(15, 23, 42, 0.9);
                z-index: 1;
            }

            .services .container {
                position: relative;
                z-index: 2;
            }

            /* Reset hero positioning */
            .hero {
                position: relative;
                padding-top: 100px;
                /* Fixed padding to account for navbar */
                min-height: calc(100vh - 100px);
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                /* Align content to top */
                margin-top: 60px;
                /* Space for fixed navbar */
            }

            /* Hide blurry background on mobile */
            .hero-bg::after {
                display: none;
            }

            /* Ensure content is properly spaced */
            .hero-content {
                padding-top: 20px;
                margin-top: 0;
            }

            /* Adjust hero image container */
            .hero-image-container {
                margin-top: 20px;
                width: 100%;
            }

            /* Ensure navbar stays on top */
            .header {
                position: fixed;
                top: 48px;
                left: 0;
                right: 0;
                z-index: 1000;
            }

            /* Hero background for mobile - moved to media query below */

            /* Remove floating shapes on mobile */
            .floating-shape,
            .shape-1,
            .shape-2,
            .shape-3,
            .mouse-follower {
                display: none !important;
            }

            .grid-pattern {
                display: block !important;
                background-image: radial-gradient(circle at 1px 1px, rgba(147, 51, 234, 0.15) 1px, transparent 0) !important;
                background-size: 24px 24px !important;
                opacity: 1 !important;
                mask-image: linear-gradient(to bottom, black 60%, transparent 100%) !important;
                -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%) !important;
            }

            /* Add padding to body to prevent content from being hidden behind fixed header */
            body {
                padding-top: 100px;
                /* Reduced from 120px to 80px for better spacing on larger phones */
                background: #ffffff;
                /* Ensure solid white background */
            }

            /* Ensure hero section has background image */
            .hero-bg {
                /* background: url('../images/hero-bg-2-hq-ori.webp') no-repeat center center !important; */
                background-size: cover !important;
            }
        }

        .hero {
            position: relative;
            padding: 64px 0 64px;
            /* tighten top and bottom padding */
            min-height: 88vh;
            /* slightly smaller hero */
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: radial-gradient(1200px 800px at -10% -20%, rgba(59, 130, 246, 0.10) 0%, rgba(59, 130, 246, 0) 60%),
                radial-gradient(900px 700px at 110% -10%, rgba(236, 72, 153, 0.10) 0%, rgba(236, 72, 153, 0) 60%),
                linear-gradient(135deg, #fafbfc 0%, #ffffff 40%, #f8fafc 100%);
        }

        /* Hide mobile hero background on desktop/laptop screens */
        .mobile-hero-bg {
            display: none;
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            animation: float 6s ease-in-out infinite;
            animation-fill-mode: both;
        }

        .shape-1 {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            opacity: 0.15;
            top: 80px;
            left: 40px;
            animation-delay: -0.5s;
        }

        .shape-2 {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #8b5cf6, #ec4899);
            opacity: 0.15;
            top: 160px;
            right: 80px;
            animation-delay: -1.5s;
        }

        .shape-3 {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ec4899, #3b82f6);
            opacity: 0.15;
            bottom: 80px;
            left: 25%;
            animation-delay: -1s;
        }

        .grid-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.03;
            /* slightly more visible */
            background-image: radial-gradient(circle at 1px 1px, rgba(15, 23, 42, 0.18) 1px, transparent 0);
            background-size: 46px 46px;
            mask-image: radial-gradient(60% 60% at 50% 0%, black, transparent);
        }

        /* Purple dots pattern for laptop/desktop */
        @media (min-width: 769px) {
            .grid-pattern {
                background-image: radial-gradient(circle at 1px 1px, rgba(147, 51, 234, 0.15) 1px, transparent 0) !important;
                background-size: 15px 15px !important;
                opacity: 1 !important;
                mask-image: none !important;
                -webkit-mask-image: none !important;
            }
        }

        .mouse-follower {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle,
                    rgba(99, 102, 241, 0.15) 0%,
                    rgba(139, 92, 246, 0.12) 25%,
                    rgba(236, 72, 153, 0.08) 50%,
                    rgba(59, 130, 246, 0.05) 75%,
                    transparent 100%);
            border-radius: 50%;
            filter: blur(80px);
            pointer-events: none;
            transition: all 0.15s ease-out;
            z-index: 1;
            opacity: 0.8;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .trust-indicators {
            display: flex;
            gap: 16px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            padding: 8px 12px;
            border-radius: 20px;
            border: 1px solid rgba(229, 231, 235, 0.5);
            font-weight: 500;
            font-size: 13px;
            transition: all 0.3s ease;
        }

        .trust-item:hover {
            transform: scale(1.02);
        }

        .stars {
            display: flex;
            gap: 1px;
        }

        .stars .icon {
            color: #fbbf24;
            font-size: 12px;
            animation: pulse 2s infinite;
        }

        .stars .icon:nth-child(1) {
            animation-delay: 0s;
        }

        .stars .icon:nth-child(2) {
            animation-delay: 0.2s;
        }

        .stars .icon:nth-child(3) {
            animation-delay: 0.4s;
        }

        .stars .icon:nth-child(4) {
            animation-delay: 0.6s;
        }

        .stars .icon:nth-child(5) {
            animation-delay: 0.8s;
        }

        .trust-item .icon {
            color: #3b82f6;
            font-size: 12px;
        }

        .hero-headline h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 24px;
            color: #111827;
            letter-spacing: -0.04em;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .hero-headline h1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
            animation: shimmer 2s infinite;
            border-radius: 8px;
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }

            100% {
                background-position: 200% 0;
            }
        }

        .sparkle-icon {
            position: absolute;
            top: -8px;
            right: -32px;
            color: #fbbf24;
            font-size: 24px;
            animation: sparkle 2s ease-in-out infinite;
            animation-delay: 1s;
        }

        @keyframes sparkle {

            0%,
            100% {
                transform: scale(1) rotate(0deg);
                opacity: 1;
            }

            50% {
                transform: scale(1.2) rotate(180deg);
                opacity: 0.8;
            }
        }

        .hero-description {
            font-size: 19px;
            color: #181924d8;
            line-height: 1.7;
            margin-bottom: 32px;
            max-width: 500px;
            font-weight: 400;
            letter-spacing: -0.01em;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            margin-bottom: 48px;
            flex-wrap: wrap;
        }

        .key-benefits {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            padding-top: 32px;
            border-top: 1px solid #e5e7eb;
        }

        .benefit-item {
            text-align: center;
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            transform: scale(1.05);
        }

        .benefit-icon {
            width: 40px;
            height: 40px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            transition: all 0.3s ease;
        }

        .benefit-item:hover .benefit-icon {
            background: rgba(59, 130, 246, 0.15);
        }

        .benefit-icon .icon {
            color: #3b82f6;
            font-size: 18px;
        }

        .benefit-value {
            font-size: 20px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 4px;
            transition: all 0.3s ease;
        }

        .benefit-item:hover .benefit-value {
            color: #3b82f6;
        }

        .benefit-label {
            font-size: 13px;
            color: #6f7174;
            font-weight: 500;
        }

        /* Hero Right - Design Studio */
        .hero-right {
            position: relative;
            transform: translateY(-24px);
            /* lift right hero block */
            border: none !important;
            /* Ensure no borders */
            box-shadow: none !important;
            /* Ensure no shadows */
        }

        /* Hero Image Container - 3D Tilt Effect */
        .hero-image-container {
            position: relative;
            perspective: 1000px;
            transform-style: preserve-3d;
        }

        .tilt-image {
            display: block;
            transform-style: preserve-3d;
            backface-visibility: hidden;
            will-change: transform;
            transition: transform 0.1s ease-out;
            opacity: 1;
            visibility: visible;
        }

        .design-studio {
            position: relative;
            z-index: 10;
            transform: translateY(-12px);
            /* additional subtle lift */
        }

        .browser-frame {
            background: linear-gradient(135deg, #111827, #1f2937, #111827);
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
            padding: 3px;
            transition: all 0.7s ease;
            border: 1px solid #374151;
        }

        .browser-frame:hover {
            transform: scale(1.02);
        }

        .browser-header {
            background: #1f2937;
            border-radius: 13px 13px 0 0;
            padding: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .browser-controls {
            display: flex;
            gap: 6px;
        }

        .control {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .control.red {
            background: #ef4444;
        }

        .control.yellow {
            background: #f59e0b;
            animation-delay: 0.2s;
        }

        .control.green {
            background: #10b981;
            animation-delay: 0.4s;
        }

        .address-bar {
            flex: 1;
            background: #374151;
            border-radius: 6px;
            padding: 6px 12px;
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
        }

        .address-icon {
            position: absolute;
            top: -8px;
            right: 8px;
            color: #3b82f6;
            font-size: 10px;
            animation: bounce 2s infinite;
        }

        .address-bar .icon {
            color: #9ca3af;
            font-size: 12px;
        }

        .address-bar span {
            color: #d1d5db;
            font-size: 12px;
            font-family: 'JetBrains Mono', 'Courier New', monospace;
            font-weight: 500;
        }

        .design-interface {
            background: white;
            border-radius: 0 0 13px 13px;
            padding: 20px;
            min-height: 320px;
            position: relative;
            overflow: hidden;
        }

        /* Rotating Images - Full Screen */
        .rotating-images {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .image-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .rotating-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .rotating-img.active {
            opacity: 1;
        }

        .code-lines {
            position: absolute;
            top: 12px;
            left: 12px;
            display: none;
            flex-direction: column;
            gap: 6px;
        }

        .code-line {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .code-line .icon {
            color: #3b82f6;
            font-size: 12px;
        }

        .code-bar {
            height: 6px;
            border-radius: 3px;
            animation: pulse 2s infinite;
        }

        .code-bar.blue {
            width: 100px;
            background: linear-gradient(135deg, #dbeafe, #bfdbfe);
        }

        .code-bar.purple {
            width: 80px;
            background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
            margin-left: 20px;
        }

        .code-bar.pink {
            width: 70px;
            background: linear-gradient(135deg, #fce7f3, #fbcfe8);
            margin-left: 20px;
        }

        .code-bar.blue {
            animation-delay: 0s;
        }

        .code-bar.purple {
            animation-delay: 0.3s;
        }

        .code-bar.pink {
            animation-delay: 0.6s;
        }

        .device-preview {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 15;
            display: none;
        }

        .device-frame {
            width: 160px;
            height: 100px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            border-radius: 12px;
            padding: 12px;
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
            transition: all 1s ease;
            animation: float 6s ease-in-out infinite;
        }

        .device-frame:hover {
            transform: rotate(2deg);
        }

        .device-content {
            background: white;
            border-radius: 0 0 13px 13px;
            padding: 20px;
            min-height: 320px;
            position: relative;
            overflow: hidden;
            background-color: #0A1121;
            color: #e6eefb;
            position: relative;
        }

        .device-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 20%, rgba(92, 79, 240, 0.2) 0%, transparent 25%),
                radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.2) 0%, transparent 25%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 25%),
                radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.15) 0%, transparent 25%);
            background-size: 200% 200%;
            animation: gradientMove 15s ease infinite;
            z-index: 0;
            pointer-events: none;
        }

        @keyframes gradientMove {
            0% {
                background-position: 0% 0%;
            }

            25% {
                background-position: 100% 0%;
            }

            50% {
                background-position: 100% 100%;
            }

            75% {
                background-position: 0% 100%;
            }

            100% {
                background-position: 0% 0%;
            }
        }

        .device-content .container {
            position: relative;
            z-index: 1;
        }

        .device-content .section-header h2,
        .device-content .section-header h3,
        .device-content .section-header p,
        .device-content .feature-item h4,
        .device-content .feature-item p,
        .device-content .process-steps h3,
        .device-content .process-steps p {
            color: #e6eefb;
        }

        .device-content .section-header p {
            opacity: 0.9;
        }

        .device-content .feature-item {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 32px;
            transition: all 0.3s ease;
        }

        .device-content .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-color: rgba(92, 79, 240, 0.4);
        }

        .device-content .feature-icon {
            background: rgba(92, 79, 240, 0.1);
            border: 1px solid rgba(92, 79, 240, 0.2);
        }

        .device-content .step-item {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 32px;
            transition: all 0.3s ease;
        }

        .device-content .step-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .device-content .step-icon {
            background: rgba(92, 79, 240, 0.1);
            border: 1px solid rgba(92, 79, 240, 0.2);
        }

        .device-content .gradient-text {
            background: linear-gradient(135deg, #8B5CF6, #EC4899);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .content-line {
            height: 6px;
            border-radius: 3px;
            margin-bottom: 6px;
            animation: pulse 2s infinite;
        }

        .content-line.full {
            width: 100%;
            background: linear-gradient(135deg, #e5e7eb, #dbeafe);
        }

        .content-line.three-quarter {
            width: 75%;
            background: linear-gradient(135deg, #dbeafe, #e0e7ff);
            animation-delay: 0.2s;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6px;
            margin-top: 8px;
        }

        .grid-item {
            height: 24px;
            border-radius: 3px;
            animation: pulse 2s infinite;
        }

        .grid-item:first-child {
            background: linear-gradient(135deg, #dbeafe, #e0e7ff);
            animation-delay: 0.4s;
        }

        .grid-item:last-child {
            background: linear-gradient(135deg, #e0e7ff, #fce7f3);
            animation-delay: 0.6s;
        }

        .floating-particle {
            position: absolute;
            width: 6px;
            height: 6px;
            border-radius: 50%;
        }

        .particle-1 {
            background: #3b82f6;
            top: 6px;
            right: 6px;
            animation: bounce 2s infinite;
        }

        .particle-2 {
            background: #8b5cf6;
            bottom: 6px;
            left: 6px;
            width: 3px;
            height: 3px;
            animation: pulse 2s infinite;
            animation-delay: 1s;
        }

        .device-label {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 12px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 6px 12px;
            border-radius: 20px;
            border: 1px solid rgba(229, 231, 235, 0.5);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .device-label .icon {
            color: #6b7280;
            font-size: 10px;
        }

        .device-label span {
            color: #374151;
            font-size: 11px;
            font-weight: 500;
        }

        .design-tools {
            position: absolute;
            bottom: 12px;
            right: 12px;
            display: none;
            gap: 6px;
            z-index: 15;
        }

        .tool-icon {
            width: 24px;
            height: 24px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            animation: bounce 2s infinite;
        }

        .tool-icon.pink {
            background: linear-gradient(135deg, #ec4899, #f43f5e);
            animation-delay: 0.8s;
        }

        .tool-icon.blue {
            background: linear-gradient(135deg, #3b82f6, #06b6d4);
            animation-delay: 1s;
        }

        .tool-icon .icon {
            color: white;
            font-size: 12px;
        }

        /* Floating Badges */
        .floating-badge {
            position: absolute;
            background: white;
            padding: 8px 12px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(229, 231, 235, 0.5);
            display: none;
            align-items: center;
            gap: 6px;
            font-weight: 500;
            font-size: 12px;
            transition: all 0.3s ease;
            z-index: 20;
        }

        .floating-badge:hover {
            transform: scale(1.05);
        }

        .live-badge {
            top: -20px;
            right: -20px;
            background: linear-gradient(135deg, #10b981, #14b8a6);
            color: white;
            animation-delay: 1.2s;
        }

        .website-badge {
            bottom: -20px;
            left: -20px;
            animation-delay: 1.4s;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            min-width: 8px;
            min-height: 8px;
            background: #10b981;
            border-radius: 50%;
            display: inline-block;
            flex-shrink: 0;
        }

        .website-badge .icon {
            color: #10b981;
        }

        .star-badge {
            top: 50%;
            left: -28px;
            background: linear-gradient(135deg, #8b5cf6, #ec4899);
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            justify-content: center;
            animation-delay: 1.6s;
        }

        .star-badge .icon {
            font-size: 16px;
        }

        .sparkle-badge {
            top: 25%;
            right: -12px;
            background: linear-gradient(135deg, #ec4899, #3b82f6);
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            justify-content: center;
            animation-delay: 1.8s;
        }

        .sparkle-badge .icon {
            font-size: 16px;
        }

        .growth-badge {
            top: 33%;
            right: 28px;
            background: linear-gradient(135deg, #10b981, #14b8a6);
            color: white;
            flex-direction: column;
            gap: 2px;
            animation: float 3s ease-in-out infinite;
            animation-delay: 2s;
        }

        .growth-badge .icon {
            font-size: 16px;
        }

        .growth-label {
            font-size: 10px;
            opacity: 0.9;
        }

        /* Section Styles */
        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: #f8fafc;
            color: #4b5563;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.2s ease;
            border: 1px solid #e2e8f0;
            text-decoration: none;
        }

        .section-badge .icon {
            color: #64748b;
            font-size: 14px;
            transition: all 0.2s ease;
        }

        .section-badge:hover .icon {
            color: #3b82f6;
            transform: translateX(2px);
        }

        .section-badge:hover {
            background: #f1f5f9;
            color: #334155;
            border-color: #cbd5e1;
        }

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 900;
            color: #111827;
            margin-bottom: 20px;
            letter-spacing: -0.04em;
            animation: fadeInUp 0.8s ease;
            animation-delay: 0.2s;
            animation-fill-mode: both;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }

        .section-header h3 {
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 800;
            color: #111827;
            margin-bottom: 20px;
            letter-spacing: -0.03em;
            animation: fadeInUp 0.8s ease;
            animation-delay: 0.2s;
            animation-fill-mode: both;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }

        .section-header p {
            font-size: 19px;
            color: #6b7280;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
            animation: fadeInUp 0.8s ease;
            animation-delay: 0.4s;
            animation-fill-mode: both;
            font-weight: 400;
            letter-spacing: -0.01em;
        }

        /* Services Section */
        .services {
            padding: 80px 0;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
            background-image: url('images/services-background.webp');
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            position: relative;
            overflow: hidden;
            /* Fallback for slow loading */
            background-color: #0f172a;
        }

        .services .container {
            position: relative;
            z-index: 1;
        }

        .services-spline {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .services-spline iframe {
            width: 100%;
            height: 100%;
            border: 0;
            transform: scale(1.08);
            transform-origin: center;
            filter: saturate(1.2);
        }

        .section-content {
            padding: 60px 0;
        }

        .section-header {
            margin-bottom: 30px;
        }

        .features-grid {
            margin-top: 20px;
        }

        .services .section-header h2,
        .services .section-header p,
        .services .feature-item h4,
        .services .feature-item p {
            color: #ffffff;
        }

        .services .section-header p {
            color: rgba(255, 255, 255, 0.8);
        }

        .services .feature-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 30px;
            transition: all 0.3s ease;
        }

        .services .feature-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .services .feature-item p {
            color: rgba(255, 255, 255, 0.7);
        }

        .services .feature-icon {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
        }

        .services .section-badge {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
        }

        .services .section-badge .icon {
            color: #ffffff;
        }

        .services::after {
            content: "";
            position: absolute;
            inset: 0 -20% auto -20%;
            pointer-events: none;
        }

        .services::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0.02;
            background-image: radial-gradient(circle at 2px 2px, rgb(0, 0, 0) 1px, transparent 0);
            background-size: 60px 60px;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 32px;
            margin-bottom: 40px;
        }

        .step-item {
            background: #ffffff;
            border-radius: 28px;
            padding: 38px 32px 32px;
            border: 1px solid rgba(226, 232, 240, 0.8);
            box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: left;
            position: relative;
            overflow: hidden;
        }

        .step-item::before {
            content: attr(data-step);
            position: absolute;
            top: -24px;
            right: 12px;
            font-size: clamp(120px, 20vw, 220px);
            font-weight: 800;
            color: rgba(15, 23, 42, 0.05);
            line-height: 1;
            z-index: 0;
            pointer-events: none;
        }

        .step-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 48px rgba(15, 23, 42, 0.09);
        }

        .step-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
            opacity: 0.9;
            z-index: 1;
        }

        .step-header {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 18px;
            position: relative;
            z-index: 1;
        }

        .step-icon {
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0;
            position: relative;
            z-index: 1;
        }

        .step-icon img {
            width: 56px;
            height: 56px;
            object-fit: contain;
        }

        @media (max-width: 768px) {
            .step-item {
                border-radius: 24px;
                padding: 28px 24px 26px;
                box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
            }

            .step-item::before {
                font-size: clamp(90px, 32vw, 160px);
                top: -18px;
                right: 8px;
            }

            .step-header {
                gap: 14px;
                margin-bottom: 16px;
            }

            .step-icon {
                width: 58px;
                height: 58px;
            }

            .step-icon img {
                width: 48px;
                height: 48px;
            }
        }

        .step-item h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #111827;
            margin: 0;
        }

        .step-item p {
            color: rgba(17, 24, 39, 0.68);
            line-height: 1.7;
            font-size: 0.95rem;
            position: relative;
            z-index: 1;
            max-width: 320px;
        }

        .features-section {
            margin-top: 64px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
        }

        .feature-item {
            background: white;
            padding: 28px;
            border-radius: 16px;
            border: 1px solid rgba(229, 231, 235, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        }

        .feature-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: rgba(59, 130, 246, 0.2);
        }

        .feature-item::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: all 0.5s ease;
            border-radius: 16px;
        }

        .feature-item:hover::before {
            opacity: 0.03;
        }

        .feature-item:nth-child(1)::before {
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        }

        .feature-item:nth-child(2)::before {
            background: linear-gradient(135deg, #8b5cf6, #ec4899);
        }

        .feature-item:nth-child(3)::before {
            background: linear-gradient(135deg, #ec4899, #f43f5e);
        }

        .feature-item:nth-child(4)::before {
            background: linear-gradient(135deg, #f43f5e, #f97316);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .feature-item:hover .feature-icon {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
        }

        .feature-icon.blue {
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        }

        .feature-icon.purple {
            background: linear-gradient(135deg, #8b5cf6, #ec4899);
        }

        .feature-icon.pink {
            background: linear-gradient(135deg, #ec4899, #f43f5e);
        }

        .feature-icon.orange {
            background: linear-gradient(135deg, #f43f5e, #f97316);
        }

        .feature-icon .icon {
            color: white;
            font-size: 20px;
            position: relative;
            z-index: 1;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feature-item:hover .feature-icon .icon {
            transform: scale(1.1);
        }

        .feature-item h4 {
            font-size: 18px;
            font-weight: 600;
            color: #111827;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }

        .feature-item:hover h4 {
            color: #3b82f6;
        }

        .feature-item p {
            color: #6b7280;
            line-height: 1.6;
            font-size: 14px;
        }

        /* Pricing Section */
        .pricing {
            padding: 80px 0;
            background: linear-gradient(135deg, #f9fafb 0%, rgba(248, 250, 252, 0.8) 50%, rgba(248, 250, 252, 0.8) 100%);
            position: relative;
            overflow: hidden;
        }

        .pricing::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0.02;
            background-image: radial-gradient(circle at 1px 1px, rgb(0, 0, 0) 1px, transparent 0);
            background-size: 40px 40px;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
            max-width: 800px;
            margin: 0 auto 64px;
        }

        .pricing-card {
            background: white;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(229, 231, 235, 0.3);
            transition: all 0.5s ease;
            position: relative;
            animation: fadeInUp 0.8s ease;
            backdrop-filter: blur(10px);
        }

        .pricing-card:nth-child(1) {
            animation-delay: 0s;
        }

        .pricing-card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: rgba(59, 130, 246, 0.2);
        }

        .pricing-card.popular {
            border-color: rgba(139, 92, 246, 0.3);
            transform: scale(1.02);
            z-index: 10;
        }

        .pricing-card.popular:hover {
            transform: scale(1.02) translateY(-4px);
        }

        .popular-badge {
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #8b5cf6, #ec4899);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
            animation: bounce 2s infinite;
        }

        .card-header {
            text-align: center;
            margin-bottom: 24px;
        }

        .plan-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .pricing-card:hover .plan-icon {
            transform: scale(1.05);
        }

        .plan-icon.blue {
            background: linear-gradient(135deg, #3b82f6, #06b6d4);
        }

        .plan-icon.purple {
            background: linear-gradient(135deg, #8b5cf6, #ec4899);
        }

        .plan-icon .icon {
            color: white;
            font-size: 20px;
        }

        .card-header h3 {
            font-size: 20px;
            font-weight: 600;
            color: #111827;
            margin-bottom: 12px;
        }

        .price {
            margin-bottom: 12px;
        }

        .amount {
            font-size: 36px;
            font-weight: 800;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .period {
            font-size: 14px;
            color: #6b7280;
            margin-left: 6px;
            font-weight: 500;
        }

        .card-header p {
            color: #6b7280;
            line-height: 1.6;
            font-size: 14px;
        }

        .features-list {
            margin-bottom: 24px;
        }

        .feature {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }

        .feature:hover {
            color: #111827;
        }

        .feature .icon {
            width: 16px;
            height: 16px;
            background: linear-gradient(135deg, #10b981, #14b8a6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 10px;
            margin-top: 2px;
            transition: all 0.3s ease;
        }

        .feature:hover .icon {
            transform: scale(1.1);
        }

        .feature span {
            color: #374151;
            line-height: 1.6;
            font-size: 14px;
        }

        .guarantee-section {
            text-align: center;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 24px;
            border: 1px solid rgba(229, 231, 235, 0.5);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            max-width: 800px;
            margin: 0 auto;
            animation: fadeInUp 0.8s ease;
            animation-delay: 0.4s;
            animation-fill-mode: both;
        }

        .guarantee-section p {
            font-size: 16px;
            font-weight: 600;
            color: #374151;
            margin-bottom: 20px;
        }

        .guarantee-items {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .guarantee-item {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #6b7280;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .guarantee-item:hover {
            color: #3b82f6;
        }

        .guarantee-item .icon {
            width: 16px;
            height: 16px;
            background: linear-gradient(135deg, #10b981, #14b8a6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 10px;
        }

        /* Growth CTA Section */
        .growth-cta {
            position: relative;
            padding: 60px 0;
            background: transparent;
            color: #111827;
            overflow: hidden;
        }

        .growth-cta-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #EBEBF2 0%, #f8fafc 50%, #EBEBF2 100%);
            background-image: url("images/features-background.webp");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 1;
            filter: none;
            transform: scale(1.02);
            pointer-events: none;
            /* Fallback for slow loading */
            background-color: #EBEBF2;
        }

        .growth-cta .container {
            position: relative;
            z-index: 1;
        }

        .growth-cta-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
            gap: 56px;
            align-items: center;
        }

        .growth-cta-title {
            font-size: clamp(2.2rem, 4vw, 3rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 28px;
            color: #0f172a;
        }

        .growth-cta-business {
            font-family: 'Pacifico', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            font-weight: 700;
            font-style: normal;
            letter-spacing: 0.04em;
            color: #7467F6;
            text-transform: uppercase;
            display: inline-block;
        }

        .growth-cta-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 18px;
            margin-bottom: 32px;
        }

        .growth-cta-list li {
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }

        .growth-cta-icon {
            width: 32px;
            height: 32px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(59, 130, 246, 0.12);
            color: #3b82f6;
            flex-shrink: 0;
        }

        .growth-cta-list h3 {
            font-size: 1rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 4px;
        }

        .growth-cta-list p {
            font-size: 0.95rem;
            color: #4b5563;
        }

        .mobile-menu-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            color: white;
            margin: 20px 15px 0;
            text-align: center;
        }

        .mobile-menu-cta .right-down-icon {
            width: 24px;
            height: 24px;
            filter: brightness(0) invert(1);
            /* Makes the icon white */
            transition: transform 0.3s ease;
        }

        .mobile-menu-cta:hover .right-down-icon {
            transform: translate(3px, 3px);
            /* Slight movement on hover for better UX */
        }

        .btn-growth-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 26px;
            border-radius: 999px;
            border: none;
            cursor: pointer;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            background: linear-gradient(135deg, #786EF3, #E059AE);
            background-size: 200% 200%;
            color: #ffffff;
            box-shadow: none;
            transition: transform 0.2s ease;
            animation: gradientShift 3s ease infinite;
        }

        .btn-growth-cta:hover {
            transform: translateY(-1px);
            animation: gradientShift 3s ease infinite;
        }

        .btn-growth-cta .icon {
            font-size: 1rem;
        }

        /* Center button on mobile */
        @media (max-width: 767px) {
            .btn-growth-cta {
                display: flex;
                margin: 0 auto;
                width: auto;
                max-width: 280px;
            }
        }

        .growth-cta-media {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .growth-cta-image-placeholder {
            width: 100%;
            max-width: 1000px;
            height: auto;
            transform: scale(1);
            transition: transform 0.3s ease;
            border-radius: 20px;
            display: block;
            object-fit: cover;
        }

        @media (max-width: 900px) {
            .growth-cta {
                padding: 48px 0;
            }

            .growth-cta-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .growth-cta-media {
                order: -1;
            }

            .portfolio {
                background-image: url('images/testimonials-background.webp');
            }
        }

        /* Portfolio Section */
        .portfolio {
            padding: 80px 0;
            background: url('../images/testimonials-background.webp') no-repeat center center;
            background-size: cover;
            position: relative;
            z-index: 1;
        }

        .portfolio::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.505);

        }

        .portfolio .container {
            position: relative;
            z-index: 2;
        }

        .portfolio .section-header h2,
        .portfolio .section-header p,
        .portfolio .section-badge {
            color: white;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }

        .portfolio .section-badge {
            background: rgba(255, 255, 255, 0.15);
            color: white;
        }

        .portfolio .section-header p {
            margin-bottom: 40px;
        }

        .portfolio .section-badge .icon {
            color: white;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 24px;
            margin: 0 auto 32px;
            max-width: 1400px;
            padding: 0 20px;
            width: 100%;
            box-sizing: border-box;
        }

        .portfolio-item {
            position: relative;
            background: transparent;
            border-radius: 0;
            overflow: visible;
            box-shadow: none;
            transition: all 0.4s ease;
            border: none;
            display: block;
            text-decoration: none;
            margin-bottom: 0;
        }

        .portfolio-item:hover {
            transform: scale(1.01);
            transition: transform 0.3s ease-out;
        }

        /* Portfolio Images - Responsive Sizing */
        .portfolio-image {
            position: relative;
            width: 100%;
            padding-bottom: 58.67%;
            /* 704/1200 = 0.5867 (58.67%) for 1200x704 aspect ratio */
            overflow: hidden;
            border-radius: 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
        }

        .portfolio-item:hover .portfolio-image {
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .portfolio-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* 3D context for portfolio and carousel */
        .portfolio-image,
        .carousel-item {
            perspective: 1000px;
            transform-style: preserve-3d;
        }

        .portfolio-image img,
        .carousel-item img,
        .why-choose-image .why-choose-img {
            backface-visibility: hidden;
            transform-style: preserve-3d;
            border: none !important;
            outline: none !important;
            will-change: transform;
        }

        .portfolio-item:hover .portfolio-image img {
            transform: scale(1.05);
            filter: brightness(0.95);
            transition: transform 0.5s ease-out, filter 0.5s ease-out;
        }

        .portfolio-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(139, 92, 246, 0.6));
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 0.9;
            transition: opacity 0.3s ease-out;
        }

        .portfolio-overlay .icon {
            color: white;
            font-size: 48px;
            transform: scale(0.8);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .portfolio-item:hover .portfolio-overlay .icon {
            transform: scale(1);
        }

        .portfolio-cta {
            text-align: center;
            background: rgba(59, 130, 246, 0.05);
            border-radius: 16px;
            padding: 32px 24px;
            animation: fadeInUp 0.8s ease;
            animation-delay: 0.3s;
            animation-fill-mode: both;
        }

        .portfolio-cta h3 {
            font-size: 20px;
            font-weight: 600;
            color: #111827;
            margin-bottom: 12px;
        }

        .portfolio-cta p {
            color: #6b7280;
            margin-bottom: 16px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Contact Section */
        .contact {
            padding: 40px 0;
            background: #f8fafc;
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: "";
            position: absolute;
            inset: -30% -20% -20% -20%;
            background:
                radial-gradient(420px 300px at 18% 28%, rgba(120, 110, 243, 0.6), transparent 70%),
                radial-gradient(380px 320px at 82% 22%, rgba(120, 110, 243, 0.4), transparent 68%),
                radial-gradient(360px 300px at 45% 80%, rgba(120, 110, 243, 0.3), transparent 70%);
            filter: blur(120px);
            opacity: 0.65;
            z-index: 0;
            pointer-events: none;
        }

        .contact::after {
            content: "";
            position: absolute;
            inset: -5% -10% 0 -10%;
            background:
                radial-gradient(520px 280px at 15% 25%, rgba(120, 110, 243, 0.35), transparent 65%),
                radial-gradient(480px 280px at 85% 28%, rgba(120, 110, 243, 0.25), transparent 65%),
                radial-gradient(520px 300px at 80% 88%, rgba(120, 110, 243, 0.2), transparent 68%);
            z-index: 0;
            opacity: 0.7;
            pointer-events: none;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: start;
        }

        .contact-form-wrapper {
            background: white;
            border-radius: 16px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: min-height 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            min-height: auto;
            position: relative;
            z-index: 1;
        }

        .contact-form-wrapper h3 {
            font-size: 20px;
            font-weight: 600;
            color: #111827;
            text-align: center;
            margin-bottom: 24px;
            font-size: 20px;
            font-weight: 600;
            color: #111827;
            text-align: center;
            margin-bottom: 24px;
            margin-bottom: 24px;
        }

        .contact-form {
            display: block;
            width: 100%;
        }

        /* Success message styles removed */

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 12px;
        }

        .form-group {
            margin-bottom: 12px;
        }

        .form-group label {
            display: block;
            font-weight: 500;
            color: #374151;
            margin-bottom: 6px;
            font-size: 14px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s ease;
            background: white;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }

        .form-hint {
            margin-top: 6px;
            font-size: 10px;
            color: #9ca3af;
            font-weight: 400;
            line-height: 1.4;
        }

        .form-group {
            margin-bottom: 10px;
        }

        .error-message {
            color: #ef4444;
            font-size: 12px;
            margin-top: 4px;
            display: none;
        }



        /* Creative Form Handler Styles */
        .oj-thank-you-container {
            display: none;
            padding: 40px;
            text-align: center;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border-radius: 12px;
            margin: 20px auto;
            max-width: 500px;
            position: relative;
            overflow: hidden;
        }

        .oj-thank-you-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
        }

        .oj-thank-you-content {
            max-width: 500px;
            margin: 0 auto;
        }

        .oj-success-icon {
            margin-bottom: 24px;
        }

        .oj-icon-circle {
            width: 120px;
            height: 120px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: oj-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        .oj-icon-circle .icon {
            width: 80px;
            height: 80px;
            --icon-url: url('images/icons/circle-check.svg');
            background-color: #10b981;
            mask-image: var(--icon-url);
            -webkit-mask-image: var(--icon-url);
            mask-size: contain;
            -webkit-mask-size: contain;
            mask-repeat: no-repeat;
            -webkit-mask-repeat: no-repeat;
            mask-position: center;
            -webkit-mask-position: center;
        }

        .oj-thank-you-title {
            font-size: 32px;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 16px;
            position: relative;
            display: inline-block;
        }

        .oj-thank-you-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            border-radius: 1px;
        }

        .oj-thank-you-message {
            font-size: 16px;
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 32px;
        }

        .oj-thank-you-details {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 8px;
            padding: 24px;
            margin-bottom: 24px;
            border: 1px solid #e2e8f0;
            position: relative;
        }

        .oj-detail-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-size: 14px;
            color: #6b7280;
            margin-bottom: 12px;
        }

        .oj-detail-item:last-child {
            margin-bottom: 0;
        }

        .oj-detail-icon {
            font-size: 18px;
        }

        .whatsapp-cta {
            background: linear-gradient(135deg, #16a34a, #15803d);
            color: white;
            border-radius: 16px;
            padding: 24px;
        }

        .whatsapp-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .whatsapp-header i {
            font-size: 24px;
        }

        .whatsapp-header h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .whatsapp-header p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 12px;
        }

        .whatsapp-cta p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            margin-bottom: 16px;
            font-size: 14px;
        }

        .whatsapp-btn {
            background: white;
            color: #16a34a;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .whatsapp-btn:hover {
            background: #f0fdf4;
            transform: translateY(-1px);
        }

        .contact-details {
            background: white;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .contact-details h3 {
            font-size: 18px;
            font-weight: 600;
            color: #111827;
            margin-bottom: 16px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .contact-icon {
            width: 32px;
            height: 32px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-icon .icon {
            color: #3b82f6;
            font-size: 14px;
        }

        .contact-label {
            font-weight: 500;
            color: #111827;
            margin-bottom: 2px;
            font-size: 14px;
        }

        .contact-value {
            color: #6b7280;
            font-size: 13px;
        }

        .response-time {
            background: rgba(59, 130, 246, 0.05);
            border-radius: 12px;
            padding: 16px;
            border: 1px solid rgba(59, 130, 246, 0.1);
            margin-top: 16px;
        }

        .response-time h4 {
            font-weight: 500;
            color: #111827;
            margin-bottom: 6px;
            font-size: 14px;
        }

        .response-time p {
            color: #6b7280;
            font-size: 12px;
            line-height: 1.6;
        }

        /* Footer */
        /* Footer */
        .footer {
            background-color: #030711;
            background-image: linear-gradient(rgba(37, 99, 235, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px);
            background-size: 40px 40px;
            color: #fff;
            padding: 40px 0 0;
            /* Reduced from 60px */
            position: relative;
            border-top: 1px solid rgba(30, 41, 59, 0.7);
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            /* Reduced from 48px */
            margin-bottom: 20px;
            /* Reduced from 24px */
            padding-bottom: 20px;
            /* Reduced from 24px */
        }

        .footer-section h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 12px;
            /* Reduced from 20px */
            color: #e2e8f0;
            position: relative;
            display: block;
            padding-bottom: 0;
        }

        /* Removed gradient underline from section headings */

        .footer-logo {
            display: inline-block;
            margin-bottom: 8px;
            /* Reduced from 12px */
            line-height: 0;
            /* Remove extra space below inline-block */
        }

        .footer-logo-img {
            height: auto;
            width: 160px;
            /* Slightly smaller logo */
            /* Standard footer logo width */
            max-width: 100%;
            transition: opacity 0.3s ease;
            object-fit: contain;
        }

        .footer-logo:hover .footer-logo-img {
            opacity: 0.9;
        }

        .footer-logo .logo-icon {
            width: 28px;
            height: 28px;
            padding: 6px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-logo .logo-icon i {
            color: white;
            font-size: 14px;
        }

        .footer-logo .logo-name {
            font-size: 18px;
            font-weight: 700;
            background: linear-gradient(135deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-section p {
            color: #7f8ea3;
            line-height: 1.6;
            margin-bottom: 0;
            margin-top: 8px;
            /* Reduced from 12px */
            font-size: 14px;
            max-width: 100%;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 4px;
            /* Reduced from 6px */
        }

        .footer-section ul li a {
            color: #d1d5db;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .footer-section ul li a:hover {
            color: #60a5fa;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 6px;
            /* Reduced from 8px */
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-contact-item .icon {
            color: #60a5fa;
            font-size: 14px;
            width: 16px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .footer-contact-item:hover .icon {
            transform: translateX(2px);
        }

        .footer-contact-item span {
            color: #a8b3cf;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-contact-item:hover span {
            color: #ffffff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(30, 41, 59, 0.7);
            padding: 20px 0;
            /* Reduced from 24px */
            background: #030711;
            position: relative;
            z-index: 1;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .copyright {
            font-size: 13px;
            color: #7f8ea3;
        }

        .copyright p {
            margin: 0;
        }

        .footer-links {
            display: flex;
            gap: 24px;
            align-items: center;
        }

        .footer-links a {
            font-size: 13px;
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
        }

        .footer-links a:hover {
            color: #60a5fa;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0;
            height: 1px;
            background: #60a5fa;
            transition: width 0.3s ease;
        }

        .footer-links a:hover::after {
            width: 100%;
        }

        /* iPad and Tablet Layout (768px - 1024px) */
        @media (min-width: 768px) and (max-width: 1024px) {
            .container {
                padding: 0 30px;
                max-width: 100%;
            }

            /* Keep desktop navigation visible on iPad */
            .nav-desktop {
                display: flex !important;
                align-items: center;
                gap: 6px;
            }

            .nav-desktop .nav-link {
                font-size: 14px;
                padding: 6px 10px;
                margin: 0 2px;
            }

            .nav-desktop .btn-primary {
                font-size: 13px;
                padding: 8px 14px;
            }

            .mobile-menu-btn {
                display: none !important;
            }

            .hero {
                display: flex !important;
                flex-direction: column !important;
                text-align: center;
                padding: 80px 0 !important;
                min-height: auto !important;
                margin-top: 64px;
            }

            .hero-bg {
                /* background: url('../images/hero-bg-2-hq-ori.webp') no-repeat center center !important; */
                background-size: cover !important;
            }

            .hero-content {
                display: flex !important;
                flex-direction: column !important;
                grid-template-columns: 1fr !important;
                gap: 40px !important;
                text-align: center !important;
                width: 100% !important;
                max-width: 100% !important;
            }

            .hero-left {
                order: 1 !important;
                width: 100% !important;
                max-width: 100% !important;
            }

            .hero-right {
                order: 2 !important;
                margin: 0 auto !important;
                max-width: 90% !important;
                width: 100% !important;
                transform: none !important;
                position: relative !important;
                top: 0 !important;
                right: 0 !important;
            }

            .hero-cta {
                justify-content: center !important;
                flex-wrap: wrap !important;
                gap: 15px !important;
                width: 100% !important;
                margin-top: 40px !important;
            }

            .trust-indicators {
                justify-content: center !important;
                margin: 0 auto 20px !important;
                flex-wrap: wrap !important;
            }

            .hero-image-container {
                width: 100% !important;
                max-width: 100% !important;
                margin: 0 auto !important;
            }

            .tilt-image {
                width: 100% !important;
                height: auto !important;
                max-width: 450px !important;
                min-width: 250px !important;
                margin: 0 auto !important;
                display: block !important;
            }

            /* Services section adjustments */
            .features-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 25px !important;
            }

            .feature-item {
                padding: 25px 20px !important;
            }

            /* Why Choose section adjustments */
            .why-choose-image img {
                width: 80% !important;
                max-width: 500px !important;
                height: auto !important;
            }

            .why-choose-image {
                display: flex;
                justify-content: center;
                align-items: center;
                height: auto !important;
                width: 100% !important;
                padding: 20px 0;
            }

            /* Portfolio grid adjustments */
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 20px !important;
            }

            /* Portfolio background for tablets/laptops */
            .portfolio {
                background: url('../images/testimonials-background.webp') no-repeat center center !important;
                background-size: cover !important;
            }

            /* Contact form adjustments */
            .contact-form {
                max-width: 90% !important;
                margin: 0 auto !important;
            }

            /* Process section centering */
            .process-steps {
                grid-template-columns: 1fr !important;
                gap: 30px !important;
                text-align: center !important;
                max-width: 800px !important;
                margin: 0 auto !important;
                position: relative !important;
                padding-top: 40px !important;
            }

            .process-steps::before {
                content: "" !important;
                position: absolute !important;
                top: 0 !important;
                left: 50% !important;
                transform: translateX(-50%) !important;
                width: 100px !important;
                height: 3px !important;
                background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899) !important;
                border-radius: 2px !important;
            }

            .process-step {
                text-align: center !important;
                max-width: 100% !important;
                margin: 0 auto !important;
            }

            /* Typography adjustments for iPad - BIGGER FONTS */
            .hero-headline h1 {
                font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
                line-height: 1.1 !important;
                font-weight: 900 !important;
            }

            .section-header h2 {
                font-size: clamp(2rem, 4vw, 3rem) !important;
            }

            .hero-description {
                font-size: 1.3rem !important;
                line-height: 1.6 !important;
                max-width: 90% !important;
                margin: 0 auto !important;
                font-weight: 500 !important;
            }

            .trust-indicators {
                font-size: 1rem !important;
            }

            .trust-item {
                font-size: 1rem !important;
                padding: 8px 16px !important;
            }

            .benefit-value {
                font-size: 1.4rem !important;
                font-weight: 700 !important;
            }

            .benefit-label {
                font-size: 1rem !important;
                font-weight: 600 !important;
            }

            /* Button adjustments for iPad */
            .btn-primary-large,
            .btn-secondary-large {
                padding: 14px 28px !important;
                font-size: 15px !important;
            }

            /* Key benefits adjustments */
            .key-benefits {
                justify-content: center !important;
                gap: 20px !important;
                margin-top: 30px !important;
            }

            .benefit-item {
                padding: 20px 15px !important;
                min-width: 140px !important;
            }

            /* Announcement bar adjustments */
            .announcement-bar {
                height: 44px !important;
            }

            .header {
                top: 44px !important;
            }

            .hero {
                margin-top: 60px !important;
            }
        }

        /* Small laptops and large tablets (below 1024px) */
        @media (max-width: 1023px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-right {
                order: -1;
                transform: none;
                border: none !important;
                box-shadow: none !important;
                max-width: 100% !important;
                width: 100% !important;
            }

            .tilt-image {
                width: 100% !important;
                max-width: 100% !important;
                height: auto !important;
            }

            .hero-image-container {
                width: 100% !important;
                max-width: 100% !important;
            }

            .design-studio {
                transform: none;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 24px;
                text-align: center;
            }
        }

        /* Mobile Announcement Bar */
        @media (max-width: 768px) {
            .announcement-bar {
                height: 40px;
            }

            .announcement-inner {
                padding: 0 12px;
                gap: 8px;
            }

            .announcement-icon {
                width: 16px;
                height: 16px;
            }

            .announcement-link {
                font-size: 13px;
                text-align: center;
            }

            .header {
                top: 40px;
            }

            .hero {
                margin-top: 60px;
            }
        }

        /* Why Choose image sizing */
        :root {
            --why-choose-img-max: 1300px;
            /* Adjust this to control the image max width */
        }

        .why-choose-image .why-choose-img {
            width: 100%;
            height: auto;
            object-fit: contain;
            max-width: var(--why-choose-img-max, 800px);
        }

        /* Creative, subtle animation for Why Choose image (non-3D) */
        .why-choose-image {
            position: relative;
        }

        .why-choose-image .why-choose-img {
            position: relative;
            z-index: 1;
        }

        /* Removed gradient blob glow effect */
        .why-choose-image::before {
            display: none;
            top: 55%;
            transform: translate(-50%, -50%);
            width: 62%;
            aspect-ratio: 1 / 1;
            z-index: 0;
            background: radial-gradient(closest-side, rgba(129, 140, 248, 0.42), rgba(129, 140, 248, 0.18) 42%, rgba(236, 72, 153, 0.10) 65%, rgba(236, 72, 153, 0.00) 76%);
            filter: blur(28px);
            opacity: 0.85;
            border-radius: 32% 58% 46% 64% / 54% 38% 62% 46%;
            animation: blobMorph 16s ease-in-out infinite alternate;
            pointer-events: none;
        }

        /* Removed secondary glow effect */
        .why-choose-image::after {
            display: none;
            bottom: -4px;
            width: 58%;
            height: 14px;
            transform: translateX(-50%);
            background: radial-gradient(50% 50% at 50% 50%, rgba(15, 23, 42, 0.18) 0%, rgba(15, 23, 42, 0.00) 70%);
            filter: blur(8px);
            opacity: 0.45;
            pointer-events: none;
        }

        @keyframes blobMorph {
            0% {
                border-radius: 32% 58% 46% 64% / 54% 38% 62% 46%;
                transform: translate(-50%, -50%) rotate(-4deg) scale(0.98);
            }

            50% {
                border-radius: 54% 38% 62% 46% / 40% 64% 38% 60%;
                transform: translate(-50%, -51%) rotate(6deg) scale(1.03);
            }

            100% {
                border-radius: 40% 60% 52% 48% / 58% 42% 52% 48%;
                transform: translate(-50%, -49%) rotate(12deg) scale(1.06);
            }
        }

        /* Gentle focus on hover */
        .why-choose-image:hover .why-choose-img {
            transform: scale(1.01);
        }

        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            .why-choose-image::before {
                animation: none !important;
            }

            .why-choose-image .why-choose-img {
                transform: none !important;
            }
        }

        /* Allow larger width only for the Why Choose section without affecting site-wide container */
        .why-choose {
            padding: 60px 0 !important;
            /* down from inline 80px 0 */
            position: relative;
            overflow: hidden;
            background: url('images/portfolio-background.webp') center / cover no-repeat;
            background-color: #f8fafc;
        }

        .why-choose::before,
        .why-choose::after {
            display: none !important;
        }

        .why-choose .container {
            max-width: 1250px;
            position: relative;
            z-index: 1;
        }

        /* Tighten the grid spacing for a slightly smaller overall footprint */
        .why-choose-grid {
            gap: 40px !important;
            /* down from inline 60px */
        }

        /* Slightly reduce the paragraph/content sizing in Why Choose block */
        .why-choose-content {
            padding: 40px !important;
            /* down from inline 48px */
        }

        .why-choose-content h2 {
            font-size: 2.8rem !important;
            /* down from 3rem */
        }

        .why-choose-content p {
            font-size: 0.95rem !important;
            /* down slightly from 1rem */
        }

        .why-choose-content .why-feature-item h3 {
            font-size: 1.4rem !important;
            /* down from 1.5rem */
            color: #7466F5 !important;
            display: inline-block;
            margin-bottom: 8px !important;
        }

        /* Why Choose: brand-tinted icon boxes and visible icons */
        .why-choose-content .why-icon {
            background: rgba(116, 103, 246, 0.14) !important;
            /* brand tint */
            border: 1px solid rgba(116, 103, 246, 0.35);
            backdrop-filter: blur(2px);
        }

        .why-choose-content .why-icon i,
        .why-choose-content .why-icon .icon {
            display: inline-block;
            color: #7466F5 !important;
            /* brand purple color for icons - IMPORTANT! */
        }

        x .why-choose-content .why-icon span[class*="icon-"] {
            color: #7466F5 !important;
        }

        /* Services: make icons match Why Choose style */
        .features-grid .feature-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: rgba(116, 103, 246, 0.14);
            border: 1px solid rgba(116, 103, 246, 0.35);
            backdrop-filter: blur(2px);
        }

        .features-grid .feature-icon i {
            color: #7467F6 !important;
            font-size: 28px;
        }

        /* Landing Pages: use a real landing page image in the icon box */
        /* (removed landing-icon background so Landing Pages uses normal icon like others) */

        /* Why Choose: set full background image for the entire content card */
        .why-choose-content {
            background: transparent !important;
            /* override inline dark background */
            overflow: hidden;
            /* clip pseudo backgrounds to rounded corners */
        }

        .why-choose-content::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(17, 24, 39, 0.8) 0%, rgba(30, 41, 59, 0.9) 50%, rgba(17, 24, 39, 0.8) 100%);
            background: url('images/contact-section-background.webp') center / cover no-repeat;
            z-index: 0;
            /* Fallback for slow loading */
            background-color: rgba(17, 24, 39, 0.85);
        }

        .why-choose-content::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(17, 24, 39, 0.55);
            /* subtle dark overlay for readability */
            z-index: 1;
        }

        .why-choose-content>* {
            position: relative;
            z-index: 2;
            /* ensure text and items appear above overlays */
        }

        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
                position: relative;
                z-index: 1001;
            }

            /* Why Choose Section Responsive */
            .why-choose-grid {
                grid-template-columns: 1fr !important;
                gap: 20px !important;
            }

            .why-choose h2 {
                font-size: 2rem !important;
                margin-bottom: 30px !important;
            }

            .why-feature-item h3 {
                font-size: 1.25rem !important;
            }

            .why-choose-image {
                height: auto !important;
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 0 !important;
                margin: 0 !important;
            }

            .why-choose-image div {
                width: 100% !important;
                height: auto !important;
                max-width: none !important;
                margin: 0 !important;
                padding: 0 !important;
            }

            /* Reduce section padding on tablet */
            .why-choose {
                padding: 40px 0 !important;
            }

            .why-choose-grid {
                gap: 25px !important;
            }

            .why-choose-image img {
                width: 90% !important;
                max-width: 600px !important;
                height: auto !important;
            }

            /* Footer optimizations for tablets */
            .footer {
                padding: 32px 0 0;
            }

            .footer-content {
                gap: 20px;
                margin-bottom: 20px;
            }

            .footer-section:first-child p {
                font-size: 13px;
            }

            .footer-section h3 {
                font-size: 14px;
                margin-bottom: 10px;
            }

            .footer-section ul li a {
                font-size: 13px;
            }

            .footer-bottom {
                padding: 20px 0;
            }
        }

        /* Mobile phones (480px and below) */
        @media (max-width: 480px) {

            .why-choose-image img {
                width: 95% !important;
                max-width: 100% !important;
                min-width: 280px !important;
                height: auto !important;
            }

            .why-choose-image {
                height: auto !important;
                padding: 0 !important;
                margin: 0 !important;
                width: 100% !important;
            }

            .why-choose-image div {
                width: 100% !important;
                height: auto !important;
                max-width: 100% !important;
                margin: 0 !important;
                padding: 0 !important;
            }

            /* Reduce section padding on mobile */
            .why-choose {
                padding: 30px 0 !important;
            }

            .why-choose-grid {
                gap: 15px !important;
            }

            .hero {
                padding: 36px 16px;
                /* bring hero up a bit more on small screens */
                text-align: center;
                min-height: auto;
                margin-top: 64px;
                /* reduce gap under header/announcement */
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .hero-cta {
                flex-direction: column;
                gap: 12px;
            }

            .key-benefits {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .services {
                padding: 60px 20px;
                background-image: url('images/services-background-phone.webp');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }

            .process-steps {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer {
                padding: 16px 0 0;
            }

            .footer-content {
                display: flex;
                flex-wrap: wrap;
                gap: 10px;
                text-align: left;
                margin-bottom: 10px;
            }

            .footer-section {
                margin: 0;
                flex: 1 1 calc(50% - 8px);
                min-width: 150px;
            }

            .footer-section:first-child {
                flex-basis: 100%;
                text-align: center;
                margin-bottom: 0;
            }

            .footer-logo {
                margin-bottom: 6px;
                line-height: 0;
            }

            .footer-logo-img {
                width: 150px;
                /* Slightly smaller on mobile */
                max-width: 100%;
            }

            .footer-section:first-child p {
                margin: 0 auto 6px;
                max-width: 100%;
                font-size: 11px;
                line-height: 1.3;
            }

            .footer-section h3 {
                font-size: 12px;
                font-weight: 600;
                margin-bottom: 6px;
            }

            .footer-section ul {
                display: flex;
                flex-direction: column;
                gap: 0;
            }

            .footer-section ul li {
                margin-bottom: 2px;
            }

            .footer-section ul li a {
                font-size: 11px;
                padding: 1px 0;
                display: inline-block;
            }

            .footer-contact {
                align-items: flex-start;
                gap: 4px;
            }

            .footer-contact-item {
                justify-content: flex-start;
                gap: 4px;
            }

            .footer-contact-item i {
                font-size: 11px;
                width: 12px;
            }

            .footer-contact-item span {
                font-size: 11px;
            }

            .footer-bottom-content {
                flex-direction: column-reverse;
                /* Copyright at bottom */
                gap: 12px;
            }

            .footer-links {
                flex-direction: row;
                /* Keep links on one line */
                align-items: center;
                justify-content: center;
                gap: 16px;
                text-align: center;
                width: 100%;
            }

            .copyright {
                font-size: 11px;
                width: 100%;
                text-align: center;
            }

            .copyright p {
                margin: 0;
                font-size: 11px;
            }

            .footer-links a {
                font-size: 11px;
            }
        }

        /* Extra-small phones: make footer even tighter */

        /* Disable contact section background gradients on small devices to prevent overlap */
        @media (max-width: 640px) {

            .contact::before,
            .contact::after {
                display: none;
            }
        }


        @media (max-width: 360px) {
            .footer {
                padding-top: 12px;
            }

            .footer-content {
                gap: 8px;
                margin-bottom: 8px;
            }

            .footer-section:first-child p {
                font-size: 10px;
                line-height: 1.25;
            }

            .footer-section h3 {
                font-size: 11px;
            }

            .footer-section ul li a {
                font-size: 10px;
            }

            .footer-links a {
                font-size: 9.5px;
            }

            .copyright,
            .copyright p {
                font-size: 9.5px;
            }
        }

        /* Mobile: exact layout to match provided screenshot */
        @media (max-width: 480px) {

            /* Services section paragraph styling for mobile */
            .services .section-header p {
                line-height: 1.6 !important;
            }

            /* Hero container - mobile optimization */
            .hero {
                position: relative;
                overflow: hidden;
                display: flex !important;
                flex-direction: column;
                justify-content: space-between;
                padding: 20px 14px 24px 14px !important;
                text-align: center;
                min-height: 100dvh;
                margin: 10px 0 0 0 !important;
            }

            .hero-bg {
                /* background: url('../images/hero-bg-2-hq-ori.webp') no-repeat center center !important; */
                background-size: cover !important;
            }

            /* Mobile-only: Add blurry circle in bottom corner */
            .hero-bg::after {
                content: '';
                display: block !important;
                position: absolute;
                width: 280px;
                height: 280px;
                background: radial-gradient(circle, rgba(109, 40, 217, 0.45) 0%, rgba(147, 51, 234, 0.35) 30%, rgba(168, 85, 247, 0.25) 60%, transparent 80%);
                border-radius: 50%;
                filter: blur(60px);
                bottom: -80px;
                right: -80px;
                opacity: 0.8;
                z-index: 1;
                pointer-events: none;
            }

            /* tighten headline top spacing */
            .hero-headline h1 {
                margin-top: 0;
            }

            /* hide large decorative visuals on phone */
            .floating-shape,
            .mouse-follower,
            .floating-badge {
                display: none !important;
            }

            /* Mobile-only: show circular dots pattern with compatible colors */
            .grid-pattern {
                display: block !important;
                position: absolute;
                inset: 0;
                opacity: 1 !important;
                background-image:
                    radial-gradient(circle at center, rgba(139, 92, 246, 0.2) 1.5px, transparent 1.5px),
                    radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 1.5px, transparent 1.5px),
                    radial-gradient(circle at center, rgba(236, 72, 153, 0.12) 1.5px, transparent 1.5px) !important;
                background-size:
                    25px 25px,
                    35px 35px,
                    45px 45px !important;
                background-position:
                    0 0,
                    10px 10px,
                    20px 20px !important;
                mask-image: none !important;
                -webkit-mask-image: none !important;
                z-index: 0;
            }

            /* Show hero image on mobile */
            .hero-right {
                display: block !important;
                opacity: 1 !important;
                height: auto !important;
                visibility: visible !important;
                margin: 0 auto 10px !important;
                /* Reduced bottom margin */
                width: 100% !important;
                max-width: 100% !important;
            }

            /* Hide trust indicators on mobile */
            .trust-indicators {
                display: none !important;
                visibility: hidden !important;
                opacity: 0 !important;
                height: 0 !important;
                margin: 0 !important;
                padding: 0 !important;
                margin: 6px auto 14px;
                /* Center with auto margins */
                flex-wrap: wrap;
                /* Allow wrapping on small screens */
                align-items: center;
                max-width: 100%;
                /* Ensure it doesn't overflow */
            }

            /* Smaller trust buttons */
            .trust-item {
                background: #fff;
                padding: 4px 8px;
                /* reduced padding */
                border-radius: 999px;
                border: 1px solid rgba(229, 231, 235, 0.85);
                box-shadow: 0 6px 14px rgba(15, 23, 42, 0.02);
                font-size: 12px;
                /* smaller text */
                color: #475569;
                display: inline-flex;
                align-items: center;
                gap: 6px;
            }

            /* Reduce star/icon size inside trust pills */
            .trust-item .stars i,
            .trust-item i {
                font-size: 4px !important;
                /* smaller star and icon size */
                line-height: 4;
            }

            /* Hero content area — left aligned and full width */
            .hero-content {
                display: flex !important;
                flex-direction: column;
                flex: 1 1 auto;
                grid-template-columns: 1fr;
                gap: 12px;
                align-items: center;
                /* Center align items */
                margin-top: 6px;
                position: relative;
                z-index: 5;
                padding: 0;
                text-align: center;
                /* Center text content */
            }

            .hero-left {
                display: flex;
                flex-direction: column;
                flex: 1 1 auto;
                width: 100%;
                align-items: stretch;
                gap: 12px;
            }

            .hero-left>* {
                margin-left: auto;
                margin-right: auto;
                width: 100%;
            }

            .hero-left .key-benefits {
                margin-top: auto;
                margin-bottom: 0;
            }

            /* Headline — very large, heavy, multi-line, left aligned */
            .hero-headline h1 {
                font-size: clamp(3.6rem, 14vw, 5.2rem);
                line-height: 0.95;
                margin: 0 auto 10px;
                /* Center the heading */
                letter-spacing: -0.02em;
                color: #0f1724;
                text-align: center;
                /* Center text */
                font-weight: 900;
                max-width: 100%;
                /* Ensure it doesn't overflow */
            }

            /* "Convert" — vivid gradient and subtle glow */
            .hero-headline .gradient-text {
                background: linear-gradient(90deg, #5b7cff 0%, #8b5cf6 45%, #ec4899 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                font-weight: 900;
                display: inline-block;
                padding-left: 2px;
                text-shadow: 0 10px 30px rgba(139, 92, 246, 0.10), 0 3px 8px rgba(59, 130, 246, 0.04);
            }

            /* Description left aligned and readable */
            .hero-description {
                font-size: 15px;
                color: #181924d8;
                margin: 0 0 16px;
                max-width: 100%;
                text-align: left;
            }

            /* Buttons side-by-side (primary compact, secondary compact) */
            .hero-cta {
                display: flex;
                flex-direction: row;
                gap: 10px;
                align-items: center;
                justify-content: flex-start;
                margin-bottom: 16px;
            }

            /* Compact primary button */
            .btn-primary-large {
                flex: 0 0 52%;
                /* slightly narrower */
                max-width: 52%;
                padding: 10px 14px;
                /* smaller padding */
                font-size: 15px;
                /* slightly smaller text */
                border-radius: 10px;
                background: linear-gradient(90deg, #5b7cff 0%, #8b5cf6 50%, #ec4899 100%);
                box-shadow: 0 8px 22px rgba(139, 92, 246, 0.10);
            }

            /* Compact secondary button */
            .btn-secondary-large {
                flex: 0 0 36%;
                /* slightly narrower */
                max-width: 36%;
                padding: 10px 14px;
                /* smaller padding */
                font-size: 15px;
                border-radius: 10px;
                background: #fff;
                color: #374151;
                border: 1px solid #e5e7eb;
                box-shadow: none;
            }

            /* Ensure icons inside buttons remain well-sized */
            .btn-primary-large i,
            .btn-secondary-large i,
            .btn-primary i,
            .btn-outline i {
                font-size: 12px !important;
                vertical-align: middle;
            }

            /* Key benefits: keep visible under CTAs with divider and spacing */
            .key-benefits {
                margin-top: 22px;
                border-top: 1px solid #e5e7eb;
                padding-top: 20px;
                gap: 5px;
                grid-template-columns: repeat(3, 1fr);
            }

            .benefit-item {
                text-align: center;
                padding-top: 6px;
            }

            .benefit-icon {
                width: 42px;
                height: 42px;
                background: #ffffff;
                border-radius: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 8px;
                box-shadow: 0 6px 16px rgba(15, 23, 42, 0.03);
                border: 1px solid rgba(229, 231, 235, 0.6);
            }

            .benefit-icon i {
                color: #3b82f6;
            }

            .benefit-value {
                font-size: 15px;
                font-weight: 800;
                color: #0f1724;
            }

            .benefit-label {
                font-size: 12px;
                color: #6f7174;
                font-weight: 600;
            }

            /* Maintain header above hero */
            .header {
                z-index: 1200;
            }
        }

        /* Mobile overrides: compact icons/text for "View Our Work" and related elements */
        @media (max-width: 480px) {

            /* Hero image adjustments for mobile */
            .hero-right {
                order: 1;
                /* Move image below text on mobile */
                margin: 20px auto 0 !important;
                width: 100% !important;
                max-width: 100% !important;
                padding: 0 !important;
            }

            .hero-image-container {
                width: 100% !important;
                max-width: 100% !important;
                overflow: visible !important;
                padding: 0 !important;
                margin: 0 !important;
                border-radius: 0;
                border: none !important;
                box-shadow: none !important;
            }

            .tilt-image {
                width: 100% !important;
                max-width: 100% !important;
                min-width: 100% !important;
                height: auto !important;
                display: block;
                margin: 0 !important;
                transform: none !important;
            }

            .hero-image-container {
                width: 100% !important;
                max-width: 100% !important;
                overflow: visible !important;
                padding: 0 !important;
                margin: 0 !important;
            }

            /* Hero headline adjustments for mobile */
            hero h1 {
                font-size: 2.2rem !important;
                line-height: 1.2;
                margin-bottom: 1.2rem;
            }

            hero .hero-description {
                font-size: 1rem;
                margin: 0 auto 2rem;
                max-width: 90%;
            }

            /* Center align hero CTA buttons and their content */
            .hero-cta {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                justify-content: center !important;
                text-align: center !important;
                width: 100% !important;
                margin: 0 auto 2rem !important;
            }

            .hero-cta a {
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                text-align: center !important;
                margin: 0.5rem 0 !important;
                width: 100% !important;
                max-width: 100% !important;
                padding: 12px 16px !important;
                border-radius: 12px !important;
                box-sizing: border-box !important;
            }


            /* Hide trust indicators on mobile */
            .trust-indicators {
                display: none !important;
                visibility: hidden !important;
                opacity: 0 !important;
                height: auto !important;
                margin: 0 0 20px 0 !important;
                padding: 0;
                justify-content: center;
                flex-wrap: wrap;
                gap: 10px;
            }

            /* Make the hero headline substantially larger on phones */
            .hero-headline h1 {
                font-size: clamp(3.6rem, 14vw, 5.2rem);
                /* larger on small devices */
                line-height: 0.95;
                margin-bottom: 10px;
                letter-spacing: -0.02em;
                color: #0f1724;
                text-align: left;
                font-weight: 900;
            }

            /* Ensure the gradient word scales with the h1 */
            .hero-headline .gradient-text {
                font-size: inherit;
            }

            /* Small spacing tweak so the larger headline sits comfortably under the fixed header */
            .hero {
                padding-top: 120px;
                /* move content slightly down on phones */
            }

            /* Buttons side-by-side (primary compact, secondary compact) */
            .hero-cta {
                display: flex;
                flex-direction: row;
                gap: 10px;
                align-items: center;
                justify-content: flex-start;
                margin-bottom: 16px;
            }

            /* Compact primary button */
            .btn-primary-large {
                flex: 0 0 52%;
                /* slightly narrower */
                max-width: 52%;
                padding: 10px 14px;
                /* smaller padding */
                font-size: 15px;
                /* slightly smaller text */
                border-radius: 10px;
                background: linear-gradient(90deg, #5b7cff 0%, #8b5cf6 50%, #ec4899 100%);
                box-shadow: 0 8px 22px rgba(139, 92, 246, 0.10);
            }

            /* Compact secondary button */
            .btn-secondary-large {
                flex: 0 0 36%;
                /* slightly narrower */
                max-width: 36%;
                padding: 10px 14px;
                /* smaller padding */
                font-size: 15px;
                border-radius: 10px;
                background: #fff;
                color: #374151;
                border: 1px solid #e5e7eb;
                box-shadow: none;
            }

            /* Ensure icons inside buttons remain well-sized */
            .btn-primary-large i,
            .btn-secondary-large i,
            .btn-primary i,
            .btn-outline i {
                font-size: 12px !important;
                vertical-align: middle;
            }

            /* Key benefits: keep visible under CTAs with divider and spacing */
            .key-benefits {
                margin-top: 22px;
                border-top: 1px solid #8f9297b5;
                padding-top: 20px;
                gap: 5px;
                grid-template-columns: repeat(3, 1fr);
            }

            .benefit-item {
                text-align: center;
                padding-top: 6px;
            }

            .benefit-icon {
                width: 42px;
                height: 42px;
                background: #ffffff;
                border-radius: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 8px;
                box-shadow: 0 6px 16px rgba(15, 23, 42, 0.03);
                border: 1px solid rgba(229, 231, 235, 0.6);
            }

            .benefit-icon i {
                color: #3b82f6;
            }

            .benefit-value {
                font-size: 15px;
                font-weight: 800;
                color: #0f1724;
            }

            .benefit-label {
                font-size: 12px;
                color: #6f7174;
                font-weight: 600;
            }

            /* Phone-only: stack CTAs and make them identical size */
            @media (max-width: 480px) {

                /* Stack the CTAs vertically on phones and center them */
                .hero-cta {
                    flex-direction: column !important;
                    gap: 12px !important;
                    align-items: center !important;
                    margin: 0 auto 2rem !important;
                }

                /* Ensure both primary and secondary use the same full-width sizing */
                .btn-primary-large,
                .btn-secondary-large {
                    flex: none !important;
                    width: 100% !important;
                    max-width: 100% !important;
                    padding: 12px 16px !important;
                    font-size: 15px !important;
                    border-radius: 12px !important;
                    box-shadow: 0 8px 22px rgba(139, 92, 246, 0.10) !important;
                }

                /* Slight visual difference preserved via background only (but size identical) */
                .btn-secondary-large {
                    background: #fff !important;
                    color: #374151 !important;
                    border: 1px solid #e5e7eb !important;
                    box-shadow: none !important;
                }

                /* Keep icon sizing balanced inside full-width buttons */
                .btn-primary-large i,
                .btn-secondary-large i {
                    font-size: 12px !important;
                    vertical-align: middle;
                    margin-right: 8px;
                }
            }
        }

        #protection-message.hidden {
            opacity: 0;
            pointer-events: none;
        }

        /* Disable text selection for specific elements */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        p,
        span,
        div,
        a {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        /* Allow selection in forms and inputs */
        input,
        textarea,
        [contenteditable="true"] {
            -webkit-user-select: text !important;
            -moz-user-select: text !important;
            -ms-user-select: text !important;
            user-select: text !important;
        }

        /* Disable image dragging */
        img,
        .protected-image {
            -webkit-user-drag: none;
            -khtml-user-drag: none;
            -moz-user-drag: none;
            -o-user-drag: none;
        }

        #back-to-top {
            /* ... your other styles ... */
            position: fixed;
            bottom: 25px;

            /* BAD: transition: all 0.3s; <-- DELETE THIS LINE */

            /* GOOD: Only animate opacity and transform */
            transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
        }



        /* Ensure you have this class for when it appears */
        #back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        #back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        #back-to-top:hover {
            background: linear-gradient(135deg, #4a6bff, #7a4cf0);
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            #back-to-top {
                width: 45px;
                height: 45px;
                font-size: 18px;
                bottom: 20px;
                right: 20px;
            }

            /* Mobile hero section background */
            .hero-bg {
                background: #eff9ff !important;
                background-image: none !important;
            }

            /* Coral color circle in middle of hero section */
            .hero {
                position: relative !important;
            }

            .hero::after {
                content: '' !important;
                position: absolute !important;
                top: 40% !important;
                left: 10% !important;
                transform: translate(-50%, -50%) !important;
                width: 100px !important;
                height: 100px !important;
                background: #ffffff !important;
                border-radius: 50% !important;
                filter: blur(60px) !important;
                z-index: 1 !important;
            }

            /* White circle in hero background */
            .hero {
                position: relative !important;
            }

            .hero::before {
                content: '' !important;
                position: absolute !important;
                top: 20% !important;
                right: 15% !important;
                width: 120px !important;
                height: 120px !important;
                background: #ffffff !important;
                border-radius: 50% !important;
                filter: blur(30px) !important;
                z-index: 3 !important;
            }

            /* Dark blurry purple in top right corner */
            .hero-bg::before {
                content: '' !important;
                position: absolute !important;
                top: -100px !important;
                right: -100px !important;
                width: 300px !important;
                height: 300px !important;
                background: radial-gradient(circle, rgba(147, 51, 234, 0.2) 0%, rgba(139, 92, 246, 0.10) 40%, transparent 70%) !important;
                border-radius: 50% !important;
                filter: blur(60px) !important;
                z-index: 1 !important;
            }

            /* Colorful blur in bottom left corner */
            .hero-bg::after {
                content: '' !important;
                position: absolute !important;
                bottom: -50px !important;
                left: -50px !important;
                width: 150px !important;
                height: 150px !important;
                background: rgba(59, 130, 246, 0.4) !important;
                border-radius: 50% !important;
                z-index: 1 !important;
            }


            /* Purple dots pattern for mobile */
            .grid-pattern {
                display: block !important;
                background-image: radial-gradient(circle at 1px 1px, rgba(147, 51, 234, 0.08) 1px, transparent 0) !important;
                background-size: 10px 10px !important;
                opacity: 1 !important;
                mask-image: none !important;
                -webkit-mask-image: none !important;
            }
        }

        @media (max-width: 480px) {
            #back-to-top {
                width: 40px;
                height: 40px;
                font-size: 16px;
                bottom: 15px;
                right: 15px;
            }

            /* Portfolio section mobile background */
            .portfolio {
                background: url('../images/testimonials-background.webp') no-repeat center center !important;
                background-size: cover !important;
            }
        }

        /* Disable context menu on images */
        img {
            pointer-events: none;
        }

        /* Disable text selection on buttons */
        button,
        .btn,
        .btn-primary,
        .btn-secondary {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        /* Global font: Poppins across the site (sizes/weights unchanged) */
        html,
        body,
        button,
        input,
        select,
        textarea {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
                'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
                'Segoe UI Emoji', 'Segoe UI Symbol' !important;
            font-feature-settings: 'rlig' 1, 'calt' 1;
        }

        /* Restore hero headline to previous Inter font only */
        .hero-headline h1 {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
        }

        /* Mobile Hero Background Fix - Placed at the end to ensure override */
        @media (max-width: 768px) {

            /* Ensure grid pattern is visible and styled correctly on all mobile devices */
            .grid-pattern {
                display: block !important;
                position: absolute !important;
                inset: 0 !important;
                background-image: radial-gradient(circle at 1px 1px, rgba(147, 51, 234, 0.15) 1px, transparent 0) !important;
                background-size: 24px 24px !important;
                opacity: 1 !important;
                mask-image: linear-gradient(to bottom, black 60%, transparent 100%) !important;
                -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%) !important;
                z-index: 0 !important;
                pointer-events: none !important;
            }

            /* Ensure the container is visible */
            .hero-bg {
                display: block !important;
                opacity: 1 !important;
                visibility: visible !important;
            }

            /* Hide the floating shapes that might clutter the view */
            .floating-shape,
            .shape-1,
            .shape-2,
            .shape-3,
            .mouse-follower {
                display: none !important;
            }
        }

        /* Navbar Get Started Button Styling */
        .nav-desktop .btn-get-started {
            padding: 12px 32px !important;
            /* Increased left-right padding */
            display: inline-flex !important;
            align-items: center;
            gap: 8px;
            font-weight: 700 !important;
            /* Make text extremely bold */
        }

        .btn-icon-right {
            filter: brightness(0) invert(1) contrast(1.5);
            /* Make icon white and bolder */
            transition: transform 0.3s ease;
            width: 20px;
            height: 20px;
            stroke-width: 3px;
            /* Thicker stroke for SVG icons */
        }

        .btn-get-started:hover .btn-icon-right {
            transform: translate(2px, 2px);
        }