html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    color: #e2e8f0;
    background: #00040a;
    overflow-x: hidden;
    position: relative;
}

/* =========================
   BACKGROUND EFFECTS
========================= */

/* Massive glow reactor */
body::before {
    content: "";
    position: fixed;
    top: -400px;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    height: 1400px;
    background: radial-gradient(circle, #00f5ff 0%, #001d3d 40%, transparent 70%);
    filter: blur(180px);
    opacity: 0.9;
    z-index: 0;
    animation: reactorPulse 6s ease-in-out infinite;
}

/* Subtle tech grid */
body::after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 0;
    animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
    from { background-position: 0 0; }
    to { background-position: 80px 80px; }
}

@keyframes reactorPulse {
    0%, 100% {
        opacity: 0.85;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.08);
    }
}

/* =========================
   HEADER
========================= */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 80px;
    background: rgba(0, 10, 25, 0.6);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(0, 245, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
    position: relative;
    z-index: 2;
    text-align: center;
}

header img {
    height: 120px;
}

nav a {
    color: #e0eefd;
    font-weight: 600;
    text-shadow: 0 0 4px rgba(0,0,0,0.7);
}

nav a:hover {
    color: #00f5ff;
    text-shadow: 0 0 8px rgba(0,245,255,0.6);
}

/* =========================
   HERO
========================= */

/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    padding: 25vh 20px 0;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
    border-radius: 20px;
    background: rgba(0, 20, 40, 0.35);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(0, 245, 255, 0.3);
    box-shadow:
        0 0 60px rgba(0, 245, 255, 0.15),
        inset 0 0 40px rgba(0, 245, 255, 0.05);

    /* ADD THESE */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero h1 {
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 600;
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: 1px;

    background: linear-gradient(90deg, #ffffff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
        0 0 12px rgba(0,245,255,0.6),
        0 0 25px rgba(0,245,255,0.4);

    animation: fadeUp 1s ease-out forwards;
}

.hero p {
    margin-top: 28px;
    max-width: 700px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease-out 0.3s forwards;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
    border-radius: 20px;
    background: rgba(0, 20, 40, 0.35);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(0, 245, 255, 0.3);
    box-shadow:
        0 0 60px rgba(0, 245, 255, 0.15),
        inset 0 0 40px rgba(0, 245, 255, 0.05);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;   /* THIS controls spacing cleanly */
}

/* =========================
   BUTTON
========================= */

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;

  border-radius: 6px;
  background: linear-gradient(90deg, #00f5ff, #00c3ff);
  color: #000;

  line-height: 1.2;
  white-space: normal;
  word-break: keep-all;

  transition: all 0.3s ease;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.6s;
}

.btn:hover::before {
    left: 100%;
}

/* =========================
   SECTIONS
========================= */

.section {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    text-align: center;
}

.section h2 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 25px;
    font-size: 2rem;
}

.grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.card {
    background: rgba(0, 20, 40, 0.7);
    padding: 40px;
    border-radius: 18px;
    width: 300px;
    backdrop-filter: blur(30px);
    border: 1px solid rgba(0, 245, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.15);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.card.show {
    opacity: 1;
    transform: translateY(0);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 0 50px rgba(0, 245, 255, 0.6);
}

.dark {
    background: rgba(124, 58, 237, 0.05);
}
.social-proof h2 {
    margin-bottom: 20px;
}

.proof-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    opacity: 0.8;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.testimonial span {
    font-size: 0.85rem;
    opacity: 0.7;
    display: block;
}
.testimonial {
    position: relative;
}

.testimonial::before {
    content: "“";
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 3rem;
    color: rgba(0, 245, 255, 0.2);
}
/* =========================
   BOOKING SECTION
========================= */

.booking {
    text-align: center;
    background: #0b0f14;
    padding: 80px 20px;
    margin-top: 100px;
}

.booking h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.booking p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.85;
}

.booking .btn {
    margin-top: 30px;
}

/* =========================
   FOOTER
========================= */

footer {
    padding: 60px 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    position: relative;
    z-index: 2;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero h1,
.section h2,
.booking h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}
.mid-cta {
    text-align: center;
}

.mid-cta p {
    max-width: 600px;
    margin: 20px auto 50px;
    opacity: 0.85;
}
/* ===== Futuristic Grid Overlay ===== */

.grid-overlay {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

body {
    position: relative;
    z-index: 1;
}
@keyframes gridMove {
    from {
        background-position: 0 0, 0 0;
    }
    to {
        background-position: 30px 30px, 30px 30px;
    }
}

.grid-overlay {
    animation: gridMove 16s ease-in-out infinite alternate;
}
/* Footer text visibility fix */

body > p:last-of-type {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.85);
}
.tagline {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 8px;
}
/* ===== Process Section ===== */

.process {
  padding: 120px 20px 100px 20px;
}

.process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 255, 0.6),
    transparent
  );
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.6);
}

.process h2 {
  text-shadow:
    0 0 10px rgba(0, 255, 255, 0.6),
    0 0 25px rgba(0, 255, 255, 0.4);
}
.process-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;   /* space between each step */
  flex-wrap: wrap;
  margin-top: 60px;
}
.process-steps > div {
  max-width: 320px;
}

