

    body {
      background: #f7f9fc;
      color: #1e2a41;
      line-height: 1.5;
    }

    /* ----- GLOBAL DESIGN TOKENS ----- */
    :root {
      --accent: #ff5a2f;
      --accent-soft: #ff8a6f;
      --accent-light: #ffede8;
      --dark: #1a243b;
      --dark-soft: #25344f;
      --text-dark: #1e2a41;
      --text-soft: #4a5568;
      --card-white: #ffffff;
      --border-subtle: #e9ecf2;
      --grad-1: #1a243b;
      --grad-2: #2a3a5f;
    }

    h1, h2, h3, h4 {
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    /* ----- HERO SECTION ----- */
    .hero {
      position: relative; min-height: 90vh; display: flex; flex-direction: column; align-items: center;
      justify-content: center; text-align: center; 
      background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, var(--accent-light) 100%);
      overflow: hidden; padding: 3rem 1.5rem;
    }
    .hero::before {
      content: ''; position: absolute; width: 70vmax; height: 70vmax;
      background: radial-gradient(circle at 30% 30%, rgba(255,90,47,0.08) 0%, transparent 60%);
      top: -20vh; right: -10vw; border-radius: 50%; animation: blobMove 22s infinite alternate;
    }
    .hero::after {
      content: ''; position: absolute; width: 50vmax; height: 50vmax;
      background: radial-gradient(circle at 70% 80%, rgba(26,36,59,0.05) 0%, transparent 60%);
      bottom: -20vh; left: -10vw; border-radius: 50%; animation: blobMove 18s infinite alternate-reverse;
    }
    @keyframes blobMove { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(8%,6%) scale(1.1); } }
    
    .hero-content {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 10;
    }
    
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      padding: 0.8rem 2rem;
      border-radius: 60px;
      margin-bottom: 2rem;
      border: 1px solid rgba(255,90,47,0.2);
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      animation: fadeInDown 1s ease-out;
    }
    
    .hero-badge i {
      color: var(--accent);
      font-size: 1.2rem;
      animation: pulse 2s infinite;
    }
    
    .hero-badge span {
      font-weight: 600;
      color: var(--dark);
      letter-spacing: 0.5px;
    }
    
    .hero h1 {
      font-size: clamp(3rem, 8vw, 5.5rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      animation: fadeInUp 1s ease-out 0.2s both;
    }
    
    .gradient-text {
      background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .hero-description {
      font-size: 1.25rem;
      color: var(--text-soft);
      max-width: 800px;
      margin: 0 auto 2.5rem;
      animation: fadeInUp 1s ease-out 0.4s both;
    }
    
    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 4rem;
      margin-bottom: 3rem;
      animation: fadeInUp 1s ease-out 0.6s both;
    }
    
    .stat-item {
      text-align: center;
    }
    
    .stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--accent);
      margin-bottom: 0.3rem;
      position: relative;
      display: inline-block;
    }
    
    .stat-number::after {
      content: '+';
      font-size: 1.5rem;
      position: absolute;
      top: 0;
      right: -20px;
      color: var(--accent-soft);
    }
    
    .stat-label {
      color: var(--text-soft);
      font-weight: 500;
      font-size: 1rem;
    }
    
    .hero-cta-group {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeInUp 1s ease-out 0.8s both;
    }
    
    .hero-btn-primary {
      background: var(--accent);
      color: white;
      padding: 1rem 3rem;
      border-radius: 60px;
      font-weight: 600;
      font-size: 1.1rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      transition: all 0.3s ease;
      box-shadow: 0 20px 40px rgba(255,90,47,0.3);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    
    .hero-btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: 0.5s;
      z-index: -1;
    }
    
    .hero-btn-primary:hover {
      transform: translateY(-5px);
      box-shadow: 0 30px 50px rgba(255,90,47,0.4);
    }
    
    .hero-btn-primary:hover::before {
      left: 100%;
    }
    
    .hero-btn-outline {
      background: transparent;
      border: 2px solid var(--accent);
      color: var(--dark);
      padding: 1rem 3rem;
      border-radius: 60px;
      font-weight: 600;
      font-size: 1.1rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }
    
    .hero-btn-outline:hover {
      background: var(--accent);
      color: white;
      transform: translateY(-5px);
    }
    
    .floating-card {
      position: absolute;
      bottom: 10%;
      right: 5%;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 1.2rem 2rem;
      border-radius: 100px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
      border: 1px solid rgba(255,90,47,0.2);
      display: flex;
      align-items: center;
      gap: 1rem;
      animation: floatCard 4s ease-in-out infinite;
      z-index: 20;
    }
    
    .floating-card i {
      color: var(--accent);
      font-size: 1.5rem;
    }
    
    .floating-card span {
      font-weight: 600;
      color: var(--dark);
    }
    
    .hero-marquee {
      position: absolute;
      bottom: 30px;
      left: 0;
      width: 100%;
      white-space: nowrap;
      overflow: hidden;
      color: rgba(255,90,47,0.1);
      font-weight: 800;
      font-size: 8rem;
      pointer-events: none;
      z-index: 1;
      text-transform: uppercase;
      animation: slideMarquee 20s linear infinite;
    }
    
    @keyframes slideMarquee {
      0% { transform: translateX(-10%); }
      100% { transform: translateX(-50%); }
    }
    
    @keyframes floatCard {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }
    
    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ----- SECTION COMMON ----- */
    .section {
      max-width: 1400px; margin: 0 auto; padding: 2rem 2rem;
      background: #ffffff; position: relative; overflow: hidden;
    }
       .section-web {
     margin: 0 auto; padding: 2rem 10rem;
      background: #0a2540; position: relative; overflow: hidden;
    }
        .section-web1 {
     margin: 0 auto; padding: 2rem 10rem;
      background: #ff592f; position: relative; overflow: hidden;
    }
    .section-badge {
      display: inline-block; background: var(--accent-light); padding: 0.5rem 1.8rem;
      border-radius: 60px; color: var(--accent); font-weight: 600; letter-spacing: 0.3px;
      margin-bottom: 2rem; border: 1px solid rgba(255,90,47,0.3); backdrop-filter: blur(4px);
    }
    .section-title {
      font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; line-height: 1.2;
      color: white; margin-bottom: 1.5rem; max-width: 800px;
    }
    .section-subtitle {
      font-size: 1.2rem; color:#8794ab; max-width: 700px; margin-bottom: 3rem;
    }

    /* ----- SERVICES GRID ----- */
    .services-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
      margin: 3rem 0;
    }
    .service-card {
      background: white; border-radius: 32px; padding: 2.5rem;
      border: 1px solid var(--border-subtle); transition: all 0.4s ease;
      position: relative; overflow: hidden; z-index: 1;
    }
    .service-card::before {
      content: ''; position: absolute; inset: 0; background: linear-gradient(145deg, var(--accent-light), transparent);
      opacity: 0; transition: 0.4s; z-index: -1;
    }
    .service-card:hover {
      transform: translateY(-10px); border-color: var(--accent);
      box-shadow: 0 30px 50px -30px rgba(255,90,47,0.3);
    }
    .service-card:hover::before { opacity: 0.4; }
    .service-icon {
      width: 70px; height: 70px; border-radius: 20px;
      background: var(--accent-light); display: flex; align-items: center; justify-content: center;
      font-size: 2rem; color: var(--accent); margin-bottom: 2rem;
      transition: all 0.4s ease;
    }
    .service-card:hover .service-icon {
      background: var(--accent); color: white; transform: rotateY(360deg);
    }
    .service-card h3 {
      font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem; color: var(--dark);
    }
    .service-card p {
      color: var(--text-soft); line-height: 1.8; margin-bottom: 1.5rem;
    }
    .service-link {
      color: var(--accent); text-decoration: none; font-weight: 600;
      display: flex; align-items: center; gap: 8px; transition: 0.3s;
    }
    .service-link i { transition: 0.3s; }
    .service-link:hover i { transform: translateX(5px); }

    /* ----- INDUSTRIES ----- */
    .industries-strip {
      background: var(--dark); border-radius: 60px; padding: 3rem;
      margin: 4rem 0; color: white; position: relative; overflow: hidden;
    }
    .industries-strip h3 {
      font-size: 2.2rem; margin-bottom: 2rem; color: white;
    }
    .industry-tags {
      display: flex; flex-wrap: wrap; gap: 1rem;
    }
    .industry-tag {
      background: rgba(255,255,255,0.1); padding: 0.8rem 2rem; border-radius: 60px;
      border: 1px solid rgba(255,255,255,0.2); font-weight: 500;
      transition: 0.3s; cursor: default;
    }
    .industry-tag:hover {
      background: var(--accent); border-color: var(--accent); transform: scale(1.05);
    }

    /* ----- WHY HIRE TECLA ----- */
    .why-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
      margin: 3rem 0;
    }
    .why-card {
      background: linear-gradient(145deg, white, #fafcff); padding: 2.5rem;
      border-radius: 32px; border: 1px solid var(--border-subtle);
      transition: 0.3s; text-align: center;
    }
    .why-card:hover {
      transform: translateY(-8px); border-color: var(--accent);
      box-shadow: 0 20px 40px rgba(255,90,47,0.1);
    }
    .why-icon {
      width: 80px; height: 80px; border-radius: 30px;
      background: var(--accent-light); display: flex; align-items: center; justify-content: center;
      font-size: 2rem; color: var(--accent); margin: 0 auto 1.5rem;
    }
    .why-card h4 {
      font-size: 1.4rem; margin-bottom: 1rem; color: var(--dark);
    }
    .why-card p { color: var(--text-soft); }

    /* ----- PROCESS TIMELINE ----- */
    .process-timeline {
      display: flex; gap: 1.5rem; flex-wrap: wrap; margin: 4rem 0;
    }
    .process-step {
      background: white; border-radius: 36px; padding: 2rem; flex: 1 1 200px;
      border: 2px solid #0a2540; box-shadow: 0 20px 40px -20px rgba(255,90,47,0.2);
      transition: all 0.3s; transform-origin: bottom;
    }
    .process-step:hover { background: var(--accent-light); border-color: var(--accent); transform: translateY(-8px); }
    .step-num { font-size: 3rem; font-weight: 700; color: rgba(255,90,47,0.2); line-height: 1; margin-bottom: 1rem; }
    .process-step:hover .step-num { color: var(--accent); }
    .process-step h4 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--dark); }
    .process-step p { color: var(--text-soft); }

    /* ----- TECH STACK ----- */
   .tech-section {
  background: #ffffff;
  padding: 60px 135px;
  overflow: hidden;
  text-align: center;
}

