   :root {
            --primary-bg: #0E1117;
            --secondary-bg: #151A23;
            --tertiary-bg: #1A202C;
            --primary-text: #F5F5F5;
            --secondary-text: #A0AEC0;
            --accent-color: linear-gradient(135deg, #C0C0C0, #A9A9A9);
            --highlight-color: #F4A460;
            --highlight-hover: #e69550;
            --section-padding: 100px 0;
            --card-radius: 20px;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
                overflow-x: hidden;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--primary-bg);
            color: var(--primary-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        /* Preloader */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-bg);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            flex-direction: column;
        }
        
        .loader {
            width: 80px;
            height: 80px;
            border: 5px solid rgba(244, 164, 96, 0.3);
            border-radius: 50%;
            border-top-color: var(--highlight-color);
            animation: spin 1.5s ease-in-out infinite;
            margin-bottom: 20px;
        }
        
        .loader-text {
            font-size: 1.2rem;
            color: var(--secondary-text);
            font-weight: 500;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--secondary-bg);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--highlight-color);
            border-radius: 10px;
            border: 2px solid var(--secondary-bg);
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--highlight-hover);
        }
        
        /* Navbar Styles */
        .navbar {
            background-color: rgba(14, 17, 23, 0.95);
            backdrop-filter: blur(15px);
            padding: 18px 0;
            transition: var(--transition);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            z-index: 1000;
        }
        
        .navbar.scrolled {
            padding: 12px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 32px;
            background: var(--accent-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: var(--transition);
        }
        
        .logo-img {
            height: 45px;
            margin-right: 12px;
            transition: var(--transition);
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(15deg);
        }
        
        .nav-link {
            color: var(--primary-text) !important;
            font-weight: 500;
            margin: 0 12px;
            transition: var(--transition);
            position: relative;
            padding: 8px 0 !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background: var(--highlight-color);
            transition: var(--transition);
            border-radius: 2px;
        }
        
        .nav-link:hover:after, .nav-link.active:after {
            width: 100%;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--highlight-color) !important;
        }
        
        .navbar-toggler {
            border: none;
            color: var(--primary-text);
            padding: 8px 12px;
            font-size: 1.2rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        /* NEW: Advanced Hero Section with Particle Background */
        .services-hero {
            padding: 180px 0 120px;
            background: linear-gradient(135deg, rgba(14, 17, 23, 0.95) 0%, rgba(26, 32, 44, 0.9) 100%), url('../assets/images/servicehero.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }
        
        .services-hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(244, 164, 96, 0.1) 0%, transparent 50%);
            z-index: 2;
        }
        
        .hero-content-wrapper {
            position: relative;
            z-index: 3;
        }
        
        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.3;
            z-index: 1;
        }
        
        .hero-orb-1 {
            width: 300px;
            height: 300px;
            background: var(--highlight-color);
            top: 10%;
            left: 10%;
            animation: float 8s ease-in-out infinite;
        }
        
        .hero-orb-2 {
            width: 200px;
            height: 200px;
            background: #4A90E2;
            bottom: 20%;
            right: 15%;
            animation: float 10s ease-in-out infinite reverse;
        }
        
        .hero-orb-3 {
            width: 150px;
            height: 150px;
            background: #50C878;
            top: 50%;
            left: 5%;
            animation: float 12s ease-in-out infinite;
        }
        
        .services-hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 3;
        }
        
        .services-hero-title {
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 25px;
            background: linear-gradient(to right, #F5F5F5, #F4A460);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            position: relative;
            display: inline-block;
        }
        
        .services-hero-title:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, transparent, var(--highlight-color), transparent);
            bottom: -10px;
            left: 0;
            border-radius: 3px;
        }
        
        .services-hero-subtitle {
            font-size: 1.5rem;
            color: var(--secondary-text);
            margin-bottom: 40px;
            font-weight: 400;
            line-height: 1.6;
        }
        
        .services-hero-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(244, 164, 96, 0.15);
            color: var(--highlight-color);
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 1.1rem;
            margin-bottom: 30px;
            border: 1px solid rgba(244, 164, 96, 0.3);
            backdrop-filter: blur(10px);
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }
        
        .services-hero-badge:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.6s;
        }
        
        .services-hero-badge:hover:before {
            left: 100%;
        }
        
        .services-hero-badge i {
            margin-right: 12px;
            font-size: 1.2rem;
        }
        
        .services-hero-cta {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }
        
        .hero-btn {
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .hero-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.6s;
            z-index: -1;
        }
        
        .hero-btn:hover:before {
            left: 100%;
        }
        
        .hero-btn-primary {
            background: var(--highlight-color);
            color: var(--primary-bg);
            box-shadow: 0 12px 25px rgba(244, 164, 96, 0.4);
        }
        
        .hero-btn-primary:hover {
            background: var(--highlight-hover);
            transform: translateY(-5px);
            box-shadow: 0 18px 35px rgba(244, 164, 96, 0.5);
            color: var(--primary-bg);
        }
        
        .hero-btn-secondary {
            background: transparent;
            color: var(--primary-text);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }
        
        .hero-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
            color: var(--primary-text);
        }
        
        .breadcrumb {
            background: transparent;
            justify-content: center;
            margin-bottom: 0;
        }
        
        .breadcrumb-item a {
            color: var(--highlight-color);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .breadcrumb-item a:hover {
            color: var(--highlight-hover);
        }
        
        .breadcrumb-item.active {
            color: var(--secondary-text);
        }
        
        .breadcrumb-item + .breadcrumb-item::before {
            color: var(--secondary-text);
        }
        
        /* NEW: Enhanced Marquee Section */
        .marquee-section {
            padding: 30px 0;
            background: var(--secondary-bg);
            overflow: hidden;
            position: relative;
        }
        
        .marquee-container {
            display: flex;
            animation: marquee 30s linear infinite;
        }
        
        .marquee-item {
            display: flex;
            align-items: center;
            white-space: nowrap;
            margin: 0 40px;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--highlight-color);
        }
        
        .marquee-item i {
            margin-right: 15px;
            font-size: 1.5rem;
        }
        .apackage {
            text-decoration: none;
            color: var(--highlight-hover);
        }
         .apackage:hover {
            text-decoration: none;
    
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        /* Section Titles */
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 5px;
            background: var(--highlight-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 3px;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--secondary-text);
            max-width: 700px;
            margin: 30px auto 0;
            font-weight: 400;
        }
        
        /* NEW: Enhanced Services Grid Section */
        .services-grid-section {
            padding: var(--section-padding);
            position: relative;
            background: var(--primary-bg);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 35px;
        }
        
        .service-card {
            background: var(--secondary-bg);
            border-radius: var(--card-radius);
            padding: 45px 35px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(244, 164, 96, 0.05) 0%, transparent 50%);
            z-index: -1;
            transition: var(--transition);
            opacity: 0;
        }
        
        .service-card:hover:before {
            opacity: 1;
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
            border-color: var(--highlight-color);
        }
        
        .service-icon {
            width: 100px;
            height: 100px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1);
            background: var(--highlight-color);
        }
        
        .service-icon i {
            font-size: 45px;
            color: var(--primary-bg);
            transition: var(--transition);
        }
        
        .service-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .service-description {
            color: var(--secondary-text);
            margin-bottom: 30px;
            font-size: 1.1rem;
            line-height: 1.7;
            flex-grow: 1;
        }
        
        .service-features {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .service-features li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            transition: var(--transition);
        }
        
        .service-features li:hover {
            transform: translateX(5px);
        }
        
        .service-features li i {
            color: var(--highlight-color);
            margin-right: 12px;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .service-features li:hover i {
            transform: scale(1.2);
        }
        
        .service-link {
            color: var(--highlight-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
            font-size: 1.1rem;
            position: relative;
            padding: 8px 0;
            margin-top: auto;
        }
        
        .service-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--highlight-color);
            transition: var(--transition);
        }
        
        .service-link:hover:after {
            width: 100%;
        }
        
        .service-link:hover {
            color: var(--highlight-hover);
            transform: translateX(10px);
        }
        
        /* NEW: Enhanced Service Packages Section */
        .packages-section {
            padding: var(--section-padding);
            background-color: var(--secondary-bg);
            position: relative;
            overflow: hidden;
        }
        
        /* NEW: Background animation for packages section */
        .packages-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(244, 164, 96, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(244, 164, 96, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(244, 164, 96, 0.07) 0%, transparent 50%);
            z-index: 0;
        }
        
        .package-card {
            background: var(--primary-bg);
            border-radius: var(--card-radius);
            padding: 55px 45px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
            z-index: 1;
            height: 100%;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            display: flex;
            flex-direction: column;
        }
        
        /* NEW: Enhanced hover effect with gradient overlay */
        .package-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(244, 164, 96, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: var(--transition);
            z-index: -1;
        }
        
        .package-card:hover::after {
            opacity: 1;
        }
        
        .package-card.featured {
            transform: scale(1.05);
            border-color: var(--highlight-color);
            box-shadow: 0 25px 50px rgba(244, 164, 96, 0.25);
        }
        
        .package-card.featured:before {
            content: 'Most Popular';
            position: absolute;
            top: 25px;
            right: -40px;
            background: var(--highlight-color);
            color: var(--primary-bg);
            padding: 10px 45px;
            transform: rotate(45deg);
            font-size: 1rem;
            font-weight: 700;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(244, 164, 96, 0.3);
        }
        
        .package-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(244, 164, 96, 0.08), transparent);
            transition: all 0.8s;
            z-index: -1;
        }
        
        .package-card:hover:before {
            left: 100%;
        }
        
        .package-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
            border-color: var(--highlight-color);
        }
        
        .package-card.featured:hover {
            transform: translateY(-15px) scale(1.05);
        }
        
        .package-icon {
            width: 90px;
            height: 90px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            transition: var(--transition);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        /* NEW: Enhanced icon animation */
        .package-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: rotate(45deg);
            transition: all 0.6s;
            opacity: 0;
        }
        
        .package-card:hover .package-icon::before {
            opacity: 1;
            animation: shine 1.5s;
        }
        
        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }
        
        .package-card:hover .package-icon {
            transform: scale(1.15);
            background: var(--highlight-color);
        }
        
        .package-icon i {
            font-size: 40px;
            color: var(--primary-bg);
        }
        
        .package-name {
            font-size: 1.7rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .package-price {
            font-size: 4rem;
            font-weight: 800;
            color: var(--highlight-color);
            margin-bottom: 10px;
            font-family: 'Poppins', sans-serif;
            text-shadow: 0 5px 15px rgba(244, 164, 96, 0.3);
            position: relative;
            display: inline-block;
        }
        
        /* NEW: Price pulse animation */
        .package-price::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 120%;
            height: 120%;
            background: rgba(244, 164, 96, 0.1);
            border-radius: 50%;
            transform: translate(-50%, -50%) scale(0);
            transition: transform 0.5s ease-out;
            z-index: -1;
        }
        
        .package-card:hover .package-price::after {
            transform: translate(-50%, -50%) scale(1);
        }
        
        .package-period {
            color: var(--secondary-text);
            margin-bottom: 35px;
            font-size: 1.1rem;
        }
        
        .package-features {
            list-style: none;
            padding: 0;
            margin-bottom: 45px;
            text-align: left;
            flex-grow: 1;
        }
        
        .package-features li {
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            transition: var(--transition);
            padding: 8px 0;
            position: relative;
        }
        
        /* NEW: Feature item hover effect */
        .package-features li::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 0;
            height: 100%;
            width: 3px;
            background: var(--highlight-color);
            transform: scaleY(0);
            transition: transform 0.3s ease;
            transform-origin: top;
        }
        
        .package-features li:hover::before {
            transform: scaleY(1);
        }
        
        .package-features li:hover {
            transform: translateX(5px);
        }
        
        .package-features li i {
            color: var(--highlight-color);
            margin-right: 15px;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        
        .package-features li:hover i {
            transform: scale(1.2);
        }
        
        .package-features li.disabled {
            color: var(--secondary-text);
            text-decoration: line-through;
        }
        
        .package-features li.disabled i {
            color: var(--secondary-text);
        }
        
        .package-btn {
            background: var(--highlight-color);
            border: none;
            color: var(--primary-bg);
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            width: 100%;
            font-size: 1.2rem;
            box-shadow: 0 12px 25px rgba(244, 164, 96, 0.4);
            position: relative;
            overflow: hidden;
            z-index: 1;
            margin-top: auto;
        }
        
        .package-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: all 0.6s;
            z-index: -1;
        }
        
        .package-btn:hover:before {
            left: 100%;
        }
        
        .package-btn:hover {
            background: var(--highlight-hover);
            transform: translateY(-5px);
            box-shadow: 0 18px 35px rgba(244, 164, 96, 0.5);
        }
        
        .package-btn-outline {
            background: transparent;
            border: 2px solid var(--highlight-color);
            color: var(--highlight-color);
        }
        
        .package-btn-outline:hover {
            background: var(--highlight-color);
            color: var(--primary-bg);
        }
        
        /* NEW: Package comparison table */
        .package-comparison {
            margin-top: 80px;
            background: var(--primary-bg);
            border-radius: var(--card-radius);
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .comparison-header {
            background: var(--tertiary-bg);
            padding: 25px;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .comparison-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--highlight-color);
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .comparison-table th, .comparison-table td {
            padding: 20px 15px;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .comparison-table th {
            background: var(--tertiary-bg);
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .comparison-table tr:hover {
            background: rgba(244, 164, 96, 0.03);
        }
        
        .comparison-feature {
            text-align: left;
            font-weight: 500;
        }
        
        .comparison-check {
            color: var(--highlight-color);
            font-size: 1.2rem;
        }
        
        .comparison-cross {
            color: var(--secondary-text);
            font-size: 1.2rem;
        }
        
        /* NEW: All Services Section */
        .all-services-section {
            padding: var(--section-padding);
            background: var(--primary-bg);
        }
        
        .service-category {
            margin-bottom: 80px;
        }
        
        .service-category-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 40px;
            text-align: center;
            color: var(--highlight-color);
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .service-category-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--highlight-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .service-category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-item {
            background: var(--secondary-bg);
            border-radius: var(--card-radius);
            padding: 35px 30px;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .service-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--highlight-color);
            transition: var(--transition);
        }
        
        .service-item:hover:before {
            width: 100%;
            opacity: 0.1;
        }
        
        .service-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .service-item-icon {
            width: 70px;
            height: 70px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: var(--transition);
        }
        
        .service-item:hover .service-item-icon {
            background: var(--highlight-color);
            transform: scale(1.1);
        }
        
        .service-item-icon i {
            font-size: 30px;
            color: var(--primary-bg);
        }
        
        .service-item-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .service-item-description {
            color: var(--secondary-text);
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .service-item-price {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--highlight-color);
            margin-top: auto;
        }
        
        /* NEW: Interactive Service Showcase */
        .interactive-showcase {
            padding: var(--section-padding);
            background: var(--secondary-bg);
            position: relative;
            overflow: hidden;
        }
        
        .showcase-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .showcase-content {
            flex: 1;
        }
        
        .showcase-visual {
            flex: 1;
            position: relative;
            height: 500px;
        }
        
        .showcase-card {
            position: absolute;
            width: 300px;
            height: 350px;
            background: var(--primary-bg);
            border-radius: var(--card-radius);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            transition: all 0.5s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .showcase-card:nth-child(1) {
            top: 0;
            left: 0;
            z-index: 1;
        }
        
        .showcase-card:nth-child(2) {
            top: 50px;
            left: 150px;
            z-index: 2;
        }
        
        .showcase-card:nth-child(3) {
            top: 100px;
            left: 300px;
            z-index: 3;
        }
        
        .showcase-card.active {
            transform: scale(1.1);
            border-color: var(--highlight-color);
            box-shadow: 0 25px 50px rgba(244, 164, 96, 0.25);
            z-index: 4;
        }
        
        .showcase-icon {
            width: 80px;
            height: 80px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: var(--transition);
        }
        
        .showcase-card.active .showcase-icon {
            background: var(--highlight-color);
            transform: scale(1.1);
        }
        
        .showcase-icon i {
            font-size: 35px;
            color: var(--primary-bg);
        }
        
        .showcase-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .showcase-description {
            color: var(--secondary-text);
            font-size: 0.95rem;
        }
        
        .showcase-nav {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .showcase-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--secondary-text);
            cursor: pointer;
            transition: var(--transition);
        }
        
        .showcase-dot.active {
            background: var(--highlight-color);
            transform: scale(1.2);
        }
        
        /* Enhanced CTA Section */
        .cta-section {
            padding: 160px 0;
            background: linear-gradient(135deg, rgba(244, 164, 96, 0.95) 0%, rgba(230, 149, 80, 0.9) 100%), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }
        
        .cta-container {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .cta-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.25);
            color: var(--primary-bg);
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 1.1rem;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(10px);
            font-weight: 600;
            letter-spacing: 1px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .cta-badge i {
            margin-right: 12px;
            font-size: 1.3rem;
        }
        
        .cta-title {
            font-size: 4.2rem;
            font-weight: 800;
            margin-bottom: 30px;
            color: var(--primary-bg);
            line-height: 1.1;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .cta-description {
            font-size: 1.5rem;
            margin-bottom: 50px;
            color: rgba(14, 17, 23, 0.9);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 500;
            line-height: 1.6;
        }
        
        .cta-btn {
            background: var(--primary-bg);
            border: none;
            color: var(--highlight-color);
            padding: 20px 50px;
            border-radius: 50px;
            font-weight: 700;
            transition: var(--transition);
            font-size: 1.3rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
            position: relative;
            overflow: hidden;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }
        
        .cta-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
            transition: all 0.6s;
            z-index: -1;
        }
        
        .cta-btn:hover:before {
            left: 100%;
        }
        
        .cta-btn:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
            background: var(--secondary-bg);
        }
        
        /* Footer */
        .footer {
            background: var(--primary-bg);
            padding: 80px 0 0;
            position: relative;
        }
        
        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--highlight-color);
        }
        
        .footer-logo {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 32px;
            background: var(--accent-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-description {
            color: var(--secondary-text);
            margin-bottom: 25px;
            font-size: 1.05rem;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--secondary-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-text);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .social-link:hover {
            background: var(--highlight-color);
            color: var(--primary-bg);
            transform: translateY(-5px);
        }
        
        .footer-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--highlight-color);
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--secondary-text);
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            font-size: 1.05rem;
        }
        
        .footer-links a:hover {
            color: var(--highlight-color);
            transform: translateX(8px);
        }
        
        .footer-links a i {
            margin-right: 10px;
            font-size: 12px;
            color: var(--highlight-color);
        }
        
        .contact-info {
            list-style: none;
            padding: 0;
        }
        
        .contact-info li {
            margin-bottom: 18px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            margin-right: 12px;
            color: var(--highlight-color);
            margin-top: 5px;
            font-size: 1.1rem;
        }
        
        .contact-info div {
            flex: 1;
        }
        
        .contact-info strong {
            display: block;
            margin-bottom: 5px;
            color: var(--primary-text);
        }
        
        .contact-info p {
            color: var(--secondary-text);
            margin: 0;
        }
        
        .copyright {
            text-align: center;
            padding: 25px 0;
            margin-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--secondary-text);
            font-size: 0.95rem;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: var(--highlight-color);
            color: var(--primary-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 99;
            box-shadow: 0 5px 15px rgba(244, 164, 96, 0.3);
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--highlight-hover);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(244, 164, 96, 0.4);
        }
        
        /* Floating Animation */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        .floating {
            animation: float 8s ease-in-out infinite;
        }
        
        /* NEW: Glitch Effect */
        .glitch {
            position: relative;
        }
        
        .glitch::before,
        .glitch::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .glitch::before {
            left: 2px;
            text-shadow: -2px 0 #ff00c1;
            clip: rect(44px, 450px, 56px, 0);
            animation: glitch-anim 5s infinite linear alternate-reverse;
        }
        
        .glitch::after {
            left: -2px;
            text-shadow: -2px 0 #00fff9;
            clip: rect(44px, 450px, 56px, 0);
            animation: glitch-anim2 5s infinite linear alternate-reverse;
        }
        
        @keyframes glitch-anim {
            0% {
                clip: rect(42px, 9999px, 44px, 0);
            }
            5% {
                clip: rect(12px, 9999px, 59px, 0);
            }
            10% {
                clip: rect(48px, 9999px, 29px, 0);
            }
            15% {
                clip: rect(42px, 9999px, 73px, 0);
            }
            20% {
                clip: rect(63px, 9999px, 27px, 0);
            }
            25% {
                clip: rect(34px, 9999px, 55px, 0);
            }
            30% {
                clip: rect(86px, 9999px, 73px, 0);
            }
            35% {
                clip: rect(20px, 9999px, 20px, 0);
            }
            40% {
                clip: rect(26px, 9999px, 60px, 0);
            }
            45% {
                clip: rect(25px, 9999px, 66px, 0);
            }
            50% {
                clip: rect(57px, 9999px, 98px, 0);
            }
            55% {
                clip: rect(5px, 9999px, 46px, 0);
            }
            60% {
                clip: rect(82px, 9999px, 31px, 0);
            }
            65% {
                clip: rect(54px, 9999px, 27px, 0);
            }
            70% {
                clip: rect(28px, 9999px, 99px, 0);
            }
            75% {
                clip: rect(45px, 9999px, 69px, 0);
            }
            80% {
                clip: rect(23px, 9999px, 85px, 0);
            }
            85% {
                clip: rect(54px, 9999px, 84px, 0);
            }
            90% {
                clip: rect(45px, 9999px, 47px, 0);
            }
            95% {
                clip: rect(37px, 9999px, 20px, 0);
            }
            100% {
                clip: rect(4px, 9999px, 91px, 0);
            }
        }
        
        @keyframes glitch-anim2 {
            0% {
                clip: rect(65px, 9999px, 100px, 0);
            }
            5% {
                clip: rect(52px, 9999px, 74px, 0);
            }
            10% {
                clip: rect(79px, 9999px, 85px, 0);
            }
            15% {
                clip: rect(75px, 9999px, 5px, 0);
            }
            20% {
                clip: rect(67px, 9999px, 61px, 0);
            }
            25% {
                clip: rect(14px, 9999px, 79px, 0);
            }
            30% {
                clip: rect(1px, 9999px, 66px, 0);
            }
            35% {
                clip: rect(86px, 9999px, 30px, 0);
            }
            40% {
                clip: rect(23px, 9999px, 98px, 0);
            }
            45% {
                clip: rect(85px, 9999px, 72px, 0);
            }
            50% {
                clip: rect(71px, 9999px, 75px, 0);
            }
            55% {
                clip: rect(2px, 9999px, 48px, 0);
            }
            60% {
                clip: rect(30px, 9999px, 16px, 0);
            }
            65% {
                clip: rect(59px, 9999px, 50px, 0);
            }
            70% {
                clip: rect(41px, 9999px, 62px, 0);
            }
            75% {
                clip: rect(2px, 9999px, 82px, 0);
            }
            80% {
                clip: rect(47px, 9999px, 73px, 0);
            }
            85% {
                clip: rect(3px, 9999px, 27px, 0);
            }
            90% {
                clip: rect(26px, 9999px, 55px, 0);
            }
            95% {
                clip: rect(42px, 9999px, 97px, 0);
            }
            100% {
                clip: rect(38px, 9999px, 49px, 0);
            }
        }
        
        /* NEW: Parallax Scrolling Effect */
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        /* NEW: Text Typing Animation */
        .typing-text {
            overflow: hidden;
            border-right: 2px solid var(--highlight-color);
            white-space: nowrap;
            margin: 0 auto;
            animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
        }
        
        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }
        
        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: var(--highlight-color) }
        }
        
        /* NEW: Hover Glow Effect */
        .hover-glow {
            transition: all 0.3s ease;
        }
        
        .hover-glow:hover {
            box-shadow: 0 0 15px var(--highlight-color);
        }
        
        /* Responsive Styles */
        @media (max-width: 1199px) {
            .services-hero-title {
                font-size: 4rem;
            }
            
            .section-title {
                font-size: 2.8rem;
            }
            
            .cta-title {
                font-size: 3.5rem;
            }
            
            .showcase-container {
                flex-direction: column;
            }
            
            .showcase-visual {
                width: 100%;
                height: 400px;
            }
        }
        
        @media (max-width: 991px) {
            .services-hero-title {
                font-size: 3.5rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .cta-title {
                font-size: 3rem;
            }
            
            .cta-description {
                font-size: 1.3rem;
            }
            
            .package-card.featured {
                transform: scale(1);
            }
            
            .package-card.featured:hover {
                transform: translateY(-15px);
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .services-hero-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .comparison-table {
                display: block;
                overflow-x: auto;
            }
        }
        
        @media (max-width: 767px) {
            .services-hero {
                padding: 150px 0 100px;
            }
            
            .services-hero-title {
                font-size: 2.8rem;
            }
            
            .services-hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .cta-title {
                font-size: 2.5rem;
            }
            
            .cta-description {
                font-size: 1.1rem;
            }
            
            .service-card, .package-card {
                padding: 35px 25px;
            }
            
            .service-category-title {
                font-size: 2rem;
            }
            
            .showcase-visual {
                height: 350px;
            }
            
            .showcase-card {
                width: 250px;
                height: 300px;
            }
        }
        
        @media (max-width: 575px) {
            .services-hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .cta-title {
                font-size: 2.2rem;
            }
            
            .cta-description {
                font-size: 1rem;
            }
            
            .cta-badge {
                font-size: 0.9rem;
                padding: 10px 25px;
            }
            
            .showcase-visual {
                height: 300px;
            }
            
            .showcase-card {
                width: 200px;
                height: 250px;
                padding: 20px;
            }
        }