:root {
      --primary: #6C63FF;
      --secondary: #FF6584;
      --accent: #00BFA6;
      --dark: #2D3748;
      --light: #F7FAFC;
      --white: #FFFFFF;
      --gray-100: #F7FAFC;
      --gray-200: #EDF2F7;
      --gray-300: #E2E8F0;
      --gray-600: #718096;
      --gray-800: #2D3748;
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
      --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.08);
      --shadow-lg: 0 10px 25px rgba(0,0,0,0.1), 0 5px 10px rgba(0,0,0,0.05);
      --radius: 8px;
      --radius-lg: 16px;
      --transition: all 0.3s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      color: var(--dark);
      background-color: var(--white);
      overflow-x: hidden;
    }

    /* Typography Scale */
    h1, h2, h3, h4 {
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 0.5em;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }

    p {
      margin-bottom: 1rem;
    }

    /* Container */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--white);
      text-align: center;
      padding: 6rem 1rem;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
      background-size: cover;
      background-position: bottom;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      animation: fadeInUp 0.8s ease-out;
    }

    .hero p {
      font-size: 1.125rem;
      margin-bottom: 2.5rem;
      opacity: 0.9;
      animation: fadeInUp 0.8s ease-out 0.2s both;
    }

    .btn {
      display: inline-block;
      background-color: var(--white);
      color: var(--primary);
      padding: 0.875rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
      box-shadow: var(--shadow-md);
      border: none;
      cursor: pointer;
      font-size: 1rem;
      animation: fadeInUp 0.8s ease-out 0.4s both;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    /* Service Details */
    .service-details {
      padding: 5rem 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-title h2 {
      font-size: 2.25rem;
      color: var(--dark);
      margin-bottom: 1rem;
    }

    .section-title p {
      color: var(--gray-600);
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.125rem;
    }

    .features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .feature-card {
      background-color: var(--white);
      border-radius: var(--radius-lg);
      padding: 2.5rem 2rem;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      border: 1px solid var(--gray-200);
      text-align: center;
    }

    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .feature-card i {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 1.5rem;
      display: block;
    }

    .feature-card h3 {
      color: var(--dark);
      margin-bottom: 1rem;
      font-size: 1.5rem;
    }

    .feature-card p {
      color: var(--gray-600);
      margin-bottom: 1.5rem;
    }

    .service-features {
      list-style: none;
      text-align: left;
      margin-top: 1.5rem;
    }

    .service-features li {
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      font-size: 1rem;
    }

    .service-features i {
      font-size: 0.875rem;
      margin-right: 0.75rem;
      color: var(--accent);
      margin-bottom: 0;
    }

    /* Projects */
    .projects {
      background-color: var(--light);
      padding: 5rem 0;
    }

    .project-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-top: 3rem;
    }

    .project-card {
      background-color: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .project-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .project-img {
      height: 250px;
      overflow: hidden;
      position: relative;
    }

    .project-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }

    .project-card:hover .project-img img {
      transform: scale(1.05);
    }

    .project-info {
      padding: 1.5rem;
    }

    .project-info h3 {
      color: var(--dark);
      margin-bottom: 0.75rem;
      font-size: 1.25rem;
    }

    .project-info p {
      color: var(--gray-600);
      margin-bottom: 1rem;
    }

    .project-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1rem;
    }

    .project-tag {
      background-color: var(--light);
      color: var(--dark);
      padding: 0.35rem 0.75rem;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 500;
    }

    /* Process */
    .process {
      background-color: var(--light);
      padding: 5rem 0;
    }

    .process-steps {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      counter-reset: step-counter;
      margin-top: 3rem;
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 30px;
      bottom: 40px;
      width: 2px;
      background: var(--primary);
      opacity: 0.2;
      z-index: 1;
    }

    .step {
      background-color: var(--white);
      padding: 2rem 1.5rem;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      position: relative;
      z-index: 2;
      transition: var(--transition);
      margin-left: 60px;
    }

    .step:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

    .step::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--white);
      border-radius: 50%;
      font-weight: bold;
      font-size: 1.25rem;
      position: absolute;
      left: -90px;
      top: 50%;
      transform: translateY(-50%);
      box-shadow: var(--shadow-md);
    }

    .step h3 {
      color: var(--dark);
      margin-bottom: 0.75rem;
      font-size: 1.25rem;
    }

    .step p {
      color: var(--gray-600);
    }

    /* CTA */
    .cta {
      text-align: center;
      padding: 5rem 1rem;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
      background-size: cover;
      background-position: bottom;
    }

    .cta-container {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .cta h2 {
      font-size: 2.25rem;
      margin-bottom: 1.5rem;
    }

    .cta p {
      margin-bottom: 2.5rem;
      font-size: 1.125rem;
      opacity: 0.9;
    }

    .btn-secondary {
      background-color: transparent;
      color: var(--white);
      border: 2px solid var(--white);
    }

    .btn-secondary:hover {
      background-color: var(--white);
      color: var(--primary);
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Media Queries */
    @media (min-width: 640px) {
      h1 { font-size: 3rem; }
      h2 { font-size: 2.25rem; }

      .hero {
        padding: 8rem 1rem;
      }

      .hero h1 {
        font-size: 3rem;
      }

      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .project-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .step {
        margin:120px;
        padding: 2.5rem;
        right: 30px;

      }
    }

    @media (min-width: 768px) {
     .process-steps {
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem;
    }

    .step {
      padding: 2.5rem;
      padding-top: 4rem;
      margin-left: 0;
      text-align: center;
    }

    .step::before {
      left: 50%;
      top: -30px;
      transform: translateX(-50%);
    }

    /* Add connecting line for tablets and up */
    .process-steps::before {
      display: block;
      content: '';
      position: absolute;
      top: 40px;
      left: 50%;
      bottom: 40px;
      width: 2px;
      background: var(--primary);
      opacity: 0.2;
      z-index: 1;
      transform: translateX(-50%);
    }
    }

    @media (min-width: 1024px) {
      h1 { font-size: 3.5rem; }

      .features-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .project-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .process-steps {
        grid-template-columns: repeat(3, 1fr);
      }

      .process-steps::before {
        display: none;
      }

      .step {
        text-align: center;
        margin: 0 !important;
      }

      .step::before {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto 1.5rem;
      }
    }

    @media (min-width: 1280px) {
      .hero {
        padding: 12rem 2rem;
      }
    }