* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --light-bg: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    --border-color: #334155;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 35px 60px -12px rgba(0, 0, 0, 0.35);
  }
  
  body {
    font-family: "Inter", sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
  }
  
  .nav-logo h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.5rem;
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
  }
  
  .nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: var(--primary-color);
  }
  
  .nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
  }
  
  .nav-link:hover::after,
  .nav-link.active::after {
    width: 100%;
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
  }
  
  .page-hero {
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
  }
  
  .hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, var(--primary-color) 2px, transparent 2px),
      radial-gradient(circle at 80% 20%, var(--accent-color) 1px, transparent 1px),
      radial-gradient(circle at 40% 80%, var(--secondary-color) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: float 20s ease-in-out infinite;
  }
  
  @keyframes float {
    0%,
    100% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-20px) rotate(180deg);
    }
  }
  
  .hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .services-overview {
    padding: 6rem 0;
    background: var(--light-bg);
  }
  
  .overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .overview-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .overview-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
  }
  
  .service-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }
  
  .stat-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .stat-icon i {
    font-size: 1.5rem;
    color: white;
  }
  
  .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
  }
  
  .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
  }
  
  .service-wheel {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }
  
  .wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    z-index: 2;
  }
  
  .wheel-center i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .wheel-center span {
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  .wheel-item {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-align: center;
    transition: all 0.3s ease;
    animation: orbit 20s linear infinite;
  }
  
  .wheel-item:hover {
    border-color: var(--primary-color);
    transform: scale(1.1);
  }
  
  .wheel-item i {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
  }
  
  .wheel-item span {
    font-size: 0.7rem;
    font-weight: 500;
  }
  
  .item-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
  }
  
  .item-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: -6.67s;
  }
  
  .item-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -13.33s;
  }
  
  @keyframes orbit {
    from {
      transform: rotate(0deg) translateX(110px) rotate(0deg);
    }
    to {
      transform: rotate(360deg) translateX(110px) rotate(-360deg);
    }
  }
  
  .service-section {
    padding: 6rem 0;
  }
  
  .service-section.reverse {
    background: var(--light-bg);
  }
  
  .service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .service-icon i {
    font-size: 2rem;
    color: white;
  }
  
  .service-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
  }
  
  .service-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
  }
  
  .service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  
  .service-section.reverse .service-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .service-description p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .feature-icon i {
    font-size: 1.2rem;
    color: white;
  }
  
  .feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
  }
  
  .feature-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
  }
  
  .showcase-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 400px;
  }
  
  .gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .gallery-item.main {
    grid-row: span 2;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
  }
  
  .gallery-item:hover .gallery-overlay {
    transform: translateY(0);
  }
  
  .gallery-overlay h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
  }
  
  .advertising-dashboard {
    background: var(--darker-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
  }
  
  .dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .dashboard-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
  }
  
  .dashboard-stats {
    display: flex;
    gap: 1.5rem;
  }
  
  .dash-stat {
    text-align: center;
  }
  
  .dash-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
  }
  
  .dash-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
  }
  
  .dashboard-chart {
    margin-bottom: 2rem;
  }
  
  .chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 100px;
  }
  
  .chart-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    animation: growBar 1s ease-out;
  }
  
  @keyframes growBar {
    from {
      height: 0;
    }
  }
  
  .platform-icons {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
  }
  
  .platform-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  
  .platform-icon:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
  }
  
  .platform-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  
  .platform-icon span {
    font-size: 0.8rem;
    color: var(--text-secondary);
  }
  
  .service-process {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .process-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }
  
  .process-step:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  
  .step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
  }
  
  .step-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
  }
  
  .tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .tech-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
  }
  
  .tech-category:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
  }
  
  .category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .category-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  
  .category-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
  }
  
  .tech-list {
    list-style: none;
  }
  
  .tech-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }
  
  .tech-list li:hover {
    color: var(--primary-color);
    padding-left: 1rem;
  }
  
  .tech-list li:last-child {
    border-bottom: none;
  }
  
  .tech-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .tech-stack {
    background: var(--darker-bg);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--border-color);
  }
  
  .tech-stack h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
  }
  
  .stack-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .stack-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  
  .stack-item:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
  }
  
  .stack-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  
  .stack-item span {
    font-size: 0.8rem;
    color: var(--text-secondary);
  }
  
  .development-process {
    background: var(--darker-bg);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--border-color);
  }
  
  .development-process h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
  }
  
  .process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 80px;
  }
  
  .flow-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .flow-icon i {
    font-size: 1.2rem;
    color: white;
  }
  
  .flow-step span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
  }
  
  .flow-arrow {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
  }
  
  .client-cases {
    padding: 6rem 0;
    background: var(--light-bg);
  }
  
  .cases-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
    height: 600px;
  }
  
  .case-item {
    background: var(--dark-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
  }
  
  .case-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
  }
  
  .case-item.featured {
    grid-row: span 2;
  }
  
  .case-image {
    position: relative;
    height: 200px;
    overflow: hidden;
  }
  
  .case-item.featured .case-image {
    height: 300px;
  }
  
  .case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
  }
  
  .case-item:hover .case-image img {
    transform: scale(1.05);
  }
  
  .case-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  .case-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .case-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
  }
  
  .case-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
  }
  
  .case-results {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
  }
  
  .result-item {
    text-align: center;
  }
  
  .result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
  }
  
  .result-label {
    font-size: 0.8rem;
    color: var(--text-muted);
  }
  
  .case-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
  }
  
  .metric i {
    color: var(--primary-color);
  }
  
  .case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .case-tag {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
  }
  
  .solutions-cta {
    padding: 4rem 0;
  }
  
  .cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: 20px;
    color: white;
  }
  
  .cta-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
  }
  
  .footer {
    background: var(--darker-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
  }
  
  .footer-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .footer-section ul {
    list-style: none;
  }
  
  .footer-section ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer-section ul li a:hover {
    color: var(--primary-color);
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
  }
  
  .contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
  }
  
  .contact-info i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
  }
  
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }
  
    .nav-menu {
      position: fixed;
      left: -100%;
      top: 70px;
      flex-direction: column;
      background-color: var(--dark-bg);
      width: 100%;
      text-align: center;
      transition: 0.3s;
      box-shadow: var(--shadow-lg);
      padding: 2rem 0;
    }
  
    .nav-menu.active {
      left: 0;
    }
  
    .page-title {
      font-size: 2.5rem;
    }
  
    .overview-content {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  
    .service-content {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  
    .feature-grid {
      grid-template-columns: 1fr;
    }
  
    .tech-categories {
      grid-template-columns: 1fr;
    }
  
    .stack-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .cases-grid {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      height: auto;
    }
  
    .case-item.featured {
      grid-row: span 1;
    }
  
    .showcase-gallery {
      grid-template-columns: 1fr;
      height: auto;
    }
  
    .gallery-item.main {
      grid-row: span 1;
    }
  
    .process-flow {
      flex-direction: column;
      align-items: center;
    }
  
    .flow-arrow {
      transform: rotate(90deg);
    }
  
    .cta-content {
      flex-direction: column;
      text-align: center;
      gap: 2rem;
    }
  
    .service-stats {
      align-items: center;
    }
  
    .dashboard-stats {
      flex-direction: column;
      gap: 1rem;
    }
  
    .container {
      padding: 0 1rem;
    }
  
    .nav-container {
      padding: 0 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .page-title {
      font-size: 2rem;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .service-title {
      font-size: 2rem;
    }
  
    .service-header {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
  
    .service-stats {
      gap: 0.5rem;
    }
  
    .stat-card {
      flex-direction: column;
      text-align: center;
      padding: 1rem;
    }
  
    .feature-item {
      padding: 1rem;
    }
  
    .case-content {
      padding: 1.5rem;
    }
  
    .case-results {
      flex-direction: column;
      gap: 1rem;
    }
  
    .wheel-item {
      width: 60px;
      height: 60px;
    }
  
    .wheel-item i {
      font-size: 1rem;
    }
  
    .wheel-item span {
      font-size: 0.6rem;
    }
  
    .wheel-center {
      width: 100px;
      height: 100px;
    }
  
    .wheel-center i {
      font-size: 1.5rem;
    }
  
    .wheel-center span {
      font-size: 0.7rem;
    }
  }
  