/*
Theme Name: Hecta Global Theme
Theme URI: https://hectaglobal.com
Author: Codefairy
Author URI: https://hectaglobal.com
Description: Company website for Robodeus Labs
Version: 1.1
Text Domain: hectaglobal-theme
*/
html {
  scroll-behavior: smooth;
}
body {
  margin:0px;
  padding:0px;
  position: relative;
  cursor:none;
}

/* Inner dot */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: #5d91ef;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

/* Outer ring */
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(93,145,239,0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s ease,
    height 0.25s ease,
    border-color 0.25s ease,
    transform 0.15s ease;
}
a:hover ~ .cursor-ring,
button:hover ~ .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: rgba(93,145,239,0.8);
}
/* .cursor-ring {
  backdrop-filter: blur(2px);
} */
@media (max-width: 768px) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  body {
    cursor: auto;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Syne", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.padded{
    padding:7% 0px;
}
.padded-bottom{
    padding-bottom:10%;
}
  
p, a, li {
  font-family: "Google Sans Flex", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "wdth" 100,
    "GRAD" 0,
    "ROND" 0;
}
 p {
    color: #2b2b2b;
    line-height: 2em;
}
/* BASE NAVBAR */
.navbar-glass {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.65) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(0, 0, 0, 0.05);

  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease;
}

/* INNER CONTAINER ALIGNMENT */
.navbar-glass .container {
  display: flex;
  align-items: center;
  /* padding-top: 14px; */
  /* padding-bottom: 14px; */
}

/* SCROLLED STATE */
.navbar-glass.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 36px rgba(0,0,0,0.1);
}

.navbar-brand img {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-brand:hover img {
  transform: translateY(-1px);
  opacity: 0.95;
}
/* RESET BOOTSTRAP QUIRKS */
.navbar-nav {
  align-items: center;
}

/* NAV LINKS */
.navbar-nav .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;

  height: 100%;
  padding: 6px 0 !important;
  margin: 0 18px;

  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;

  color: #222 !important;

  transition: color 0.25s ease;
}

/* GRADIENT UNDERLINE */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;

  width: 100%;
  height: 2px;

  background: linear-gradient(
    90deg,
    #5cc2ed,
    #5d62ee,
    #c298d3
  );

  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

/* HOVER + ACTIVE */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #5d62ee !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar-nav .nav-link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: #222 !important;

  padding: 8px 0;
  margin: 0 18px;

  transition: color 0.25s ease;
}
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile menu panel */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 16px;
    margin-top: 12px;
  }

  .navbar-nav .nav-link {
    margin: 8px 0;
  }
}

.container-fluid {
    padding: 0px 0px;
}


.page-head {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Optional subtle glow */
.page-head::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 240px;
  background: radial-gradient(
    circle,
    rgba(92, 194, 237, 0.15),
    transparent 70%
  );
  pointer-events: none;
}

/* Title */
.page-title {
  font-weight: 600;
  position: relative;
  display: inline-block;
}

/* Accent line */
.page-head-line {
  display: block;
  width: 64px;
  height: 3px;
  margin: 20px auto 0;
  background: linear-gradient(
    to right,
    #5cc2ed,
    #5d62ee,
    #c298d3
  );
  border-radius: 3px;
}
.page-title {
  animation: fadeUp 0.6s ease forwards;
}

