  :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;
        }

        /* Portfolio Hero Section */
        .portfolio-hero {
            padding: 180px 0 120px;
            background: linear-gradient(135deg, rgba(14, 17, 23, 0.95) 0%, rgba(26, 32, 44, 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;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .portfolio-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;
        }

        .portfolio-hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 3;
        }

        .portfolio-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;
        }

        .portfolio-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;
        }

        .portfolio-hero-subtitle {
            font-size: 1.5rem;
            color: var(--secondary-text);
            margin-bottom: 40px;
            font-weight: 400;
            line-height: 1.6;
        }

        .portfolio-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;
        }

        .portfolio-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;
        }

        .portfolio-hero-badge:hover:before {
            left: 100%;
        }

        .portfolio-hero-badge i {
            margin-right: 12px;
            font-size: 1.2rem;
        }

        .portfolio-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);
        }

        /* 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;
        }

        /* Enhanced Work Process Section */
        .work-process-section {
            padding: var(--section-padding);
            background: var(--secondary-bg);
            position: relative;
            overflow: hidden;
        }

        .work-process-section .particles-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .process-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            z-index: 2;
        }

        .process-timeline {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-bottom: 80px;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(to right, transparent, var(--highlight-color), transparent);
            transform: translateY(-50%);
            z-index: 1;
        }

        .process-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
            width: 20%;
        }

        .process-step-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--primary-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            border: 3px solid var(--highlight-color);
            box-shadow: 0 10px 25px rgba(244, 164, 96, 0.3);
            transition: var(--transition);
            position: relative;
            cursor: pointer;
        }

        .process-step-circle:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 30px rgba(244, 164, 96, 0.5);
        }

        .process-step-circle i {
            font-size: 30px;
            color: var(--highlight-color);
        }

        .process-step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 30px;
            height: 30px;
            background: var(--highlight-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            color: var(--primary-bg);
        }

        .process-step-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            text-align: center;
        }

        .process-step-description {
            color: var(--secondary-text);
            text-align: center;
            font-size: 0.95rem;
        }

        .process-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .process-detail-card {
            background: var(--primary-bg);
            border-radius: var(--card-radius);
            padding: 40px 30px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .process-detail-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            border-color: var(--highlight-color);
        }

        .process-detail-icon {
            width: 70px;
            height: 70px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: var(--transition);
        }

        .process-detail-card:hover .process-detail-icon {
            background: var(--highlight-color);
            transform: scale(1.1);
        }

        .process-detail-icon i {
            font-size: 30px;
            color: var(--primary-bg);
        }

        .process-detail-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--highlight-color);
        }

        .process-detail-description {
            color: var(--secondary-text);
            margin-bottom: 20px;
        }

        .process-detail-features {
            list-style: none;
            padding: 0;
        }

        .process-detail-features li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .process-detail-features li i {
            color: var(--highlight-color);
            margin-right: 10px;
            font-size: 0.9rem;
        }

        /* Service Portfolio Sections */
        .service-portfolio-section {
            padding: var(--section-padding);
            position: relative;
            overflow: hidden;
        }

        .service-portfolio-section .particles-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .service-portfolio-section:nth-child(even) {
            background: var(--secondary-bg);
        }

        .service-portfolio-section:nth-child(odd) {
            background: var(--primary-bg);
        }

        .service-container {
            position: relative;
            z-index: 2;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-auto-rows: minmax(300px, auto);
            gap: 30px;
        }

        .service-item {
            border-radius: var(--card-radius);
            overflow: hidden;
            position: relative;
            transition: var(--transition);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            cursor: pointer;
        }

        .service-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        }

        .service-item-large {
            grid-column: span 6;
            grid-row: span 2;
        }

        .service-item-medium {
            grid-column: span 6;
            grid-row: span 1;
        }

        .service-item-small {
            grid-column: span 3;
            grid-row: span 1;
        }

        .service-item-tall {
            grid-column: span 5;
            grid-row: span 2;
        }
        


        .service-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .service-item:hover .service-img {
            transform: scale(1.05);
        }

        .service-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(14, 17, 23, 0.95));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            opacity: 0;
            transition: var(--transition);
        }

        .service-item:hover .service-overlay {
            opacity: 1;
        }

        .service-category {
            display: inline-block;
            background: var(--highlight-color);
            color: var(--primary-bg);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .service-description {
            color: var(--secondary-text);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .service-link {
            color: var(--highlight-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
        }

        .service-link:hover {
            color: var(--highlight-hover);
            transform: translateX(5px);
        }

        /* Video Portfolio Section */
        .video-portfolio-section {
            padding: var(--section-padding);
            background: var(--primary-bg);
            position: relative;
            overflow: hidden;
        }

        .video-portfolio-section .particles-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .video-container {
            position: relative;
            z-index: 2;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-auto-rows: minmax(250px, auto);
            gap: 30px;
        }

        .video-item {
            background: var(--secondary-bg);
            border-radius: var(--card-radius);
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .video-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        }

        .video-item-large {
            grid-column: span 8;
            grid-row: span 2;
        }

        .video-item-medium {
            grid-column: span 4;
            grid-row: span 1;
        }

        .video-item-small {
            grid-column: span 4;
            grid-row: span 1;
        }

        .video-thumbnail {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .video-item:hover .video-thumbnail img {
            transform: scale(1.05);
        }

        .video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(244, 164, 96, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-bg);
            font-size: 1.5rem;
            transition: var(--transition);
            opacity: 0;
            cursor: pointer;
            z-index: 10;
        }

        .video-item:hover .video-play-btn {
            opacity: 1;
        }

        .video-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 25px;
            background: linear-gradient(to top, rgba(14, 17, 23, 0.95), transparent);
            z-index: 5;
        }

        .video-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .video-description {
            color: var(--secondary-text);
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .video-meta {
            display: flex;
            justify-content: space-between;
            color: var(--secondary-text);
            font-size: 0.9rem;
        }

        /* 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);
        }

        /* Project Modal */
        .project-modal .modal-content {
            background: var(--secondary-bg);
            border-radius: var(--card-radius);
            border: none;
            color: var(--primary-text);
        }

        .project-modal .modal-header {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px 30px;
        }

        .project-modal .modal-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--highlight-color);
        }

        .project-modal .btn-close {
            filter: invert(1);
            opacity: 0.7;
        }

        .project-modal .modal-body {
            padding: 30px;
        }

        .project-modal-img {
            width: 100%;
            border-radius: 10px;
            margin-bottom: 25px;
        }

        .project-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .project-detail-item {
            background: var(--primary-bg);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }

        .project-detail-title {
            font-size: 0.9rem;
            color: var(--secondary-text);
            margin-bottom: 8px;
        }

        .project-detail-value {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--highlight-color);
        }

        .project-description {
            color: var(--secondary-text);
            margin-bottom: 30px;
            line-height: 1.7;
        }

        .project-features {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .project-features li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }

        .project-features li i {
            color: var(--highlight-color);
            margin-right: 12px;
            font-size: 1rem;
        }

        .project-links {
            display: flex;
            gap: 15px;
        }

        .project-link {
            background: var(--highlight-color);
            color: var(--primary-bg);
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .project-link:hover {
            background: var(--highlight-hover);
            transform: translateY(-3px);
            color: var(--primary-bg);
        }

        .project-link-outline {
            background: transparent;
            border: 2px solid var(--highlight-color);
            color: var(--highlight-color);
        }

        .project-link-outline:hover {
            background: var(--highlight-color);
            color: var(--primary-bg);
        }

        /* Video Modal */
        .video-modal .modal-content {
            background: var(--secondary-bg);
            border-radius: var(--card-radius);
            border: none;
            color: var(--primary-text);
        }

        .video-modal .modal-header {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px 30px;
        }

        .video-modal .modal-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--highlight-color);
        }

        .video-modal .btn-close {
            filter: invert(1);
            opacity: 0.7;
        }

        .video-modal .modal-body {
            padding: 30px;
        }

        .video-player {
            width: 100%;
            border-radius: 10px;
            margin-bottom: 25px;
        }

        /* Floating Animation */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .floating {
            animation: float 8s ease-in-out infinite;
        }

        /* Enhanced Background Effects */
        .glow-effect {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }

        .glow-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.15;
        }

        .glow-1 {
            width: 400px;
            height: 400px;
            background: var(--highlight-color);
            top: 10%;
            left: 5%;
            animation: float 12s ease-in-out infinite;
        }

        .glow-2 {
            width: 300px;
            height: 300px;
            background: #4A90E2;
            bottom: 15%;
            right: 10%;
            animation: float 10s ease-in-out infinite reverse;
        }

        .glow-3 {
            width: 250px;
            height: 250px;
            background: #50C878;
            top: 60%;
            left: 70%;
            animation: float 14s ease-in-out infinite;
        }

        /* Responsive Styles */
        @media (max-width: 1199px) {
            .portfolio-hero-title {
                font-size: 4rem;
            }

            .section-title {
                font-size: 2.8rem;
            }

            .cta-title {
                font-size: 3.5rem;
            }

            .service-grid,
            .video-grid {
                grid-template-columns: repeat(6, 1fr);
            }

            .service-item-large,
            .video-item-large {
                grid-column: span 6;
            }

            .service-item-medium,
            .service-item-tall,
            .video-item-medium {
                grid-column: span 3;
            }

            .service-item-small,
            .video-item-small {
                grid-column: span 2;
            }
        }

        @media (max-width: 991px) {
            .portfolio-hero-title {
                font-size: 3.5rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .cta-title {
                font-size: 3rem;
            }

            .cta-description {
                font-size: 1.3rem;
            }

            .process-timeline {
                flex-direction: column;
                align-items: center;
                gap: 40px;
            }

            .process-step {
                width: 100%;
                max-width: 300px;
            }

            .process-timeline::before {
                display: none;
            }

            .service-grid,
            .video-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .service-item-large,
            .video-item-large {
                grid-column: span 4;
            }

            .service-item-medium,
            .service-item-tall,
            .video-item-medium {
                grid-column: span 2;
            }

            .service-item-small,
            .video-item-small {
                grid-column: span 2;
            }
        }

        @media (max-width: 767px) {
            .portfolio-hero {
                padding: 150px 0 100px;
            }

            .portfolio-hero-title {
                font-size: 2.8rem;
            }

            .portfolio-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-grid,
            .video-grid {
                grid-template-columns: 1fr;
            }

            .service-item-large,
            .service-item-medium,
            .service-item-small,
            .service-item-tall,
            .video-item-large,
            .video-item-medium,
            .video-item-small {
                grid-column: span 1;
            }
        }

        @media (max-width: 575px) {
            .portfolio-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;
            }

            .portfolio-hero-cta {
                flex-direction: column;
            }
        }