/* -------------=========================== Lucky Written CSS ===========================----------------------------- */







/* -----------------------==============   Animate houver button CSS startes   ===============------------------------------------- */
.animated-btn {
    font-weight: bold;
    color: white;
    border-radius: 2rem;
    cursor: pointer;
    width: 140px;
    height: 52.66px;
    border: none;
    background-color: #EF6603;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .animated-btn .span-mother {
    display: flex;
    overflow: hidden;
  }

  .animated-btn:hover .span-mother {
    position: absolute;
  }

  .animated-btn:hover .span-mother span {
    transform: translateY(1.2em);
  }

  .animated-btn .span-mother span:nth-child(1) {
    transition: 0.2s;
  }

  .animated-btn .span-mother span:nth-child(2) {
    transition: 0.3s;
  }

  .animated-btn .span-mother span:nth-child(3) {
    transition: 0.4s;
  }

  .animated-btn .span-mother span:nth-child(4) {
    transition: 0.5s;
  }

  .animated-btn .span-mother span:nth-child(5) {
    transition: 0.6s;
  }

  .animated-btn .span-mother span:nth-child(6) {
    transition: 0.7s;
  }

  .animated-btn .span-mother2 {
    display: flex;
    position: absolute;
    overflow: hidden;
  }

  .animated-btn .span-mother2 span {
    transform: translateY(-1.2em);
  }

  .animated-btn:hover .span-mother2 span {
    transform: translateY(0);
  }

  .animated-btn .span-mother2 span {
    transition: 0.2s;
  }

  .animated-btn .span-mother2 span:nth-child(2) {
    transition: 0.3s;
  }

  .animated-btn .span-mother2 span:nth-child(3) {
    transition: 0.4s;
  }

  .animated-btn .span-mother2 span:nth-child(4) {
    transition: 0.5s;
  }

  .animated-btn .span-mother2 span:nth-child(5) {
    transition: 0.6s;
  }

  .animated-btn .span-mother2 span:nth-child(6) {
    transition: 0.7s;
  }

  .animated-btn .span-mother2 span:nth-child(7) {
    transition: 0.8s;
  }


  .animated-btn .span-mother2 span:nth-child(9) {
    transition: 0.9s;
  }

  .animated-btn .span-mother2 span:nth-child(10) {
    transition: 1.0s;
  }

/* -----------------------==============   Animate houver button CSS Ended   ===============------------------------------------- */



/* -----------------====================== INdex page CArd  Css Started ==================--------------------- */

 .card {
    transition: transform 0.8s ease, opacity 0.8s ease;
    opacity: 0;
    transform: translateY(100px) scale(0.95);
    z-index: 0;
  }

  .card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    z-index: 10;
  }

  .card.prev {
    opacity: 0.4;
    transform: translateY(-40px) scale(0.92);
    z-index: 5;
  }

  .card.next {
    opacity: 0.6;
    transform: translateY(40px) scale(0.97);
    z-index: 5;
  }

/* -----------------====================== INdex page CArd  Css Ended  ==================--------------------- */