.page-head-line {
  animation: growLine 0.6s ease 0.2s forwards;
  transform: scaleX(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes growLine {
  to {
    transform: scaleX(1);
  }
}

/* Button Styles */
.btn-outline-elegant {
    position: relative;
    background: transparent;
    color: #111;
    border: 1.5px solid #111;
    padding: 12px 28px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 0px;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
    text-transform: uppercase;
    font-size: 0.8em;
    font-weight: 500;
}
/* Subtle lift + color shift */
.btn-outline-elegant:hover {
  color: #fff;
  border-color: #111;
  transform: translateY(-1px);
}

/* Soft fill animation */
.btn-outline-elegant::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #111;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
}

.btn-outline-elegant:hover::before {
  transform: scaleX(1);
}

/* Spacing when side-by-side */
.btn-outline-elegant + .btn-outline-elegant {
  margin-left: 14px;
}

/* Contact Page Styles */
  button.wpforms-submit {

    background: #2b2d42 !important;
    border-radius: 40px !important;
    padding: 15px 80px !important;
    color: #ffffff !important;
    width:100%;
    height: 60px !important;
  }
  
  input, textarea {
    border: 1px solid #000000 !important;
  }


input.wpforms-field-large, textarea.wpforms-field-medium {
  border: 1px solid #f1f1f1 !important;
  box-shadow: 5px 5px 13px rgba(0, 0, 0, 0.2) !important;
  border-radius: 8px !important;
  
}
input.wpforms-field-large
{
  height: 50px !important;
}

.contact-page {
  background: #f9fafc;
}

/* Intro */
.contact-page .lead {
  font-size: 1.05rem;
  color: rgba(0, 0, 0, 0.75);
}

/* Contact blocks */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-block {
  position: relative;
  padding-left: 26px;
}

.contact-block .accent-line {
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 3px;
  height: 36px;
  background: linear-gradient(
    to bottom,
    #5cc2ed,
    #5d62ee
  );
  border-radius: 2px;
}

.contact-block p {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
}

.contact-block a {
  color: inherit;
  text-decoration: none;
}

.contact-block a:hover {
  text-decoration: underline;
}

/* Location note */
.location-note {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.55);
}

/* Form wrapper */
.contact-form-wrapper {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

/* WPForms refinements */
.contact-form-wrapper .wpforms-field-label {
  font-weight: 500;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 12px 14px;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
  border-color: #5d62ee;
  box-shadow: none;
}

/* Button */
.contact-form-wrapper .wpforms-submit {
  background: #5d62ee;
  border-radius: 999px;
  padding: 10px 28px;
  border: none;
}

.contact-form-wrapper .wpforms-submit:hover {
  background: #4b4fe3;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-form-wrapper {
    margin-top: 2rem;
  }
}

/* Footer Styles */
/* Footer base */
.footer {
  background: linear-gradient(
    to bottom,
    #0e1117,
    #0b0d12
  );
  color: rgba(255, 255, 255, 0.75);
  /* padding: 80px 0 60px; */
}

/* Logo */
.footer-logo {
  margin-bottom: 18px;
}

