  :root {
            --primary: #ec4899;
            --primary-dark: #db2777;
            --secondary: #8b5cf6;
            --accent: #f59e0b;
            --dark: #0f172a;
            --light: #f8fafc;
            --gray: #64748b;
            --gray-light: #cbd5e1;
            --success: #10b981;
        }
        /* Header Styles */
        .service-hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 50px 0 50px;
            position: relative;
            overflow: hidden;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        
        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 1;
        }
        
        .shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .shape-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -100px;
        }
        
        .shape-2 {
            width: 200px;
            height: 200px;
            bottom: -80px;
            left: -80px;
        }
        
        .shape-3 {
            width: 150px;
            height: 150px;
            top: 40%;
            right: 20%;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .service-breadcrumb {
            margin-bottom: 30px;
        }
        
        .breadcrumb-link {
          
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        .breadcrumb-separator {
            margin: 0 12px;
        }
        
        
        .service-subtitle {
            font-size: 1.4rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 700px;
            font-weight: 400;
        }
        
        .hero-stats {
            display: flex;
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .stat-item {
            display: flex;
            flex-direction: column;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .hero-actions {
            display: flex;
            gap: 20px;
            padding-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .btn-primary-custom {
            background: white;
            color: var(--primary);
            border: none;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-primary-custom:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--light);
            transition: all 0.4s ease;
            z-index: -1;
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }
        
        .btn-primary-custom:hover:before {
            width: 100%;
        }
        
        .btn-outline-custom {
            background: transparent;
        
            border: 2px solid white;
            padding: 14px 38px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.4s ease;
        }
        
        .btn-outline-custom:hover {
            background: white;
            color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        /* Service Overview */
        .service-overview {
            padding: 120px 0;
        
            position: relative;
        }
        
        .section-title {
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 6px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            bottom: -15px;
            left: 0;
            border-radius: 3px;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 60px;
            max-width: 700px;
        }
        
        .overview-content {
            position: relative;
        }
        
        .floating-card {
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 1px solid rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
        }
        [data-bs-theme=dark] .floating-card {
            background: var(--bs-light) !important;
            color: white;
        }
            
        
        .floating-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
        }
        
        .card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
        }
        
       
        
        .card-text {
            color: var(--gray);
            margin-bottom: 25px;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .feature-list li {
            padding: 10px 0;
            position: relative;
            padding-left: 35px;
            font-weight: 500;
        }
        
        .feature-list li:before {
            content: "▸";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        /* Design Services Section */
        .design-services {
            padding: 100px 0;
        }
        
        .service-card {
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            height: 100%;
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
        }
        [data-bs-theme=dark] .service-card {
            background: var(--bs-light) !important;
            color: white;
        }
        
        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            transition: all 0.5s ease;
            z-index: 0;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-card:hover:before {
            height: 100%;
        }
        
        .service-card:hover .service-icon,
        .service-card:hover .service-title,
        .service-card:hover .service-description {
            color: white;
            position: relative;
            z-index: 1;
        }
        
        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
            color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .service-title {
            font-weight: 700;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        
        .service-description {
            color: var(--gray);
            transition: all 0.3s ease;
        }
        
        /* Process Section */
        .service-process {
            padding: 120px 0;
            position: relative;
        }
        
        .process-container {
            position: relative;
        }
        
        .process-line {
            position: absolute;
            top: 100px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            z-index: 1;
        }
        
        .process-step {
            text-align: center;
            padding: 0 20px;
            position: relative;
            z-index: 2;
            margin-bottom: 60px;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: white;
            border: 3px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.8rem;
            font-weight: 800;
            margin: 0 auto 30px;
            box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
            position: relative;
            transition: all 0.4s ease;
        }
        
        .process-step:hover .step-number {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }
        
        .step-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .step-description {
            color: var(--gray);
        }
        
        /* Design Principles */
        .design-principles {
            padding: 100px 0;
        }
        
        .principle-card {
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            height: 100%;
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
        }
        [data-bs-theme=dark] .principle-card {
            background: var(--bs-light) !important;
            color: white;
        }
        
        .principle-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
        }
        
        .principle-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            margin: 0 auto 25px;
            box-shadow: 0 10px 20px rgba(236, 72, 153, 0.2);
        }
        
        .principle-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .principle-description {
            color: var(--gray);
        }
        
        /* Tools Section */
        .design-tools {
            padding: 100px 0;
        }
        
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        
        .tool-item {
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.03);
        }
        [data-bs-theme=dark] .tool-item {
            background: var(--bs-light) !important;
            color: white;
        }
        
        .tool-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .tool-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .tool-name {
            font-weight: 600;
        }
        
        /* CTA Section */
        .service-cta {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 25px;
            line-height: 1.1;
        }
        
        .cta-subtitle {
            font-size: 1.3rem;
            margin-bottom: 50px;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-cta-large {
            background: white;
            color: var(--primary);
            border: none;
            padding: 20px 50px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.2rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .btn-cta-large:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 1200px) {
            
            .cta-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 992px) {
        
            .process-line {
                display: none;
            }
            
            .hero-stats {
                flex-wrap: wrap;
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .service-hero {
                padding: 100px 0 80px;
                min-height: auto;
            }
            
            .service-subtitle {
                font-size: 1.2rem;
            }
           
            
            .service-overview, .service-process, .design-services, .design-principles, .design-tools, .service-cta {
                padding: 80px 0;
            }
            
            .cta-title {
                font-size: 2.5rem;
            }
            
            .hero-actions {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .btn-primary-custom, .btn-outline-custom {
                width: 100%;
                text-align: center;
            }
        }
        
        @media (max-width: 576px) {
           
            
            .cta-title {
                font-size: 2rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .floating-card, .service-card, .principle-card {
                padding: 30px 25px;
            }
        }

          .results-section {
            padding: 100px 0;
        }
        
        .result-card {
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            height: 100%;
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
        }
        [data-bs-theme=dark] .result-card {
            background: var(--bs-light) !important;
            color: white;
        }
        
        .result-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
        }
        
        .result-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            margin: 0 auto 25px;
            box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
        }
        
        .result-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .result-description {
            color: var(--gray);
        }
             .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        
        .tech-item {
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.03);
        }
        [data-bs-theme=dark] .tech-item {
            background: var(--bs-light) !important;
            color: white;
        }
        
        .tech-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .tech-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .tech-name {
            font-weight: 600;
            color: var(--dark);
        }
         .application-card {
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            height: 100%;
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
        }
        [data-bs-theme=dark] .application-card {
            background: var(--bs-light) !important;
            color: white;
        }
        [data-bs-theme=dark] .tech-name {
            font-weight: 600;
            color: #ffffff;
        }
        
        .application-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
        }
        
        .application-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin: 0 auto 25px;
            box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
        }
        
        .application-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .application-description {
            color: var(--gray);
        }
          /* Industries Section */
        .industries-section {
            padding: 100px 0;
        }
        
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        
        .industry-item {
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.03);
        }
        [data-bs-theme=dark] .industry-item {
            background: var(--bs-light) !important;
            color: white;
        }
        
        .industry-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .industry-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .industry-name {
            font-weight: 600;
        }
         /* Expertise Section */
        .expertise-section {
            padding: 100px 0;
        }
        
        .expertise-card {
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            height: 100%;
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
        }
        [data-bs-theme=dark] .expertise-card {
            background: var(--bs-light) !important;
            color: white;
        }
        
        .expertise-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
        }
        
        .expertise-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            margin: 0 auto 25px;
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
        }
        
        .expertise-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .expertise-description {
            color: var(--gray);
        }
         /* Cloud Platforms Section */
        .cloud-platforms {
            padding: 100px 0;
        }
        
        .platforms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        
        .platform-item {
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.03);
        }
        [data-bs-theme=dark] .platform-item {
            background: var(--bs-light) !important;
            color: white;
        }
        
        .platform-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .platform-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .platform-name {
            font-weight: 600;
        }
            
          .benefit-card {
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            height: 100%;
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
        }
        
        [data-bs-theme=dark] .benefit-card {
            background: var(--bs-light) !important;
            color: white;
        }
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
        }
        
        .benefit-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            margin: 0 auto 25px;
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
        }
        
        .benefit-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .benefit-description {
            color: var(--gray);
        }
         /* App Types Section */
        .app-types {
            padding: 100px 0;
        }
        
        .type-card {
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            height: 100%;
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
        }
        [data-bs-theme=dark] .type-card {
            background: var(--bs-light) !important;
            color: white;
        }
        
        .type-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            transition: all 0.5s ease;
            z-index: 0;
        }
        
        .type-card:hover {
            transform: translateY(-10px);
        }
        
        .type-card:hover:before {
            height: 100%;
        }
        
        .type-card:hover .type-icon,
        .type-card:hover .type-title,
        .type-card:hover .type-description {
            color: white;
            position: relative;
            z-index: 1;
        }
        
        .type-icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
            color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .type-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        
        .type-description {
            color: var(--gray);
            transition: all 0.3s ease;
        }
        