/* -----------------====================== INdex page WOrk Flow or Timeline   Css Started   ==================--------------------- */
 :root {
    --g1: #EF6603;
    --g2: #ff832aff;
  }

  .vh-center {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pin {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .timeline {
    position: relative;
    display: flex;
    align-items: center;
    gap: 3.5rem;
    padding: 0;
    will-change: transform;
  }

  .connector {
    position: absolute;
    top: calc(47% + 26px);
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    transform-origin: left center;
  }

  .connector-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform-origin: left center;
    transform: scaleX(0);
    background: linear-gradient(90deg, var(--g1), var(--g2));
    box-shadow: 0 0 26px rgba(34, 197, 94, 0.22);
  }

  .step {
    top: 20px;
    position: relative;
    width: max-content;
    z-index: 2;
    text-align: center;
  }

  .step-title {
    display: block;
    font-weight: 700;
    color: #cfcfcf;
    font-size: 1.15rem;
  }

  .step-sub {
    display: block;
    color: white;
    font-size: 0.86rem;
    margin-top: 0.25rem;
    max-width: 200px;
  }

  .capsule {
    position: relative;
    margin-top: .72rem;
    height: 44px;
    min-width: 140px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    margin-left: 36px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.6);
  }

  .capsule::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--g1), var(--g2));
    box-shadow: 0 0 20px rgba(255, 128, 0, 0.5);
    transition: left 0.36s cubic-bezier(.22, .9, .29, 1);
    z-index: 0;
  }

  .capsule.filled::before {
    left: 0;
  }

  .milestone {
    width: 3px;
    height: 96px;
    margin: 0.65rem auto 0;
    background: rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
  }

  .milestone::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--g1), var(--g2));
    box-shadow: 0 0 14px rgba(34, 197, 94, 0.22);
    transition: height .32s ease;
  }

  .milestone.filled::before {
    height: 100%;
  }

  .step-title.active {
    color: var(--g1);
    transform: translateY(-6px);
    text-shadow: 0 0 12px rgba(34, 197, 94, 0.14);
  }

  /* Rocket & sparks */
  #rocketWrap {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    z-index: 50;
  }

  #rocket {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #sparks {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
  }

  .spark {
    position: absolute;
    width: 5px;
    height: 5px;
    background: yellow;
    border-radius: 50%;
    pointer-events: none;
  }

  .light-flash {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    opacity: 0;
    pointer-events: none;
    z-index: 60;
  }

  #step2 {
    top: -50px;
  }

  #step4 {
    top: -80px;
  }

  #step6 {
    top: -80px;
  }

  #milestone4 {
    height: 95px;
  }

  #milestone2 {
    height: 40px;
  }

  .step-detail {
    margin-top: 0.35rem;
    font-size: 0.95rem;
    color: #ffffff;
    max-width: 220px;
    line-height: 1.3rem;
    font-weight: 600;
  }

  @media (max-width:1024px) {
    .timeline {
      gap: 2.4rem;
    }

    .capsule {
      min-width: 110px;
      height: 40px;
    }
  }

  @media (max-width:640px) {
    .timeline {
      gap: 1.6rem;
    }

    .capsule {
      min-width: 92px;
      height: 36px;
    }

    .connector {
      top: calc(50% + 20px);
      height: 5px;
    }
  }

/* -----------------====================== INdex page WOrk Flow or Timeline   Css Ended  ==================--------------------- */


/* -----------------====================== INdex page CTA   Css Started   ==================--------------------- */



.pulsa {
  animation: pulsa 1.4s infinite;
  min-width: 200px;
  width: fit-content;
  border-radius: 9999px;
  /* overflow: hidden; */
}