/* Tagline */
.footer-tagline {
  max-width: 420px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* Headings */
.footer h3 {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #ffffff;
}

/* Links list */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

/* Links */
.footer a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  position: relative;
  padding-left: 0;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

/* Elegant hover */
.footer a::before {
  content: "›";
  position: absolute;
  left: -12px;
  opacity: 0;
  color: #5cc2ed;
  transition: opacity 0.3s ease, left 0.3s ease;
}

.footer a:hover {
  color: #ffffff;
  padding-left: 12px;
}

.footer a:hover::before {
  opacity: 1;
  left: 0;
}

/* Contact text */
.footer-contact li {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact a {
  padding-left: 0;
}

.footer-contact a::before {
  display: none;
}

/* Colophon */
.colophon {
  background: #080a0f;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.colophon p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* About Page Styles */

.row.no-pad{
   --bs-gutter-x: 0rem;
}
h2.cta-heading {
    font-size: 3em;
}
p.cta-text {
    font-size: 1.1em;
    color: #363143;
}
.number {
    font-size: 14em;
    font-weight: 100;
    line-height: 1;
    background: linear-gradient(-90deg, #5cc2ed 0%, #5d62ee 50%, #c298d3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #00000000;
    opacity: 0.3;
}
.cta-section-wide {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(93,145,239,0.45),
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(202,151,210,0.35),
      transparent 65%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(148,123,225,0.25),
      transparent 70%
    );

  animation: radialDrift 20s ease-in-out infinite;
  padding: 10% 0%;
}

@keyframes radialDrift {
  0% {
    background-position: 0% 0%, 100% 100%, 50% 50%;
    background-size: 140% 140%, 160% 160%, 180% 180%;
  }

  25% {
    background-position: 100% 0%, 0% 100%, 50% 40%;
    background-size: 160% 160%, 140% 140%, 200% 200%;
  }

  50% {
    background-position: 100% 100%, 0% 0%, 50% 60%;
    background-size: 140% 140%, 160% 160%, 180% 180%;
  }

  75% {
    background-position: 0% 100%, 100% 0%, 50% 50%;
    background-size: 160% 160%, 140% 140%, 200% 200%;
  }

  100% {
    background-position: 0% 0%, 100% 100%, 50% 50%;
    background-size: 140% 140%, 160% 160%, 180% 180%;
  }
}
.content-section {
    padding: 10% 7%;
}

.img-sec {
        height: 100%;
  min-height: -webkit-fill-available;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: #f1f1f1;
}
.img-sec.service-1 {
  background-image: url('assets/images/service1.png'); /* replace */
}
.img-sec.service-2 {
  background-image: url('assets/images/service2.png'); /* replace */
}
.img-sec.service-3 {
  background-image: url('assets/images/service3.png'); /* replace */
}
.img-sec.service-4 {
  background-image: url('assets/images/service4.png'); /* replace */
}
.img-sec.service-5 {
  background-image: url('assets/images/service5.png'); /* replace */
}
.img-sec.service-6 {
  background-image: url('assets/images/service6.png'); /* replace */
}
.img-sec.service-7 {
  background-image: url('assets/images/service7.png'); /* replace */
}
.shift-up{
  margin-top:-3em;
}
.value-section .card{
  border:none;
}

/* Section base */
.differentiator {
  background: #ffffff;
  overflow: hidden;
}

/* Image side */
.diff-image {
  height: 100%;
  min-height: 520px;
  background-image: url('assets/images/set-apart.png'); /* replace */
  background-size: cover;
  background-position: center;
  /* filter: grayscale(10%) contrast(1.05); */
  position: relative;
  /* transition: transform 8s ease, filter 0.6s ease; */
}

/* Content side */
.diff-content {
  padding: 6rem 5rem;
  max-width: 720px;
}

/* Eyebrow */
.diff-content .section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin-bottom: 0.8rem;
}

/* Divider */
.diff-content .section-divider {
  display: block;
  width: 64px;
  height: 1px;
  margin: 1.5rem 0 2rem;
  background: linear-gradient(
    to right,
    #5cc2ed,
    rgba(92,194,237,0.25),
    transparent
  );
}

/* Text */
.diff-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.7);
  margin-bottom: 1.2rem;
}

/* Emphasis line */
.diff-content p.emphasis {
  font-weight: 500;
  color: rgba(0,0,0,0.9);
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 991px) {
  .diff-content {
    padding: 4rem 2rem;
  }

  .diff-image {
    min-height: 360px;
  }
}

/* Services Page */
.process-section {
  max-width: 900px;
  margin: 0 auto;
}

.process-intro {
  max-width: 720px;
  margin-bottom: 64px;
  color: #555;
}

.process-flow {
  position: relative;
  padding-left: 48px;
}

/* Vertical gradient spine */
.process-flow::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(92,194,237,0.4),
    rgba(194,152,211,0.4)
  );
}

.process-card {
  position: relative;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 28px 32px 32px;
  margin-bottom: 48px;

  box-shadow:
    0 20px 40px rgba(0,0,0,0.06),
    inset 0 0 0 1px rgba(0,0,0,0.05);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* Hover lift */
.process-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.08),
    inset 0 0 0 1px rgba(0,0,0,0.06);
}

/* Step badge */
.step-badge {
  position: absolute;
  left: -44px;
  top: 28px;

  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    -90deg,
    #8fd9f4,
    #8a8ef6,
    #ddb6e8
  );
  color: #fff;

  box-shadow: 0 10px 20px rgba(93,145,239,0.35);
}

.process-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.process-card p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}
p.subtext {
    text-transform: uppercase;
    color: #adadad;
    letter-spacing: 4px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  margin: 6px 8px 6px 0;

  font-size: 14px;
  font-weight: 500;
  color: #222;
  text-decoration: none;

  border: 1.5px solid rgba(0,0,0,0.18);
  border-radius: 999px;

  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(4px);

  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

/* Hover effect */
.tag:hover {
  color: #5d91ef;
  border-color: rgba(93,145,239,0.6);
  box-shadow: 0 10px 22px rgba(93,145,239,0.18);
  transform: translateY(-2px);
}

/* Focus (accessibility) */
.tag:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(93,145,239,0.35);
}
/* Section base */
.industry-intro {
  background: #ffffff;
  overflow: hidden;
}