.process-steps div:hover {
  transform: translateY(-6px);
  text-shadow: 0 0 12px rgba(0, 255, 255, 0.7);
}
.process-steps h3 {
  margin-bottom: 20px;
}

.process-steps p {
  line-height: 1.6;
}
.step {
    max-width: 280px;
}

.step h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.step p {
    opacity: 0.75;
    font-size: 0.95rem;
}
@media (max-width: 600px) {

  .btn {
    width: 100%;
    max-width: 320px;
    padding: 18px 20px;
    font-size: 0.95rem;
  }

}
/* ===== Testimonials Section ===== */

.testimonials {
  text-align: center;
  padding: 140px 20px;
  position: relative;
  z-index: 2;
}

.testimonials h2 {
  margin-bottom: 60px;
  text-shadow: 0 0 12px rgba(0, 255, 255, 0.4);
}

.testimonial-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.testimonial {
  max-width: 320px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-8px);
}

.testimonial p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 20px;
}

.testimonial span {
  font-size: 0.8rem;
  opacity: 0.6;
}
.testimonial-intro {
  max-width: 700px;
  margin: 0 auto 60px;
  opacity: 0.75;
}
/* WHY AUTOMATION SECTION */
.why-automation {
  padding: 100px 20px;
  text-align: center;
}

.why-automation h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
}

.automation-points {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
}

.automation-points li {
  padding: 12px 0;
  font-size: 1.1rem;
  opacity: 0.9;
letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
/* CLIENT INFO SECTION */

.client-info {
  padding: 80px 20px;
  text-align: center;
}

.client-info h2 {
  margin-bottom: 20px;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 50px auto;
  opacity: 0.85;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

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

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.service-card p {
  font-size: 0.95rem;
  opacity: 0.85;
}

.service-card ul {
  margin-top: 15px;
  padding-left: 18px;
  text-align: left;
  font-size: 0.9rem;
  opacity: 0.8;
}

.service-card ul li {
  margin-bottom: 6px;
}

.result-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  font-size: 1rem;
}
.language-switcher select {
  padding: 6px 10px;
  border-radius: 6px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
}
/* Force readable text on darker sections */

.process,
.why-automation,
.client-info,
.testimonials,
.booking,
.dark {
  color: #ffffff;
}

.process p,
.why-automation p,
.client-info p,
.testimonials p,
.booking p {
  color: rgba(255, 255, 255, 0.85);
}

.process h2,
.why-automation h2,
.client-info h2,
.testimonials h2,
.booking h2 {
  color: #ffffff;
}
/* FIX LOW CONTRAST SECTIONS */

.process,
.why-automation,
.client-info,
.testimonials,
.booking,
.dark {
  position: relative;
  z-index: 2;
}

.process h2,
.why-automation h2,
.client-info h2,
.testimonials h2,
.booking h2 {
  color: #ffffff !important;
  opacity: 1 !important;
}

.process p,
.why-automation p,
.client-info p,
.testimonials p,
.booking p,
.process li,
.why-automation li {
  color: rgba(255,255,255,0.9) !important;
  opacity: 1 !important;
}
/* FORCE CORE SYSTEMS TO SHOW */

#services .card {
  opacity: 1 !important;
  transform: none !important;
  display: block !important;
  visibility: visible !important;
  position: relative;
  z-index: 5;
}
#proof .card,
#proof .testimonial {
  opacity: 1 !important;
  display: block !important;
  visibility: visible !important;
}
/* FORCE PROVEN RESULTS TO DISPLAY */

.social-proof {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  display: block !important;
  position: relative;
  z-index: 5;
}

.social-proof .grid,
.social-proof .card,
.social-proof .testimonial {
  opacity: 1 !important;
  visibility: visible !important;
}
/* Hide Google Translate default UI */
.goog-te-gadget {
  font-size: 0px !important;
}

.goog-te-gadget .goog-te-combo {
  display: none !important;
}

.goog-logo-link {
  display: none !important;
}

.goog-te-banner-frame {
  display: none !important;
}
.language-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
}

.language-switcher button {
  background: transparent;
  border: 1px solid #555;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.2s ease;
}

.language-switcher button:hover {
  background: #ffffff20;
}
/* Hide Google top banner */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0px !important;
}
.language-switcher button.active {
  background: #00cfff;
  color: #000;
  border-color: #00cfff;
}
.social-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-links a {
  text-decoration: none;
  font-weight: 600;
  color: #ffffff;
  transition: 0.3s ease;
}

.social-links a:hover {
  color: #00bfff;
}
.social-links i {
  font-size: 22px;
}
.social-links {
  position: relative;
  z-index: 1000;
}
.social-links a {
  pointer-events: auto;
}
footer {
  text-align: center;
  padding: 30px 0;
}

.social-links {
  margin-bottom: 15px;
}

.social-links a {
  margin: 0 10px;
  font-size: 22px;
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
}

.social-links a:hover {
  color: #00bfff;
}