.tech-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 40px;
}

.tech-slider {
  overflow: hidden;
}

.tech-track {
  display: flex;
  width: max-content;
  animation: scrollIcons 25s linear infinite;
}

.tech-item {
  font-size: 70px;
  margin: 0 45px;
  transition: transform 0.3s ease;
}

.tech-item:hover {
  transform: scale(1.2);
}

/* Brand Original Colors */
.html i { color: #E34F26; }
.css i { color: #1572B6; }
.js i { color: #F7DF1E; }
.react i { color: #61DAFB; }
.vue i { color: #42B883; }
.php i { color: #777BB4; }
.python i { color: #3776AB; }
.laravel i { color: #FF2D20; }
.wordpress i { color: #21759B; }
.mysql i { color: #00758F; }

/* Animation */
@keyframes scrollIcons {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .tech-item {
    font-size: 35px;
    margin: 0 25px;
  }
}

    /* journey strip — dark + accent */
    .journey-strip {
      display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem;
      background: #0a2540;
      border-radius: 90px; padding: 3rem 4rem; margin: 5rem 0 2rem;
      color: white; position: relative; isolation: isolate; overflow: hidden;
    }
    .journey-strip::before {
      content: ''; position: absolute; inset: 0; border-radius: 90px;
      background: radial-gradient(circle at 20% 50%, rgba(255,90,47,0.15), transparent 50%),
                  radial-gradient(circle at 80% 50%, rgba(255,182,160,0.1), transparent 50%);
      animation: pulseGlow 4s ease-in-out infinite;
    }
    @keyframes pulseGlow {
      0%, 100% { opacity: 0.5; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.05); }
    }
    .journey-strip::after {
      content: ''; position: absolute; inset: 0; border-radius: 90px; padding: 3px;
      background: linear-gradient(90deg, #ff5a2f, #ff8a6f, #ffb6a0, #ff5a2f);
      background-size: 200% 100%;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor; mask-composite: exclude;
      animation: borderFlow 3s linear infinite;
    }
    @keyframes borderFlow {
      0% { background-position: 0% 50%; }
      100% { background-position: 200% 50%; }
    }
    .journey-item {
      text-align: center; flex: 1; position: relative; z-index: 2;
      transition: transform 0.3s ease;
    }
    .journey-item:hover { transform: translateY(-8px); }
    .journey-num {
      font-size: 3.2rem; font-weight: 700; line-height: 1;
      background: linear-gradient(145deg, #ffffff, #ffd2c2);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      animation: numPulse 2s ease-in-out infinite;
    }
    @keyframes numPulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }
    .journey-label { color: #ffffff; font-weight: 500; }

    /* ----- MODERN CONTACT SECTION (New) ----- */
    .modern-contact-section {
      position: relative;
      background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
      padding: 2rem 7rem;
      overflow: hidden;
    }

    /* Animated Background Shapes */
    .contact-bg-shapes {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .shape {
      position: absolute;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(255, 90, 47, 0.1) 0%, rgba(255, 138, 111, 0.05) 100%);
      animation: floatShape 8s ease-in-out infinite;
    }

    .shape-1 {
      width: 300px;
      height: 300px;
      top: -150px;
      right: -100px;
      animation-delay: 0s;
    }

    .shape-2 {
      width: 200px;
      height: 200px;
      bottom: 50px;
      left: -100px;
      animation-delay: 2s;
    }

    .shape-3 {
      width: 150px;
      height: 150px;
      top: 30%;
      left: 10%;
      background: rgba(255, 90, 47, 0.05);
      animation-delay: 4s;
    }

    .shape-4 {
      width: 400px;
      height: 400px;
      bottom: -200px;
      right: 20%;
      background: rgba(26, 36, 59, 0.03);
      animation-delay: 1s;
    }

    .shape-5 {
      width: 100px;
      height: 100px;
      top: 20%;
      right: 15%;
      background: rgba(255, 90, 47, 0.08);
      animation-delay: 3s;
    }

    @keyframes floatShape {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(30px, 30px) scale(1.1); }
    }

    .contact-container11 {
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    /* Breadcrumb */
    .contact-breadcrumb {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 3rem;
      flex-wrap: wrap;
    }

    .breadcrumb-item {
      color: #6b7a99;
      font-size: 0.95rem;
      font-weight: 500;
      transition: 0.3s;
    }

    .breadcrumb-item.active {
      color: var(--accent);
      font-weight: 600;
    }

    .contact-breadcrumb i {
      color: #a0b0d0;
      font-size: 0.7rem;
    }

    /* Contact Grid */
    .contact-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 2rem;
      align-items: start;
    }

    /* Left Side - Info */
    .contact-info {
      padding-right: 2rem;
    }

    .service-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(255, 90, 47, 0.1);
      padding: 0.6rem 1.5rem;
      border-radius: 60px;
      color: var(--accent);
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      border: 1px solid rgba(255, 90, 47, 0.3);
      margin-bottom: 1rem;
      backdrop-filter: blur(10px);
    }

    .pulse-dot {
      width: 10px;
      height: 10px;
      background: var(--accent);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(255, 90, 47, 0.7); }
      70% { box-shadow: 0 0 0 10px rgba(255, 90, 47, 0); }
      100% { box-shadow: 0 0 0 0 rgba(255, 90, 47, 0); }
    }

    .contact-title {
      margin-bottom: 2.5rem;
    }

    .title-line {
      display: block;
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 700;
      line-height: 1.1;
      color: var(--dark);
    }

    /* Tech Stack Animated */
    .tech-stack-animated {
      overflow: hidden;
      margin-bottom: 1.5rem;
      position: relative;
      width: 100%;
      display: flex;
      max-width: 600px;
    }

    .tech-stack-animated::before,
    .tech-stack-animated::after {
      content: '';
      position: absolute;
      top: 0;
      width: 50px;
      height: 100%;
      z-index: 2;
    }

    .tech-stack-animated::before {
      left: 0;
      background: linear-gradient(to right, rgba(248, 250, 255, 1), transparent);
    }

    .tech-stack-animated::after {
      right: 0;
      background: linear-gradient(to left, rgba(248, 250, 255, 1), transparent);
    }

    .tech-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.6rem 1.2rem;
      background: white;
      border-radius: 60px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
      border: 1px solid #eef2f6;
      margin-right: 1rem;
      white-space: nowrap;
      flex-shrink: 0;
      animation: scrollTech 20s linear infinite;
    }

    @keyframes scrollTech {
      0% { transform: translateX(0); }
      100% { transform: translateX(calc(-100% - 1rem)); }
    }

  

    .tech-chip i {
      color: var(--accent);
      font-size: 1.2rem;
    }

    .tech-chip span {
      font-weight: 600;
      color: var(--dark);
    }

    /* Description */
    .contact-description {
      color: #4a5b7a;
      line-height: 1.8;
      margin-bottom: 2.5rem;
      font-size: 1.1rem;
    }

    .highlight {
      color: var(--accent);
      font-weight: 600;
      position: relative;
      display: inline-block;
    }

    .highlight::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.3s ease;
    }

    .highlight:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    /* Feature Grid Modern */
    .feature-grid-modern {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0.4rem;
      background: rgba(255, 255, 255, 0.7);
      border-radius: 16px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 90, 47, 0.1);
      transition: all 0.3s ease;
      animation: fadeIn 0.6s ease-out backwards;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateX(-20px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .feature-item:hover {
      transform: translateX(8px);
      border-color: var(--accent);
      background: white;
      box-shadow: 0 10px 30px rgba(255, 90, 47, 0.1);
    }

    .feature-icon-wrapper {
      position: relative;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .feature-icon-wrapper i {
      color: var(--accent);
      font-size: 1.2rem;
      z-index: 2;
      transition: 0.3s;
    }

    .feature-item:hover .feature-icon-wrapper i {
      transform: scale(1.2);
    }

    .ripple-animation {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: rgba(255, 90, 47, 0.2);
      animation: ripple 2s infinite;
      pointer-events: none;
    }

    @keyframes ripple {
      0% {
        transform: scale(0.5);
        opacity: 1;
      }
      100% {
        transform: scale(2);
        opacity: 0;
      }
    }

    .feature-item span {
      font-weight: 500;
      color: var(--dark);
      font-size: 0.95rem;
    }

    /* CTA Buttons */
    .contact-cta-group {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .cta-primary {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      padding: 1rem 2.5rem;
      background: var(--accent);
      color: white;
      text-decoration: none;
      border-radius: 60px;
      font-weight: 600;
      overflow: hidden;
      transition: all 0.3s ease;
      border: none;
      z-index: 1;
    }

    .cta-primary span, .cta-primary i {
      z-index: 2;
      transition: 0.3s;
    }

    .cta-primary:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(255, 90, 47, 0.3);
    }

    .cta-primary:hover i {
      transform: translateX(5px);
    }

    .hover-effect {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transform: translateX(-100%);
      transition: 0.5s;
      z-index: 1;
    }

    .cta-primary:hover .hover-effect {
      transform: translateX(100%);
    }

    .cta-secondary {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      padding: 1rem 2rem;
      background: transparent;
      color: var(--dark);
      text-decoration: none;
      border-radius: 60px;
      font-weight: 600;
      border: 2px solid rgba(255, 90, 47, 0.3);
      transition: all 0.3s ease;
    }

    .cta-secondary:hover {
      border-color: var(--accent);
      background: rgba(255, 90, 47, 0.05);
      transform: translateY(-3px);
    }

    /* Right Side - Contact Form */
    .contact-form-wrapper {
      background: linear-gradient(135deg, #1a243b 0%, #2a3a5f 100%);
      backdrop-filter: blur(10px);
      border-radius: 48px;
      padding: 2.5rem;
      box-shadow: 0 30px 60px rgba(26, 36, 59, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.1);
      animation: slideInRight 1s ease-out;
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .form-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 2rem;
    }

    .form-header h3 {
      font-size: 2rem;
      color: white;
      font-weight: 700;
    }

    .form-header-decoration {
      display: flex;
      gap: 0.5rem;
    }

    .form-header-decoration span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      animation: bounce 1.5s infinite ease-in-out;
    }

    .form-header-decoration span:nth-child(2) {
      animation-delay: 0.2s;
      background: #ff8a6f;
    }

    .form-header-decoration span:nth-child(3) {
      animation-delay: 0.4s;
      background: #ffb6a0;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    /* Form Styles */
    .modern-form {
      display: flex;
      flex-direction: column;
    }

    .form-row {
      width: 100%;
    }

    .form-row.dual {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .form-group {
      position: relative;
      width: 100%;
    }

    .form-group label {
      margin-bottom: 0.1rem;
      font-weight: 500;
         color: #666;
      font-size: 0.95rem;
    }

    .required {
      color: var(--accent);
      margin-left: 2px;
    }

    .form-input {
      width: 100%;
      padding: 0.7rem 1.2rem;
      border: 1px solid #e0e6ed;
      border-radius: 16px;
      font-size: 1rem;
      transition: all 0.3s ease;
      background: white;
      color: var(--dark);
    }

    .form-input:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 10px 20px rgba(255, 90, 47, 0.1);
      transform: translateY(-2px);
    }

    .form-input:hover {
      border-color: #ff8a6f;
    }

    .input-focus-effect {
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }

    .form-input:focus ~ .input-focus-effect {
      width: 100%;
    }

    textarea.form-input {
      resize: vertical;
      min-height: 100px;
    }

    /* Checkbox Grid */
    .checkbox-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.8rem;
      padding: 0.5rem 0;
    }

    .checkbox-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      cursor: pointer;
      position: relative;
      padding: 0.8rem 1rem;
      border-radius: 12px;
      background: white;
      border: 2px solid #e8eef5;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    }

    .checkbox-item:hover {
      background: rgba(255, 90, 47, 0.03);
      border-color: var(--accent-soft);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(255, 90, 47, 0.12);
    }

    .checkbox-item input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0;
    }

    .checkbox-item input:checked ~ .checkbox-text {
      color: var(--accent);
      font-weight: 600;
    }

    .checkbox-item:has(input:checked) {
      background: linear-gradient(135deg, rgba(255, 90, 47, 0.08) 0%, rgba(255, 138, 111, 0.05) 100%);
      border-color: var(--accent);
      box-shadow: 0 8px 24px rgba(255, 90, 47, 0.15);
    }

    .checkmark {
      position: relative;
      height: 22px;
      width: 22px;
      min-width: 22px;
      background: #f8fafc;
      border: 2px solid #cbd5e1;
      border-radius: 7px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .checkbox-item:hover .checkmark {
      border-color: var(--accent);
      background: rgba(255, 90, 47, 0.05);
      transform: scale(1.1);
    }

    .checkbox-item input:checked ~ .checkmark {
      background: linear-gradient(135deg, var(--accent) 0%, #ff7a5a 100%);
      border-color: var(--accent);
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(255, 90, 47, 0.3);
    }

    .checkmark:after {
      content: '';
      position: absolute;
      display: none;
      left: 6px;
      top: 2px;
      width: 5px;
      height: 10px;
      border: solid white;
      border-width: 0 2.5px 2.5px 0;
      transform: rotate(45deg);
      animation: checkPop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    @keyframes checkPop {
      0% {
        transform: rotate(45deg) scale(0);
        opacity: 0;
      }
      50% {
        transform: rotate(45deg) scale(1.2);
      }
      100% {
        transform: rotate(45deg) scale(1);
        opacity: 1;
      }
    }

    .checkbox-item input:checked ~ .checkmark:after {
      display: block;
    }

    .checkbox-text {
      color: #475569;
      font-size: 0.9rem;
      font-weight: 500;
      transition: all 0.3s ease;
      user-select: none;
    }

    /* Select Wrapper */
    .select-wrapper {
      position: relative;
    }

    .select-wrapper i {
      position: absolute;
      right: 1rem;
      top: 50%;
      transform: translateY(-50%);
      color: #a0b0d0;
      pointer-events: none;
      transition: 0.3s;
    }

    .select-wrapper select {
      appearance: none;
      cursor: pointer;
    }

    .select-wrapper:hover i {
      color: var(--accent);
      transform: translateY(-50%) rotate(180deg);
    }

    /* CAPTCHA */
    .captcha-wrapper {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1rem;
      background: rgba(255, 90, 47, 0.03);
      padding: 1rem;
      border-radius: 16px;
      border: 1px solid rgba(255, 90, 47, 0.1);
    }

    .captcha-icons {
      display: flex;
      gap: 0.8rem;
    }

    .captcha-icons i {
      color: #a0b0d0;
      font-size: 1.2rem;
      transition: 0.3s;
      animation: bounce 2s infinite;
    }

    .captcha-icons i:nth-child(1) { animation-delay: 0s; }
    .captcha-icons i:nth-child(2) { animation-delay: 0.4s; }
    .captcha-icons i:nth-child(3) { animation-delay: 0.8s; }
    .captcha-icons i:nth-child(4) { animation-delay: 1.2s; }
    .captcha-icons i:nth-child(5) { animation-delay: 1.6s; }

    .captcha-icons i:hover {
      color: var(--accent);
      transform: scale(1.2);
    }

    .captcha-text {
      font-weight: 600;
      color: var(--dark);
    }

    .captcha-input-wrapper {
      position: relative;
      flex: 1;
      min-width: 150px;
    }

    .captcha-input {
      width: 100%;
      padding: 0.8rem 1rem;
      border: 1px solid #e0e6ed;
      border-radius: 12px;
      font-size: 0.95rem;
      transition: 0.3s;
    }

    .captcha-input:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 5px 15px rgba(255, 90, 47, 0.1);
    }

    .captcha-refresh {
      position: absolute;
      right: 0.5rem;
      top: 50%;
      transform: translateY(-50%);
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: 0.3s;
    }

    .captcha-refresh i {
      color: #a0b0d0;
      transition: 0.3s;
    }

    .captcha-refresh:hover i {
      color: var(--accent);
      transform: rotate(180deg);
    }

    /* Form Actions */
    .form-actions {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
      flex-wrap: wrap;
    }

    .submit-btn {
      position: relative;
      flex: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      background: linear-gradient(135deg, var(--accent), #ff8a6f);
      color: white;
      border: none;
      border-radius: 60px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      overflow: hidden;
      transition: all 0.3s ease;
      z-index: 1;
    }

    .btn-shine {
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: 0.5s;
      z-index: 1;
    }

    .submit-btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(255, 90, 47, 0.3);
    }

    .submit-btn:hover .btn-shine {
      left: 100%;
    }

    .submit-btn span, .submit-btn i {
      z-index: 2;
      transition: 0.3s;
    }

    .submit-btn:hover i {
      transform: translateX(5px) rotate(15deg);
    }

    .expert-btn {
      flex: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 1rem;
      background: transparent;
      color: white;
      text-decoration: none;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 60px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .expert-btn:hover {
      border-color: var(--accent);
      background: var(--accent);
      transform: translateY(-3px);
    }

    .expert-btn i {
      color: var(--accent);
      animation: headsetWobble 2s infinite;
    }

    @keyframes headsetWobble {
      0%, 100% { transform: rotate(0deg); }
      25% { transform: rotate(10deg); }
      75% { transform: rotate(-10deg); }
    }

    /* ----- FAQ SECTION ----- */
    .faq-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
      margin: 3rem 0;
    }
    .faq-item {
      background: white; border-radius: 24px; padding: 2rem;
      border: 1px solid var(--border-subtle); transition: 0.3s;
    }
    .faq-item:hover {
      border-color: var(--accent); box-shadow: 0 20px 30px rgba(255,90,47,0.1);
    }
    .faq-question {
      font-size: 1.2rem; font-weight: 700; color: var(--dark);
      display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem;
    }
    .faq-question i { color: var(--accent); }
    .faq-answer { color: var(--text-soft); padding-left: 2.5rem; }

    /* ----- CTA SECTION ----- */
    .cta-section {
      background: linear-gradient(135deg, var(--dark) 0%, var(--grad-2) 100%);
      padding: 5rem 2rem; text-align: center; border-radius: 60px;
      margin: 4rem 0; position: relative; overflow: hidden;
    }
    .cta-content { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
    .cta-content h2 {
      font-size: clamp(2rem, 5vw, 3.2rem); color: white; margin-bottom: 2.5rem;
      font-weight: 700; line-height: 1.2;
    }
    .cta-btn {
      background: var(--accent); color: white; padding: 1.2rem 3rem; border-radius: 60px;
      font-size: 1.1rem; font-weight: 600; text-decoration: none;
      display: inline-flex; align-items: center; gap: 12px;
      box-shadow: 0 20px 40px rgba(255,90,47,0.4);
      transition: all 0.3s ease;
    }
    .cta-btn:hover {
      background: white; color: var(--accent); transform: translateY(-5px);
      box-shadow: 0 30px 50px rgba(255,90,47,0.5);
    }

    
    /* Responsive */
    @media (max-width: 1024px) {
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      
      .contact-info {
        padding-right: 0;
      }
      
      .feature-grid-modern {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 900px) {
      .services-grid, .why-grid, .faq-grid, .footer-container { grid-template-columns: 1fr; }
      .process-timeline { flex-direction: column; }
      .journey-strip { flex-direction: column; border-radius: 50px; }
      .nav-right-content { gap: 1rem; }
      .mobile-toggle { display: flex; }
      .nav-item, .dropdown, .btn-cta { display: none; }
      .tech-strip { border-radius: 30px; }
      .hero-stats { flex-direction: column; gap: 2rem; }
      .feature-grid-modern { grid-template-columns: 1fr; }
      .form-row.dual { grid-template-columns: 1fr; }
      .checkbox-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 600px) {
      .checkbox-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      .modern-contact-section { padding: 4rem 1rem; }
      .captcha-wrapper { flex-direction: column; align-items: flex-start; }
      .form-actions { flex-direction: column; }
      .contact-cta-group { flex-direction: column; }
      .cta-primary, .cta-secondary { width: 100%; justify-content: center; }
      .floating-card { display: none; }
    }


    
.industries-header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.industries-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1rem;
}

.industries-header p {
  color: var(--text-soft);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.industries-scroll-wrapper {
  margin: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.industries-track {
  display: flex;
  gap: 2rem;
  width: fit-content;
}

.track-1 {
  animation: scroll-right 30s linear infinite;
}

.track-2 {
  animation: scroll-left 25s linear infinite;
}

.industries-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-right {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-left {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.industry-card-modern {
  background: white;
  padding: 1.8rem 2.2rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  flex-shrink: 0;
  min-width: 240px;
  position: relative;
  overflow: hidden;
}

.card-red .industry-icon-modern {
  background: linear-gradient(135deg, #ffede8, #ffccc2);
}

.card-red .industry-icon-modern i {
  color: #ff5a2f;
}

.card-blue .industry-icon-modern {
  background: linear-gradient(135deg, #e8ecf2, #d4dae6);
}

.card-blue .industry-icon-modern i {
  color: #1a243b;
}

.industry-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.5s;
}

.industry-card-modern:hover::before {
  left: 100%;
}

.industry-card-modern:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  border-color: var(--accent);
}

.industry-icon-modern {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.industry-icon-modern::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  top: 0;
  left: -100%;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

.industry-icon-modern img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.industry-card-modern:hover .industry-icon-modern img {
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-12px); }
  50% { transform: translateY(0); }
  75% { transform: translateY(-6px); }
}

.industry-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.industry-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}

.industry-desc {
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 500;
}

@media (max-width: 768px) {
  .industries-track {
    gap: 1rem;
  }
  
  .industry-card-modern {
    padding: 1.5rem 1.8rem;
    min-width: 220px;
  }
  
  .industry-icon-modern {
    width: 55px;
    height: 55px;
  }
  
  .industry-icon-modern i {
    font-size: 26px;
  }
}