/* Content side */
.content-section {
  padding: 6rem 5rem;
  /* max-width: 720px; */
}

/* Eyebrow */
.content-section .section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 0.8rem;
}

/* Heading */
.content-section h2 {
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Accent divider */
.content-section .section-divider {
  display: block;
  width: 64px;
  height: 1px;
  margin-bottom: 2rem;
  background: linear-gradient(
    to right,
    #5cc2ed,
    rgba(92,194,237,0.25),
    transparent
  );
}

/* Paragraphs */
.content-section p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

/* Image side */
.image-section {
  position: relative;
  height: 100%;
  min-height: 520px;
  
  background-size: cover;
  background-position: center;
  /* filter: saturate(0.9) contrast(1.05);
  transition: transform 8s ease, filter 0.6s ease; */
}
.image-section.about-img
{
    background-image: url('assets/images/about-bg.png'); /* change path */
}
/* Soft overlay for cohesion */
/* .image-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(255,255,255,0),
    rgba(255,255,255,0.65)
  );
} */

/* Gentle motion */
/* .industry-intro:hover .image-section {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.1);
} */

/* Responsive */
@media (max-width: 991px) {
  .content-section {
    padding: 4rem 2rem;
  }

  .image-section {
    min-height: 360px;
  }
}

.dark-solutions {
  background: radial-gradient(
    circle at 30% 20%,
    #1c2130,
    #0e1118
  );
  color: rgba(255,255,255,0.85);
}

/* Panel */
.solution-panel {
  position: relative;
  height: 100%;
  min-height: 480px;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
}

/* Background image */
.solution-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  filter: saturate(0.9) contrast(1.05);
  transform: scale(1.05);
  transition: transform 0.8s ease;
  z-index: 0;
}

/* Overlay */
.solution-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,17,24,0.95),
    rgba(14,17,24,0.6),
    rgba(14,17,24,0.2)
  );
  z-index: 1;
}

/* Content */
.solution-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.solution-content h3 {
  color: #fff;
  margin-bottom: 0.6rem;
}

.solution-content p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.2rem;
}

.solution-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-content ul li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
}

.solution-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 1px;
  background: rgba(92,194,237,0.8);
}

/* Hover depth */
.solution-panel:hover .solution-bg {
  transform: scale(1.15) translateY(-6px);
}
/* Section heading */
.dark-solutions .section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.6rem;
}

.dark-solutions .section-title {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

/* Technical divider line */
.section-divider {
  display: block;
  width: 72px;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(92,194,237,0.9),
    rgba(92,194,237,0.2),
    transparent
  );
}
.section-divider {
  transform-origin: left;
  animation: growLine 1.2s ease forwards;
}

@keyframes growLine {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}


.blueprint-section {
  background: radial-gradient(
    circle at 20% 20%,
    #f6f8fc,
    #ffffff
  );
  position: relative;
  overflow: hidden;
}

/* Grid */
.blueprint-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}

/* Connector line */
.blueprint-grid::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,0.15),
    transparent
  );
}

/* Nodes */
.blueprint-node {
  position: relative;
  padding: 2.2rem;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover lift */
.blueprint-node:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* Index */
.node-index {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: rgba(0,0,0,0.4);
  margin-bottom: 0.5rem;
}

/* Text */
.blueprint-node h4 {
  margin-bottom: 0.5rem;
}

.blueprint-node p {
  color: rgba(0,0,0,0.65);
}

/* Responsive */
@media (max-width: 992px) {
  .blueprint-grid {
    grid-template-columns: 1fr;
  }

  .blueprint-grid::before {
    display: none;
  }
}
.blueprint-node {
  animation: floatIn 0.8s ease both;
}

.blueprint-node:nth-child(2) {
  animation-delay: 0.15s;
}
.blueprint-node:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Home page styles */
/* HERO BASE */
.hero-section {
  position: relative;
  /* background: #f9fafc; */
  overflow: hidden;
  
}


/* CONTENT */
.hero-content h1 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  max-width: 720px;
  margin-bottom: 24px;
}

