
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-blue: #1e3a8a;
            --text-gray: #374151;
        }
        
        :root {
            --primary-color: #2563eb;
            --secondary-color: #1e40af;
            --accent-color: #3b82f6;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
            --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
            --bg-light: #f8fafc;
            --bg-light-blue: #e6f0fa;
            --bg-light-gray: #f1f1f1;
            --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            --gradient-dark: linear-gradient(135deg, #1f2937 0%, #4b5563 100%);
            --gradient-cta: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --text-dark: #1f2937;
            --text-light: #ffffff;
            --accent: #3b82f6;
        }
        

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 25%, #dbeafe 50%, #e0f2fe 75%, #f0f9ff 100%);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
         /* Section Styling */
        .section {
            padding: 5rem 0;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--text-dark);
            position: relative;
        }

        .section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}
          /* Header Banner */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-image: url('../../img/services/services.jpg');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: scroll;
            color: white;
            overflow: hidden;
            opacity: 0.9;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center;
            background-size: cover;
            opacity: 0.3;
        }
        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.5); /* dark overlay, adjust opacity */
            z-index: 1;
        }

        .hero-content {
            position: left;
            z-index: 2;
            max-width: 800px;
            padding: 2rem;
            animation-delay: 0.3s;
        }

        .hero h1 {
            font-size: clamp(2rem, 3vw, 3rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            line-height: 1.2;
            -webkit-text-fill-color: white;
            
        }

        .hero p {
            font-size: clamp(1.125rem, 2vw, 1.25rem);
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .hero-cta:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        /* Sticky Navigation */
        .service-sticky-nav {
            position: sticky;
            top: 80px;
            z-index: 999;
            background-color: #ffffff;
            backdrop-filter: blur(10px);
            /* border-bottom: 1px solid rgba(226, 232, 240, 0.8); */
            transition: background 0.3s ease;
            box-shadow: none;
        }
        .service-sticky-nav .container {
            background-color: #ffffff;
        }

        .service-sticky-nav.visible {
            transform: translateY(0);
        }

        .service-sticky-nav.scrolled {
            background-color: #ffffff;
            box-shadow: var(--shadow-md);
        }

        .service-nav-content {
            display: flex;
            justify-content: flex-end;
            flex-wrap: wrap;
            gap: 2rem;
            padding: 1rem 0;
        }

        .service-nav-link {
            color: var(--text-gray);
            font-weight: 500;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            position: relative;
        }

        .service-nav-link.active {
            color: var(--primary-blue);
            background: rgba(59, 130, 246, 0.2);
            font-weight: 600;
        }
        
        .service-nav-link:hover {
            color: var(--primary-blue);
            background: rgba(59, 130, 246, 0.1);
        }
        section[id] {
            scroll-margin-top: 100px;
        }

         @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }

            .nav-content {
                gap: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }

            .service-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .section {
                padding: 3rem 0;
            }

            .service-sticky-nav {
                top: 70px;

            }
            .service-nav-content {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem;
                padding: 0.75rem;
            }

            .service-nav-link {
                padding: 0.4rem 0.75rem;
                font-size: 0.9rem;
            }
        }

        /* Overview Section */
        
    .angled-overview-section {
        position: relative;
        width: 100%;
        min-height: 500px;
        background: url('../../img/services/heroo.jpg') no-repeat center center;
        background-size: cover;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .angled-blue-glow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        clip-path: polygon(0 0, 75% 0, 62% 80%, 85% 100%, 0 100%);
        -webkit-clip-path: polygon(0 0, 75% 0, 62% 80%, 85% 100%, 0 100%);
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.523), rgba(79, 147, 241, 0.655));
        filter: blur(12px);
        z-index: 1;
    }

    .angled-white-overlay {
        position: relative;
        background: rgba(255, 255, 255, 0.75);
        clip-path: polygon(0 0, 73% 0, 62% 80%, 80% 100%, 0 100%);
        -webkit-clip-path: polygon(0 0, 73% 0, 62% 80%, 80% 100%, 0 100%);
        padding: 5rem 2rem;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        overflow: hidden;
        z-index: 2;
        backdrop-filter: blur(1px);
        -webkit-backdrop-filter: blur(1px);
    }

    .angled-content {
        margin-right: auto;
        margin-left: 2rem;
        max-width: 60%;
        z-index: 3;
    }

    .angled-content h2 {
        font-size: 3rem;
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        margin-bottom: 24px;
        line-height: 1.2;
        color: #1f1f1f;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }

    .bold {
        color: #000;
    }

    .highlight {
        color: #0066ff;
    }

    .angled-content p {
        font-size: 1.1rem;
        color: #2a2a2a;
        line-height: 1.85;
        text-align: justify;
        padding: 20px;
        font-family: 'Inter', sans-serif;
    }

    @media (min-width: 1441px) {
        .angled-overview-section {
            min-height: 500px;
        }

        .angled-white-overlay {
            padding: 8rem 2rem;
        }
    }

    @media (max-width: 768px) {
        .angled-overview-section {
            min-height: 400px;
            background-position: center top;
            background-size: cover;
        }

        .angled-white-overlay {
            padding: 3rem 1.5rem;
            margin: 1rem auto;
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(2px);
            clip-path: none !important;
            max-width: 90%;
            border-radius: 1.5rem;
        }

        .angled-content {
            max-width: 95%;
            font-size: 0.95rem;
        }

        .angled-blue-glow {
            display: none;
        }

        .angled-content h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .angled-content p {
            font-size: 1rem;
            line-height: 1.6;
        }
    }

    @media (max-width: 480px) {
        .angled-overview-section {
            min-height: 360px;
            background-size: cover;
            background-position: top;
        }

        .angled-white-overlay {
            padding: 2rem 1rem;
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(2px);
        }

        .angled-content {
            max-width: 95%;
            font-size: 0.95rem;
        }

        .angled-content h2 {
            font-size: 1.5rem;
            margin-bottom: 14px;
            line-height: 1.3;
        }

        .angled-content p {
            font-size: 0.9rem;
            padding: 12px;
            line-height: 1.6;
        }
    }

     /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

   
      /* Service Card */
        .services-section {
            padding: 60px 20px;
            text-align: center;

        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            position: relative;
            background-size: cover;
            background-position: center;
            border-radius: 20px;
            overflow: hidden;
            height: 350px;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            align-items: flex-end;
            opacity: 0.9;
        }

        .service-card:hover {
            transform: scale(1.03);
            box-shadow: 0 18px 30px rgba(0, 0, 0, 0.3);
        }

        .service-card .overlay {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            transition: background 0.3s;
        }

        .title-box {
            background: white;
            color: #111111;
            padding: 15px 15px;
            width: 100%;
            text-align: center;
            border-top: 2px solid rgba(30, 64, 175, 0.1);
            border-bottom: 2px solid rgba(30, 64, 175, 0.05);
            box-shadow: 0 4px 12px rgba(30, 64, 175, 0.05);
            border-radius: 0 0 12px 12px;
        }


        /* Entrance animation */
        @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
        }
      
   /* === Implementation Roadmap Styles === */
