body {
      font-family: Georgia, 'Times New Roman', Times, serif;
      background: #f8fafc;
      overflow-x: hidden;
    }

/* HERO SECTION – Premium Enterprise Style*/
    .hero {
      position: relative;
      height: 92vh;
      display: flex;
      justify-content: center;
      align-items: center;
        background: radial-gradient(circle at 20% 30%, rgba(0,25,40,0.70), rgba(0,15,25,0.85));
      color: #fff;
      padding-top: 80px;
    }

    .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/hero section.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.30;               
  filter: contrast(1.2) brightness(1.1);
  animation: heroZoom 18s ease-in-out infinite alternate;
  pointer-events: none;
}


    .hero-glass {
      background: rgba(255,255,255,0.06);
      backdrop-filter: blur(12px);
      border-radius: 18px;
      padding: 45px 55px;
      box-shadow: 0 0 25px rgba(0,255,255,0.07);
      max-width: 700px;
      text-align: center;
      border: 1px solid rgba(255,255,255,0.1);
      position: relative;
      z-index: 2;
    }

    .hero-title {
      font-size: 3rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      margin-bottom: 15px;
    }

    .hero-sub {
      font-size: 1.15rem;
      opacity: 0.85;
      margin-bottom: 22px;
    }

    .hero-btn {
      padding: 12px 28px;
      border-radius: 10px;
      font-weight: 600;
      margin: 6px;
      text-decoration: none;
      transition: 0.3s;
    }

    .primary-btn {
      background: #00eaff;
      color: #003344;
      box-shadow: 0 0 12px #00eaff77;
    }
    .primary-btn:hover { background:#00c6d9; }

    .outline-btn {
      border: 2px solid #00eaff;
      color: #00eaff;
    }
    .outline-btn:hover {
      background: #00eaff; color:#003344;
    }

    /* ABOUT SECTION*/
    #about {
      padding-top: 80px;
      padding-bottom: 80px;
    }

    #about h2 {
      font-size: 2.2rem;
      font-weight: 700;
      color:#0d0d0e;
    }

    #about img {
      border-radius: 16px;
      box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    }

    #about p {
      color: rgb(12, 12, 12);
    }

    /* WHY US */
.why-card {
    border: 1px solid #e9e9e9;
    transition: 0.3s ease;
    background: #fff;
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}
.why-icon {
    font-size: 32px;
    color: #0066ff;
}

/* PROCESS STEPS */
.process-step {
    background: #fff;
    border: 1px solid #eaeaea;
    transition: 0.3s ease;
}
.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.1);
}
.step-number {
    font-size: 26px;
    font-weight: 800;
    color: #0066ff;
}

/* TECH GRID */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(120px,1fr));
    align-items: center;
    gap: 30px;
}
.tech-grid img {
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s ease;
}
.tech-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* CTA FINAL */
.cta-final {
    background: linear-gradient(135deg,#004aad,#007bff);
}

/* TECHNOLOGY SLIDER FIXED  */
.tech-slider-wrapper {
  overflow: hidden;
  width: 100%;
  background: #ffffff;
  padding: 20px 0;
}

.tech-slider {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: techSlide 22s linear infinite;
  white-space: nowrap;
}

.tech-slider img {
  height: 55px;
  width: auto;
  transition: 0.3s ease;
  opacity: 1 !important;       
  filter: none !important;     
}

.tech-slider img:hover {
  transform: scale(1.06);
}

@keyframes techSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* HERO MOBILE RESPONSIVE FIX */
@media (max-width: 600px) {

  .hero {
    height: auto;
    padding: 120px 20px 80px; 
    text-align: center;
  }

  .hero-glass {
    padding: 25px 18px;
    border-radius: 14px;
    width: 100%;
    max-width: 360px;
  }

  .hero-title {
    font-size: 2rem !important;
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 0.95rem !important;
    line-height: 1.5;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
  }

  .hero-btn {
    width: 100%;
    font-size: 1rem;
    padding: 12px 0;
  }
}

.fallback-bg {
    background: url('images/fallback.webp') center/cover no-repeat;
    min-height: 500px;
}