.hero-content h4 {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #555;
  margin-bottom: 36px;
  max-width: 660px;
}
.text-accent {
  background: linear-gradient(90deg, #5cc2ed, #5d62ee, #c298d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* CTA */
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(90deg, #5cc2ed, #5d62ee);
  border: none;
  padding: 14px 26px;
  font-weight: 500;
  border-radius: 999px;
  box-shadow: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 12px 24px rgba(93,145,239,0.25);
}
.btn-outline-dark {
  border: 1.5px solid rgba(0,0,0,0.25);
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  background: transparent;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease,
    color 0.3s ease;
}

.btn-outline-dark:hover {
  color: #ffffff;
  border-color: #000000;
  transform: translateY(-2px);
}


/* HERO VISUAL WRAPPER */
.hero-visual {
  position: relative;
  width: 100%;
  height: 460px;
  pointer-events: none;
}

/* BASE ORB */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  will-change: transform;

  animation:
    orb-drift 30s ease-in-out infinite,
    orb-breathe 14s ease-in-out infinite;
}

/* INDIVIDUAL ORBS */
.orb-one {
  width: 280px;
  height: 280px;
  background: #5cc2ed;
  top: 18%;
  left: 8%;
}

.orb-two {
  width: 340px;
  height: 340px;
  background: #5d62ee;
  top: 5%;
  right: -10%;
  animation-delay: -10s, -6s;
}

.orb-three {
  width: 260px;
  height: 260px;
  background: #c298d3;
  bottom: -5%;
  left: 30%;
  animation-delay: -20s, -12s;
}

/* ORBITAL DRIFT */
@keyframes orb-drift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(50px, -40px); }
  50%  { transform: translate(-40px, 50px); }
  75%  { transform: translate(30px, 20px); }
  100% { transform: translate(0, 0); }
}

/* BREATHING EFFECT */
@keyframes orb-breathe {
  0%, 100% {
    opacity: 0.5;
    filter: blur(80px);
  }
  50% {
    opacity: 0.75;
    filter: blur(70px);
  }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 991px) {
  .hero-visual {
    height: 300px;
  }

  .orb {
    filter: blur(60px);
    opacity: 0.45;
  }
}

.who-we-are {
  position: relative;
  background-color: transparent;
}

/* Small uppercase label */
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
}

/* Main heading */
.section-title {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  line-height: 1.2;
  font-weight: 500;
}

/* Body text */
.who-we-are p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.75);
}

.who-we-are .lead {
  font-size: 1.05rem;
  font-weight: 400;
}

.who-we-are .muted {
  color: rgba(0, 0, 0, 0.6);
}

/* Subtle vertical accent */
.who-we-are::before {
  content: "";
  position: absolute;
  top: 15%;
  bottom: 15%;

  /* align after left column */
  left: calc(33.333% + 1.5rem);

  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(92, 194, 237, 0.35),
    transparent
  );

  pointer-events: none;
}


/* Disable accent on small screens */
@media (max-width: 992px) {
  .who-we-are::before {
    display: none;
  }
}

.image-break {
  height: 60vh;
  background-image: url("assets/images/tech-industry.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: saturate(0.85) contrast(1.05);
}

.services-flow {
  background: #fafafa;
}

.service-flow-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0;
}

/* Animated line */
.service-flow-item .line {
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    #5cc2ed,
    #5d62ee,
    #c298d3
  );
  flex-shrink: 0;
  transition: width 1s ease;
}

/* Content */
.service-flow-item .content {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease;
}

.service-flow-item h5 {
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.service-flow-item p {
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.7);
}

/* Activated state */
.service-flow-item.is-visible .line {
  width: 80px;
}

.service-flow-item.is-visible .content {
  opacity: 1;
  transform: none;
}

.services-icons {
  background: transparent;
}

/* Service item */
.service-icon-item {
  position: relative;
  padding-left: 4.5rem;
  transition: transform 0.4s ease;
}