/* ========== Implementation Roadmap ========== */
.implementation-wrapper {
  max-width: 1350px;
  margin: 0 auto;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
}

.implementation-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: flex-start; /* unified fix */
}

.implementation-sidebar {
  border-right: 2px solid #93c5fd;
  padding-right: 1rem;
  position: sticky;
  top: 2rem;
}

.step-list .step-item {
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  color: #1e3a8a;
  border-bottom: 1px solid #cbd5e1;
  transition: all 0.3s ease;
  position: relative;
}

.step-list .step-item:hover,
.step-list .step-item.active {
  background-color: #dbeafe;
  border-radius: 0.5rem;
  color: #1e40af;
}

.step-list .step-item.active::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #dbeafe;
}

.implementation-content {
  padding-left: 1rem;
}

.step-heading {
  font-size: 2rem;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 1.25rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 0.5rem;
  line-height: 1.3;
}

.step-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 60px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 4px;
}

.step-description {
  font-size: 1.1rem;
  color: #334155;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  transition: opacity 0.3s ease;
}

.step-content-box img {
  display: block;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 auto;
}

.step-content-box img:hover {
  transform: scale(1.05);
}

/* ========== Mobile ≤640px ========== */
@media (max-width: 640px) {
  .implementation-wrapper {
    padding: 2rem 1rem;
    min-height: auto !important;
  }

  .implementation-grid {
    grid-template-columns: 1fr;
  }

  .implementation-sidebar {
    border: none;
    padding: 0;
    margin-bottom: 1.5rem;
    position: static !important;
    top: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .step-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .step-item {
    width: 100%;
    max-width: 320px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.85rem 1rem;
    border: 1px solid #93c5fd;
    border-radius: 0.75rem;
    background: #f8fafc;
    transition: all 0.3s ease;
  }

  .step-item.active {
    background: #3b82f6;
    color: #fff;
    border-color: #3b82f6;
  }

  .mobile-expand {
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    padding: 1rem;
    margin: 0.75rem 0;
    border-radius: 0.75rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.3s ease;
  }

  .mobile-expand .step-heading {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }

  .mobile-expand .step-description {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .mobile-expand img {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 16 / 10;
    border-radius: 0.5rem;
    margin: 0 auto;
    display: block;
  }

  .implementation-content {
    display: none;
  }
}

/* ========== Tablet 641–1024px ========== */
@media (min-width: 641px) and (max-width: 1024px) {
  .implementation-wrapper {
    min-height: auto !important;
  }

  .implementation-grid {
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: flex-start;
  }

  .implementation-sidebar {
    border-right: 2px solid #93c5fd;
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .step-item {
    font-size: 1rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
  }

  .implementation-content {
    display: block !important;
  }

  .mobile-expand {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

/* blogs section */
   /* Case Study */
.blog-section {
    background-color: #f9f9f9;
    position: relative;
    padding: 4rem 1rem;
    overflow: hidden;
}

.blog-section::before {
    content: "";
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    height: 300px;
    background-color: #d1ecf1; /* soft blue band */
    transform: translateY(-50%);
    z-index: 0;
    border-radius: 100px;
}

.blog-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.blog-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.blog-card {
    background-color: #ffffff;
    border-radius: 2rem;
    padding: 1.5rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 380px; /* Fixed height to match across all cards */
    position: relative;
}

.blog-card:hover {
    transform: translateY(-6px);
}

.blog-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}

.blog-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.blog-card p {
    flex-grow: 1;
    font-size: 0.9rem;
    color: #666666;
}

.blog-card a {
    margin-top:0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #0056b3; /* dark blue for better visibility */
    text-transform: uppercase;
    letter-spacing: 0.07em;
    text-decoration: none; /* No underline by default */
}

.blog-card a:hover {
    text-decoration: underline 4px solid var(--accent-teal); /* Underline only on hover */
}

@media (max-width: 768px) {

    .blog-section {
        padding: 3rem 1rem;
    }

    .blog-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .blog-grid {
        grid-template-columns: 9fr;
        gap: 2rem;
        padding: 0;
        max-width: 100%;
        margin: 0 auto;
    }

    .blog-card {
        max-width: 100%;
        width: 100%;
        padding: 1.5rem;
        height: auto;
        text-align: center;
        border-radius: 1.5rem;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    }

    .blog-img {
        width: 100px;
        height: 100px;
        margin: 0 auto 1rem;
        border-radius: 50%;
        object-fit: cover;
    }

    .blog-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        color: #111827;
    }

    .blog-card p {
        font-size: 0.95rem;
        color: #475569;
        margin-bottom: 1rem;
    }

    .blog-card a {
        display: inline-block;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--accent);
        letter-spacing: 0.05em;
        text-transform: uppercase;
        text-decoration: none;
        border-bottom: 2px solid transparent;
        transition: border-color 0.2s ease;
    }

    .blog-card a:hover {
        border-color: var(--accent-teal);
    }

    .blog-section::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 2.5rem 1rem;
    }

    .blog-img {
        width: 100px;
        height: 100px;
    }

    .blog-card {
        padding: 1rem;
    }

    .blog-card h3 {
        font-size: 0.95rem;
    }

    .blog-card p {
        font-size: 0.85rem;
    }

    .blog-card a {
        font-size: 0.8rem;
    }
}
         /* Testimonials Section */
    .testimonials {
     background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
      backdrop-filter: blur(20px);
      padding: 80px 0;
     margin-bottom: 0; 
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .section-subtitle {
      text-align: center;
      color: #64748b;
      font-size: 1.1rem;
      margin-bottom: 60px;
      font-weight: 400;
    }

    .testimonials-carousel {
      position: relative;
      max-width: 1400px;
      margin: 0 auto;
      padding: 2rem 0;
    }

    .carousel-wrapper {
      overflow: hidden;
      margin: 0 60px;
      position: relative;
    }

    .carousel-track {
      display: flex;
      width: max-content;
      transition: transform 0.5s ease;
    }

    .carousel-track:hover {
      animation-play-state: paused;
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    .testimonial-card {
      flex: 0 0 400px;
      margin: 0 1rem;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(20px);
      padding: 40px 30px;
      border-radius: 24px;
      box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
      position: relative;
      transition: all 0.4s ease;
      border: 1px solid rgba(255, 255, 255, 0.8);
    }

    .testimonial-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 60px rgba(59, 130, 246, 0.2);
      background: rgba(255, 255, 255, 1);
    }

    .quote-icon {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #4f46e5, #0066ff);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: white;
      opacity: 0.9;
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, #4f46e5, #0066ff);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.3rem;
      font-weight: 600;
      margin-right: 15px;
      box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
    }

    .client-info {
      flex: 1;
    }

    .client-name {
      font-weight: 700;
      font-size: 1.1rem;
      color: #1e293b;
      margin-bottom: 5px;
    }

    .client-position {
      font-size: 0.9rem;
      color: #64748b;
    }

    .rating {
      display: flex;
      gap: 0.2rem;
      margin-bottom: 15px;
    }

    .star {
      color: #fbbf24;
      font-size: 1.2rem;
    }

    .testimonial-text {
      font-size: 1rem;
      line-height: 1.7;
      color: #475569;
      font-style: italic;
      position: relative;
      padding-left: 15px;
    }

    .testimonial-text::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(135deg, #4f46e5, #0066ff);
      border-radius: 3px;
    }
                /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: flex;
            }

            .hero {
                padding: 100px 0 60px;
            }

            .section-title {
                font-size: 2rem;
            }

            .services-grid,
            .benefits-grid,
            .industries-grid {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .process-step::after {
                display: none;
            }

            .contact-form {
                margin: 2rem 1rem 0;
            }
        }

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

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Scroll animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
                /* CTA Section */
        .cta-section {
           background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
            color: #ffffff;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 0;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="b"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.05"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="100" cy="100" r="80" fill="url(%23b)"/><circle cx="900" cy="200" r="120" fill="url(%23b)"/><circle cx="300" cy="800" r="100" fill="url(%23b)"/></svg>') no-repeat center;
            background-size: cover;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.125rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 1rem 2.5rem;
            margin-bottom: 1rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .cta-button:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }
        /* fixed header mobileview */
        @media (max-width: 480px){
        .mobile-menu {
            display: block;
        }
     }
         @media (max-width: 768px){
        .mobile-menu {
        display: block;
        }

     }

  