.cta {
  /* width: 100%; */
  height: 100%;
  border: none;
  outline: none;
  background-color: none;
  border-radius: 9999px;
  padding: 8px 16px;
  color: #fff;
  font-size: 15px;
  background: linear-gradient(109.6deg, #EF6603 11.2%, #ff9a3c 53.7%, #EF6603 100.2%);
  letter-spacing: 0.08em;
  font-weight: 800;
  position: relative;
}

.cta:active {
  animation: pulsa-active .4s infinite;
}

.star {
  width: 2px;
  height: 2px;
  background-color: #EF6603;
  border-radius: 50%;
  position: absolute;
  animation: pulsa-stella 1.8s infinite;
  transition: all .8s ease-in-out;
}

.rocket {
  position: absolute;
  top: 8px;
  right: 16px;
  width:30px;
  z-index: -1;
  transform: rotate(180deg);
  transition: all .3s ease-in-out;
}

.pulsa:hover .rocket {
  z-index: auto;
  animation: muovi-razzo 1.8s linear;
  transform: rotate(0deg);
}

@keyframes pulsa {
  0% {
    box-shadow: 0 0 0 0 #EF6603;
  }

  100% {
    box-shadow: 0 0 0 8px #ef660301;
  }
}

@keyframes pulsa-stella {
  0% {
    box-shadow: 0 0 0 0 #EF6603;
  }

  100% {
    box-shadow: 0 0 0 4px #ef660301;
  }
}

@keyframes muovi-razzo {
  from {
    transform: rotate(180deg);
  }

  25% {
    transform: translate3d(40px, 32px, 0);
  }

  50% {
    transform: translate3d(32px, -60px, 0);
  }

  75% {
    transform: translate3d(0px, -60px, 0) rotate(0);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes pulsa-active {
  0% {
    box-shadow: 0 0 0 0 #EF6603;
  }

  100% {
    box-shadow: 0 0 0 16px #ef660301;
  }
}


/* --------------------- */
  @keyframes spin-slow {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }

  .rotate-infinite {
    animation: spin-slow 15s linear infinite;
  }


/* Hide scrollbar */
  .scrollbar-hide::-webkit-scrollbar {
    display: none;
  }

  .scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  /* Fade-in animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .animate-fadeIn {
    animation: fadeIn 0.7s ease-in-out;
  }

  /* Responsive carousel images */
  #carousel img {
    width: 100%;
    max-width: 20rem;
    /* ~320px */
    height: auto;
    max-height: 14rem;
    /* ~224px */
    object-fit: cover;
  }

  
  /* Hide scrollbar */
  .scrollbar-hide::-webkit-scrollbar {
    display: none;
  }

  .scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  /* Fade-in animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .animate-fadeIn {
    animation: fadeIn 0.7s ease-in-out;
  }
    /* Simple fade-in animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .animate-fadeIn {
    animation: fadeIn 0.7s ease-in-out;
  }
  

  /* ------------------------- */
/* -----------------====================== INdex page CTA ENded  ==================--------------------- */
/* -----------------====================== Gem WOrks  page Servicesection Started CSS   ==================--------------------- */

        .gradient-bg {
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        }
        
        .accent-gradient {
            background: linear-gradient(90deg, #EF6603 0%, #FF8C42 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .service-card {
            background: rgba(30, 30, 30, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(239, 102, 3, 0.2);
            border-radius: 16px;
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(239, 102, 3, 0.15);
            border-color: rgba(239, 102, 3, 0.4);
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        .glow {
            box-shadow: 0 0 20px rgba(239, 102, 3, 0.3);
        }
        
        .particle {
            position: absolute;
            background: rgba(239, 102, 3, 0.6);
            border-radius: 50%;
            opacity: 0;
        }
        
        .gradient-border {
            position: relative;
            border-radius: 16px;
            background: rgba(18, 18, 18, 0.9);
        }
        
        .gradient-border::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #EF6603, #000, #EF6603);
            border-radius: 18px;
            z-index: -1;
            animation: borderGlow 3s ease-in-out infinite alternate;
        }
        
        @keyframes borderGlow {
            0% { opacity: 0.4; }
            100% { opacity: 0.8; }
        }
        
        .typing-text::after {
            content: "|";
            animation: blink 1s step-end infinite;
        }
        
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }
        
        .stagger-item {
            opacity: 0;
            transform: translateY(20px);
        }

/* -----------------====================== Gem WOrks  page Servicesection Ended CSS   ==================--------------------- */






/* -----------------====================== Our Project page Servicesection Started  CSS   ==================--------------------- */


    .project-card {
      transition: all 0.3s ease;
    }
    
    .project-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(239, 102, 3, 0.2);
    }
    
    .feature-item {
      opacity: 0;
      transform: translateY(20px);
    }
    
    .project-detail-section {
      min-height: 100vh;
      padding-top: 100px;
    }
    
    .sticky-image {
      position: sticky;
      top: 120px;
      height: calc(100vh - 140px);
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }
    
    .sticky-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    
    .sticky-image img:hover {
      transform: scale(1.03);
    }
    
    .content-section {
      padding: 40px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .highlight-box {
      background: linear-gradient(145deg, rgba(239, 102, 3, 0.1), rgba(239, 102, 3, 0.05));
      border-left: 4px solid #ef6603;
      padding: 20px;
      border-radius: 0 8px 8px 0;
      margin: 25px 0;
    }
    
    .tech-badge {
      display: inline-block;
      background: rgba(239, 102, 3, 0.15);
      color: #ef6603;
      padding: 6px 14px;
      border-radius: 20px;
      margin: 5px;
      font-size: 0.85rem;
      font-weight: 500;
    }
    
    .progress-bar {
      position: fixed;
      top: 80px;
      left: 0;
      width: 0;
      height: 4px;
      background: linear-gradient(90deg, #ef6603, #ff8c42);
      z-index: 100;
      transition: width 0.2s ease;
    }
    
    .section-indicator {
      position: absolute;
      right: 30px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 10;
    }
    
    .indicator-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      border: 2px solid transparent;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    
    .indicator-dot.active {
      background: #ef6603;
      border-color: rgba(255, 255, 255, 0.5);
      transform: scale(1.3);
    }
    
    .indicator-dot:hover {
      transform: scale(1.4);
      background: rgba(239, 102, 3, 0.7);
    }
    
    .floating-cta {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: #ef6603;
      color: white;
      padding: 15px 25px;
      border-radius: 50px;
      font-weight: 600;
      box-shadow: 0 10px 30px rgba(239, 102, 3, 0.4);
      z-index: 90;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .floating-cta:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(239, 102, 3, 0.5);
    }
    
    @media (max-width: 768px) {
      .sticky-image {
        position: relative;
        top: 0;
        height: 400px;
        margin-bottom: 30px;
      }
      
      .section-indicator {
        display: none;
      }
    }
/* -----------------====================== Our Project page Servicesection Ended  CSS   ==================--------------------- */






/* --------------------======================== this is Consulting Services PAge  CSS startes    ====================-------------------------------- */
  /* Additional Styles for Enhanced Design */
  .hero-content {
    opacity: 0;
    transform: translateY(20px);
  }
  
  .stat-box {
    @apply bg-secondary/50 backdrop-blur-sm p-6 rounded-2xl border border-white/10;
  }
  
  .stat-number {
    @apply text-4xl font-bold text-primary mb-2;
  }
  
  .stat-label {
    @apply text-sm text-gray-300;
  }
  
  .feature-card {
    @apply bg-secondary/50 backdrop-blur-sm p-8 rounded-2xl border border-white/10 text-center transition-all duration-300 hover:bg-secondary/70 hover:-translate-y-2;
  }
  
  .icon-wrapper {
    @apply inline-flex items-center justify-center w-16 h-16 rounded-2xl bg-primary/10;
  }
  
  .service-item {
    @apply bg-secondary/50 backdrop-blur-sm p-6 rounded-2xl border border-white/10 flex items-start transition-all duration-300 hover:bg-secondary/70;
  }
  
  .service-icon {
    @apply flex-shrink-0 w-12 h-12 rounded-lg bg-primary/10 flex items-center justify-center mr-5;
  }
  
  .testimonial-carousel {
    @apply relative max-w-4xl mx-auto;
  }
  
  .testimonial-slide {
    @apply absolute opacity-0 transition-opacity duration-500;
  }
  
  .testimonial-slide.active {
    @apply relative opacity-100;
  }
  
  .testimonial-content {
    @apply bg-secondary/50 backdrop-blur-sm p-8 rounded-2xl border border-white/10 relative;
  }
  
  .quote-icon {
    @apply absolute -top-5 left-8 bg-dark p-2 rounded-full;
  }
  
  .testimonial-text {
    @apply text-lg text-gray-300 italic mb-6;
  }
  
  .testimonial-author {
    @apply flex flex-col;
  }
  
  .testimonial-controls {
    @apply flex justify-center mt-8 space-x-4;
  }
  
  .testimonial-prev, .testimonial-next {
    @apply w-10 h-10 rounded-full bg-primary/10 flex items-center justify-center text-primary transition-colors hover:bg-primary hover:text-white;
  }
  
  .faq-container {
    @apply space-y-4;
  }
  
  .faq-item {
    @apply bg-secondary/50 backdrop-blur-sm rounded-2xl border border-white/10 overflow-hidden;
  }
  
  .faq-question {
    @apply w-full px-6 py-4 text-left flex items-center justify-between text-white font-semibold;
  }
  
  .faq-answer {
    @apply px-6 pb-4 text-gray-400;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .faq-item.active .faq-answer {
    max-height: 300px;
  }
  
  .faq-item.active .faq-icon {
    transform: rotate(180deg);
  }
  
  .faq-icon {
    transition: transform 0.3s ease;
  }
  
  .scroll-indicator {
    @apply w-4 h-8 rounded-full border-2 border-white/30 flex justify-center;
  }
  
  .scroll-line {
    @apply w-1 h-3 bg-primary rounded-full mt-1;
    animation: scroll 2s infinite;
  }
  
  .cta-shape-1, .cta-shape-2 {
    @apply absolute rounded-full;
    background: rgba(255, 255, 255, 0.1);
  }
  
  .cta-shape-1 {
    position: relative;
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
  }
  
  .cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
  }
  
  @keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
  }

  /* --------------------======================== this is Consulting Services PAge  CSS End    ====================-------------------------------- */

  /* -------font color white  */
  .font_color_w{
    color: white !important;
  }