/* Icon container */
.icon-wrap {
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(92, 194, 237, 0.35),
    rgba(93, 98, 238, 0.15),
    transparent 70%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* Icon */
.icon-wrap img {
  width: 26px;
  height: 26px;
  filter: saturate(1.1);
  transition: transform 0.6s ease;
}

/* Typography */
.service-icon-item h5 {
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.service-icon-item p {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0;
}

/* Hover effects */
.service-icon-item:hover {
  transform: translateY(-4px);
}

.service-icon-item:hover .icon-wrap {
  box-shadow: 0 0 0 12px rgba(92, 194, 237, 0.06);
}

.service-icon-item:hover .icon-wrap img {
  transform: rotate(-6deg) scale(1.05);
}
.service-icon-item {
  opacity: 0;
  transform: translateY(20px);
}

.service-icon-item.visible {
  opacity: 1;
  transform: none;
  transition: all 0.7s ease;
}

.our-approach {
  position: relative;
  background: #fafafa;
}

/* Flow container */
.approach-flow {
  position: relative;
}

.approach-step {
  position: relative;
}

/* Icon wrapper becomes the anchor */
.approach-icon-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
}

/* Horizontal connector lines */
.approach-icon-wrap::before,
.approach-icon-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 120px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(92, 194, 237, 0.6)
  );
}

/* Left line */
.approach-icon-wrap::before {
  right: 100%;
  margin-right: 16px;
}

/* Right line */
.approach-icon-wrap::after {
  left: 100%;
  margin-left: 16px;
  transform: scaleX(-1);
}

/* Remove outer lines on edges */
.approach-step:first-child .approach-icon-wrap::before,
.approach-step:last-child .approach-icon-wrap::after {
  display: none;
}


/* Step */
.approach-step {
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/* Icon container */
.approach-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(92, 194, 237, 0.35),
    rgba(93, 98, 238, 0.2),
    transparent 70%
  );
  position: relative;
  margin-bottom: 1rem;
}

/* Inner pulse */
.approach-icon span {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(92, 194, 237, 0.5);
  animation: pulse 3.5s ease-in-out infinite;
}

/* Typography */
.approach-step h5 {
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.approach-step p {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.7);
}

/* Pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .approach-flow::before {
    display: none;
  }
}

.dark-section {
  background: radial-gradient(
    circle at 30% 20%,
    #1e2230,
    #0f1117
  );
  color: rgba(255, 255, 255, 0.85);
}

/* Eyebrow */
.dark-section .section-eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

/* Text */
.dark-section p {
  color: rgba(255, 255, 255, 0.7);
}

/* Icon glow */
.dark-section .approach-icon {
  background: radial-gradient(
    circle at 30% 30%,
    rgba(92, 194, 237, 0.6),
    rgba(93, 98, 238, 0.3),
    transparent 70%
  );
}

/* Pulse ring */
.dark-section .approach-icon span {
  border-color: rgba(92, 194, 237, 0.7);
}

/* Headings */
.dark-section h2,
.dark-section h5 {
  color: #ffffff;
}
.dark-section .section-title {
  max-width: 520px;
}

@media (max-width: 768px) {
  .approach-icon-wrap::before,
  .approach-icon-wrap::after {
    display: none;
  }
}

/* Section */
.industry-showcase {
  background: #f7f8fb;
  position: relative;
}

/* Subheading */
.industry-showcase h5 {
  color: rgba(0, 0, 0, 0.55);
  font-weight: 400;
}

.why-hecta {
  background: #f9fafc;
}

/* Subtitle */
.why-hecta .section-subtitle {
  color: rgba(0, 0, 0, 0.55);
  font-weight: 400;
  max-width: 520px;
}

/* Reason block */
.reason-block {
  position: relative;
  padding-left: 28px;
}

/* Vertical accent */
.reason-block .accent-line {
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 3px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    #5cc2ed,
    #5d62ee
  );
  border-radius: 2px;
}

/* Headings */
.reason-block h5 {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* Text */
.reason-block p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}


/* back to top button */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 999;
}

/* Vertical line */
.back-to-top .line {
  width: 1px;
  height: 48px;
  background: linear-gradient(
    to top,
    rgba(92,194,237,0.9),
    rgba(92,194,237,0.2)
  );
  transition: height 0.3s ease;
}

/* Vertical text */
.back-to-top .text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(128 128 128);
  transition: color 0.3s ease;
}

/* Hover refinement */
.back-to-top:hover .text {
  color: rgba(0,0,0,0.85);
}

.back-to-top:hover .line {
  height: 64px;
}

/* Visible state */
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
