/* ===== Global Service Template Styles ===== */

  .service-btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .service-btn-primary {
    background: linear-gradient(135deg, #03a9f4, #0288d1);
    color: #ffffff;
  }

  .service-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    color: #ffffff;
  }

  .service-btn-outline {
    background: transparent;
    border: 2px solid #03a9f4;
    color: #03a9f4;
  }

  .service-btn-outline:hover {
    background: #03a9f4;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }

  /* hero section */
  /* ===== Hero Section ===== */
      .service-hero {
        background: linear-gradient(135deg, rgba(26, 32, 44, 0.9), rgba(26, 32, 44, 0.8)),
          url('assets/img/service-banner.png') center/cover no-repeat;
        min-height: 90vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
      }

      .service-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 10% 20%, rgba(3, 169, 244, 0.3) 0%, transparent 20%),
          radial-gradient(circle at 90% 80%, rgba(237, 20, 91, 0.3) 0%, transparent 20%);
        z-index: 1;
      }

      .service-hero-content {
        position: relative;
        z-index: 2;
        padding: 2rem 0;
      }

      .service-hero-title {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        color: white;
      }

      .service-hero-subtitle {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 2rem;
        max-width: 600px;
      }

      .service-hero-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
      }

      .service-hero-graphic {
        position: absolute;
        right: -100px;
        top: 50%;
        transform: translateY(-50%);
        width: 600px;
        height: 600px;
        background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MDAgNTAwIj48ZGVmcz48bGluZWFyR3JhZGllbnQgaWQ9ImEiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMwM2E5ZjQiIHN0b3Atb3BhY2l0eT0iMC4yIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZWQxNDViIiBzdG9wLW9wYWNpdHk9IjAuMiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxjaXJjbGUgY3g9IjI1MCIgY3k9IjI1MCIgcj0iMjAwIiBmaWxsPSJ1cmwoI2EpIi8+PGNpcmNsZSBjeD0iMjUwIiBjeT0iMjUwIiByPSIxNTAiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4xKSIvPjxjaXJjbGUgY3g9IjI1MCIgY3k9IjI1MCIgcj0iMTAwIiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMSkiLz48Y2lyY2xlIGN4PSIyNTAiIGN5PSIyNTAiIHI9IjUwIiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMSkiLz48L3N2Zz4=');
        background-size: contain;
        background-repeat: no-repeat;
        opacity: 0.6;
        z-index: 1;
        animation: service-float 6s ease-in-out infinite;
      }

      @keyframes service-float {
        0% {
          transform: translateY(-50%) translateX(0) rotate(0deg);
        }

        50% {
          transform: translateY(-50%) translateX(20px) rotate(5deg);
        }

        100% {
          transform: translateY(-50%) translateX(0) rotate(0deg);
        }
      }

      /* ===== Responsive ===== */
      @media (max-width: 991px) {
        .service-hero-title {
          font-size: 2.5rem;
        }
      }

      @media (max-width: 767px) {
        .service-hero-title {
          font-size: 1.6rem;
        }

        .service-hero-graphic {
          display: none;
        }
      }

      /* ===== Stats Section ===== */
      .service-stats {
        background: var(--service-light);
        padding: 80px 0;
        position: relative;
      }


      /* simpler side heading */
      .stats-intro .stats-title {
        font-size: 1.60rem;
        font-weight: 600;
        color: #333;
        line-height: 1.4;
        margin-bottom: 20px;
      }

      /* === Unique Service Process - Modern Roadmap === */

      .unique-service-process {
        background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
        position: relative;
        /* padding: 80px 0; */
        font-family: "Inter", sans-serif;
      }

      .unique-service-process::before {
        /* subtle diagonal pattern overlay */
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px);
        background-size: 30px 30px;
        pointer-events: none;
      }

      .text-center h2 {
        /* font-size: 2rem; */
        font-weight: 700;
        color: #1f2937;
        position: relative;
        display: inline-block;
      }

      .text-center .section-sub {
        font-size: 1rem;
        color: #4b5563;
        margin-top: 10px;
      }

      /* Steps Container */
      .usp-steps {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
      }

      .usp-steps::before {
        content: "";
        position: absolute;
        top: 35px;
        left: 5%;
        width: 90%;
        height: 4px;
        background: linear-gradient(90deg, #6366f1, #3b82f6, #06b6d4);
        background-size: 200% 200%;
        animation: lineFlow 4s linear infinite;
        z-index: 0;
        border-radius: 4px;
      }

      @keyframes lineFlow {
        0% {
          background-position: 0% 50%;
        }

        100% {
          background-position: 100% 50%;
        }
      }

      /* Step Item */
      .usp-step {
        width: 16%;
        text-align: center;
        position: relative;
        z-index: 1;
        min-width: 150px;
        margin-bottom: 40px;
        padding: 20px 10px;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        animation: fadeInUp 0.6s ease-out forwards;
        opacity: 0;
      }

      .usp-step:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      }

      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .step-1 {
        animation-delay: 0.1s;
      }

      .step-2 {
        animation-delay: 0.3s;
      }

      .step-3 {
        animation-delay: 0.5s;
      }

      .step-4 {
        animation-delay: 0.7s;
      }

      .step-5 {
        animation-delay: 0.9s;
      }

      .step-6 {
        animation-delay: 1.1s;
      }

      /* Step Number Circle */
      .usp-step-number {
        width: 80px;
        height: 80px;
        margin: 0 auto 15px;
        color: #fff;
        border-radius: 50%;
        font-size: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        animation: pulseGlow 3s infinite;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .usp-step:hover .usp-step-number {
        transform: scale(1.15) rotate(5deg);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
      }

      @keyframes pulseGlow {
        0% {
          box-shadow: 0 0 0 rgba(0, 0, 0, 0);
        }

        50% {
          box-shadow: 0 0 20px rgba(99, 102, 241, 0.25);
        }

        100% {
          box-shadow: 0 0 0 rgba(0, 0, 0, 0);
        }
      }

      /* Step Gradients */
      .step-1 .usp-step-number {
        background: linear-gradient(135deg, #f7971e, #ffd200);
      }

      .step-2 .usp-step-number {
        background: linear-gradient(135deg, #f093fb, #f5576c);
      }

      .step-3 .usp-step-number {
        background: linear-gradient(135deg, #4facfe, #00f2fe);
      }

      .step-4 .usp-step-number {
        background: linear-gradient(135deg, #43e97b, #38f9d7);
      }

      .step-5 .usp-step-number {
        background: linear-gradient(135deg, #fa709a, #fee140);
      }

      .step-6 .usp-step-number {
        background: linear-gradient(135deg, #a8edea, #fed6e3);
      }

      /* Step Title + Desc */
      .usp-step h3 {
        font-size: 1.15rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 8px;
      }

      .usp-step p {
        font-size: 0.95rem;
        color: #4b5563;
        line-height: 1.6;
      }

      /* Responsive */
      @media (max-width: 991px) {
        .usp-steps {
          flex-direction: column;
          align-items: center;
        }

        .usp-steps::before {
          display: none;
          /* hide the horizontal line for mobile */
        }

        .usp-step {
          width: 100%;
          text-align: center;
          display: block;
          margin-bottom: 40px;
        }

        .usp-step-number {
          margin: 0 auto 15px;
        }
      }

      /* Digital service section */

      .digital-services-section {
        background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
        padding: 80px 0;
        position: relative;
        overflow: hidden;
      }

      /* Animated Background Elements */
      .digital-services-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
          radial-gradient(circle at 20% 20%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 80% 80%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
        animation: backgroundPulse 8s ease-in-out infinite;
      }

      @keyframes backgroundPulse {

        0%,
        100% {
          opacity: 0.3;
        }

        50% {
          opacity: 0.7;
        }
      }

      /* Floating Particles */
      .digital-services-section::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image:
          radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
          radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
          radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent),
          radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.3), transparent);
        background-repeat: repeat;
        background-size: 200px 100px;
        animation: particleFloat 20s linear infinite;
      }

      @keyframes particleFloat {
        0% {
          transform: translateY(0px) rotate(0deg);
        }

        100% {
          transform: translateY(-100px) rotate(360deg);
        }
      }

      .section-container {
        position: relative;
        z-index: 10;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
      }

      /* Header Section */
      .header-section {
        text-align: center;
        position: relative;
      }

      .badge-element {
        display: inline-block;
        padding: 8px 24px;
        background: linear-gradient(90deg, rgba(120, 119, 198, 0.2), rgba(255, 119, 198, 0.2));
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        color: #a78bfa;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 20px;
        backdrop-filter: blur(10px);
      }

      .main-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 800;
        background: linear-gradient(135deg, #ffffff 0%, #a78bfa 50%, #ec4899 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 24px;
        line-height: 1.2;
      }

      .sub-title {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.7);
        max-width: 900px;
        margin: 0 auto;
        line-height: 1.6;
      }

      /* Services Grid */
      .grid-layout {
        margin-top: 60px;
      }

      /* Service Card */
      .offering-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        padding: 0;
        overflow: hidden;
        position: relative;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        cursor: pointer;
        height: 100%;
      }

      .offering-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .offering-card:hover {
        transform: translateY(-2px) scale(1.01);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      }

      .offering-card:hover::before {
        opacity: 1;
      }

      /* Card Header */
      .card-top {
        padding: 14px 30px 14px;
        position: relative;
        background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
        overflow: hidden;
      }

      .card-top::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: headerShine 6s ease-in-out infinite;
      }

      @keyframes headerShine {

        0%,
        100% {
          transform: rotate(0deg) scale(1);
        }

        50% {
          transform: rotate(180deg) scale(1.1);
        }
      }

      .icon-container {
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 2;
        transition: all 0.3s ease;
        margin-bottom: 10px;
      }

      .offering-card:hover .icon-container {
        transform: scale(1.1) rotate(5deg);
        background: rgba(255, 255, 255, 0.25);
      }

      .icon-container i {
        font-size: 2rem;
        color: white;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
      }

      .card-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        margin: 0;
        position: relative;
        z-index: 2;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      }

      /* Card Body */
      .card-content {
        padding: 30px;
        color: rgba(255, 255, 255, 0.8);
      }

      .description-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 25px;
        color: rgba(255, 255, 255, 0.7);
      }

      .features-list {
        list-style: none;
        padding: 0;
      }

      .features-list li {
        display: flex;
        align-items: center;
        padding: 3px 0;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.8);
      }

      .features-list li::before {
        content: "✦";
        color: #a78bfa;
        font-weight: bold;
        margin-right: 12px;
        font-size: 1.1rem;
      }

      /* Gradient Variations */
      .color-scheme-1 {
        --gradient-start: #667eea;
        --gradient-end: #764ba2;
      }

      .color-scheme-2 {
        --gradient-start: #f093fb;
        --gradient-end: #f5576c;
      }

      .color-scheme-3 {
        --gradient-start: #4facfe;
        --gradient-end: #00f2fe;
      }

      .color-scheme-4 {
        --gradient-start: #43e97b;
        --gradient-end: #38f9d7;
      }

      .color-scheme-5 {
        --gradient-start: #fa709a;
        --gradient-end: #fee140;
      }

      .color-scheme-6 {
        --gradient-start: #65fff8;
        --gradient-end: #ff75a2;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .digital-services-section {
          padding: 80px 0;
        }

        .card-top {
          padding: 30px 25px 15px;
        }

        .card-content {
          padding: 25px;
        }
      }

      @media (max-width: 480px) {
        .section-container {
          padding: 0 15px;
        }

        .main-title {
          font-size: 2rem;
        }
      }

      /* ===== Service Tech Stack Section ===== */
      .service-tech {
        background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
        padding: 80px 0;
        position: relative;
        overflow: hidden;
      }

      .service-tech::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px);
        background-size: 30px 30px;
      }

      .service-tech-card {
        background: white;
        border-radius: 16px;
        padding: 1.5rem;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
        position: relative;
        overflow: hidden;
      }

      .service-tech-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      }

      .service-tech-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #6366f1, #3b82f6, #06b6d4);
        transform: scaleX(0);
        transition: transform 0.3s ease;
      }

      .service-tech-card:hover::before {
        transform: scaleX(1);
      }

      .service-tech-icon {
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        filter: grayscale(100%);
        transition: filter 0.3s ease;
      }

      .service-tech-card:hover .service-tech-icon {
        filter: grayscale(0%);
      }

      .service-tech-icon img {
        max-height: 100%;
        max-width: 100%;
      }

      .service-tech-name {
        font-size: 1rem;
        font-weight: 600;
        margin: 0;
      }

      /* Responsive */
      @media (max-width: 767px) {
        .tech-categories {
          gap: 10px;
        }

        .service-tech-card {
          padding: 1rem;
        }

        .service-tech-icon {
          height: 60px;
        }
      }

      /* serve business section */

      .industry-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
        max-width: 1000px;
        margin: 0 auto;
      }

      .industry-card {
        background: #fff;
        padding: 1.5rem;
        border-radius: 10px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(237, 20, 91, 0.05);
      }

      .industry-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(237, 20, 91, 0.1) 0%, transparent 70%);
        transition: transform 0.3s ease;
        z-index: 1;
      }

      .industry-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      }

      .industry-card:hover::before {
        transform: scale(1.2);
      }

      .icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
        position: relative;
        z-index: 2;
      }

      .icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
      }

      .industry-card:hover .icon img {
        transform: scale(1.15);
      }

      .industry-card h4 {
        font-size: 1rem;
        font-weight: 600;
        color: #2a2833;
        margin: 0;
        position: relative;
        z-index: 2;
        transition: color 0.3s ease;
      }

      .industry-card:hover h4 {
        color: #ed145b;
      }

      @media (max-width: 768px) {
        .industry-grid {
          grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
          gap: 1rem;
        }

        .industry-card {
          padding: 1rem;
        }

        .icon {
          width: 50px;
          height: 50px;
        }
      }

      

      /* ===== Service Case Studies Section ===== */
      .service-case-studies {
        background: var(--service-light);
        padding: 80px 0;
        position: relative;
      }

      .service-case-study-card {
        background: white;
        border-radius: var(--service-radius);
        overflow: hidden;
        box-shadow: var(--service-shadow-sm);
        transition: var(--service-transition);
        height: 100%;
        position: relative;
      }

      .service-case-study-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--service-shadow-lg);
      }

      .service-case-study-img {
        height: 220px;
        overflow: hidden;
        position: relative;
      }

      .service-case-study-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }

      .service-case-study-card:hover .service-case-study-img img {
        transform: scale(1.1);
      }

      .service-case-study-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 600;
        z-index: 2;
      }

      .service-case-study-content {
        padding: 1.5rem;
      }

      .service-case-study-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
      }

      .service-case-study-description {
        margin-bottom: 1rem;
        color: var(--service-gray);
      }

      .service-case-study-link {
        color: var(--service-primary);
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        transition: var(--service-transition);
      }

      .service-case-study-link:hover {
        color: var(--service-secondary);
      }

      .service-case-study-link i {
        margin-left: 0.5rem;
        transition: var(--service-transition);
      }

      .service-case-study-link:hover i {
        transform: translateX(5px);
      }

        /* Creative Testimonials Section */
        .creative-testimonials {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 60px 0;
            color: white;
        }
        
        .testimonial-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .testimonial-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
        }
        
        .testimonial-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #ffffff;
        }
        
        .testimonial-subtitle {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 15px auto 0;
        }
        
        /* Simplified Testimonial Cards */
        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
        }
        
        .quote-icon {
            font-size: 2rem;
            color: #667eea;
            opacity: 0.3;
            position: absolute;
            top: 15px;
            right: 20px;
        }
        
        .testimonial-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #333;
            margin-bottom: 20px;
            position: relative;
        }
        
        .client-info {
            display: flex;
            align-items: center;
        }
        
        .client-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 2px solid #f0f0f0;
        }
        
        .client-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .client-details h5 {
            margin: 0;
            font-size: 1rem;
            font-weight: 600;
            color: #333;
        }
        
        .client-details p {
            margin: 0;
            color: #667eea;
            font-size: 0.9rem;
        }
        
        /* Navigation */
        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        
        .nav-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .nav-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .nav-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }
        
        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }
        
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .creative-testimonials {
                padding: 40px 0;
            }
            
            .testimonial-title {
                font-size: 2rem;
            }
        }

        /* service FAQ */

 @keyframes float {

        0%,
        100% {
          transform: translateY(0) rotate(0deg)
        }

        50% {
          transform: translateY(-15px) rotate(180deg)
        }
      }
      .faq-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 20px
      }

      .faq-item {
        background: #fff;
        border: 1px solid #e8ecf3;
        border-radius: 12px;
        padding: 20px;
        transition: .35s ease;
        position: relative;
        box-shadow: 0 2px 6px rgba(0, 0, 0, .03);
      }

      .faq-item:hover {
        background: linear-gradient(90deg, rgba(102, 126, 234, .04), rgba(118, 75, 162, .04));
        border-color: #667eea;
        transform: translateY(-3px);
      }

      .faq-content {
        display: flex;
        align-items: flex-start;
        gap: 15px
      }

      .faq-number {
        font-size: 2.5rem;
        font-weight: 900;
        background: linear-gradient(135deg, #667eea, #764ba2);
        -webkit-background-clip: text;
        opacity: .7;
        min-width: 60px;
        transition: .3s;
        position: relative;
      }

      .faq-item:hover .faq-number {
        opacity: 1;
        transform: scale(1.08)
      }

      .faq-text {
        flex: 1
      }

      .faq-question {
        font-size: 1.3rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 8px;
        line-height: 1.3
      }

      .faq-answer {
        font-size: 1rem;
        color: #5a6c7d;
        line-height: 1.5;
        max-width: 100%
      }

      .faq-icon {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 1.6rem;
        opacity: 0;
        transform: scale(0) rotate(0deg);
        transition: .35s;
        color: #667eea
      }

      .faq-item:hover .faq-icon {
        opacity: 1;
        transform: scale(1) rotate(360deg)
      }

      .floating-element {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(102, 126, 234, .1), rgba(118, 75, 162, .1));
        animation: float 6s ease-in-out infinite;
      }

      .floating-element:nth-child(1) {
        width: 60px;
        height: 60px;
        top: 10%;
        right: 10%;
        animation-delay: -2s
      }

      .floating-element:nth-child(2) {
        width: 40px;
        height: 40px;
        bottom: 20%;
        left: 5%;
        animation-delay: -4s
      }

      .floating-element:nth-child(3) {
        width: 30px;
        height: 30px;
        top: 60%;
        right: 15%;
        animation-delay: -1s
      }

      @media(max-width:768px) {


        .faq-content {
          flex-direction: column;
          gap: 10px
        }

        .faq-number {
          font-size: 2rem;
          min-width: auto;
          margin-bottom: 5px
        }

        .faq-question {
          font-size: 1.2rem
        }

        .faq-answer {
          font-size: 1rem
        }

        .floating-element {
          display: none
        }
      }

      @media(max-width:480px) {


        .faq-question {
          font-size: 1.1rem
        }

        .faq-answer {
          font-size: .95rem
        }
      }

      

      /* ===== Block Section ===== */

      .block-section {
        background: #0a0e27;
        padding: 60px 0;
        position: relative;
    }

    .block-heading {
        font-size: 2.3rem;
        font-weight: 900;
        background: linear-gradient(135deg, #ffffff 0%, #a8b3ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .block-text {
        color: #b4b9d6;
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .block-text strong {
        color: #ffffff;
        font-weight: 700;
    }

    .block-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 30px;
    }

    .block-item {
        background: linear-gradient(135deg, #1a1f3a 0%, #0f1424 100%);
        border: 1px solid #2a2f4a;
        border-radius: 12px;
        padding: 18px;
        display: flex;
        gap: 16px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
    }

    .block-item:hover {
        transform: translateX(8px);
        border-color: #7928ca;
        box-shadow: 0 8px 30px rgba(121, 40, 202, 0.3);
    }

    .block-icon {
        width: 50px;
        height: 50px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
    }

    .block-item:nth-child(1) .block-icon {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }

    .block-item:nth-child(2) .block-icon {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        color: white;
    }

    .block-item:nth-child(3) .block-icon {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        color: white;
    }

    .block-content h5 {
        color: #ffffff;
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .block-content p {
        color: #8b92b8;
        font-size: 0.85rem;
        margin: 0;
    }

    .block-image {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        border: 2px solid #2a2f4a;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .block-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.4s ease;
    }

    .block-image:hover img {
        transform: scale(1.08);
    }

    @media (max-width: 991px) {
        .block-heading {
            font-size: 2.2rem;
        }
        
        .block-section {
            padding: 40px 0;
        }
    }

    @media (max-width: 767px) {
        .block-heading {
            font-size: 1.5rem;
        }
        
        .block-image {
            margin-top: 30px;
        }
    }