/* =====================================================
   SunMite Infotech – Premium Dark Studio Theme (FINAL)
   ===================================================== */

:root {
  --primary: #ff6a3d;
  --secondary: #6a5cff;
  --gradient: linear-gradient(135deg, #ff6a3d, #6a5cff);
}

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

html { scroll-behavior: smooth; }

body {
  opacity: 0;
  animation: pageFadeIn 0.8s ease forwards;
}

@keyframes pageFadeIn {
  to { opacity: 1; }
}


/* ================= CONTAINER ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 88px;
  background: rgba(18,16,48,0.92);
  backdrop-filter: blur(18px);
  z-index: 1000;
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}

.header.scrolled {
  height: 72px;
  backdrop-filter: blur(22px);
}

.header.scrolled .header-inner {
  height: 72px;
}

.header.scrolled .logo-img {
  width: 50px;
}

.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 58px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}


.logo-title {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(90deg,#ff6a3d,#6a5cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-link {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
}



/* ================= NAV ================= */
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu {
  display: flex;
  gap: 34px;
  list-style: none;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-size: 18px;
}

.nav-menu li.active a,
.nav-menu li:hover a {
  color: #fff;
}

.nav-menu li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-menu li.active::after,
.nav-menu li:hover::after {
  width: 26px;
}

.nav-cta {
  padding: 10px 22px;
  background: var(--gradient);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* ================= HERO ================= */
.hero {
  min-height: 100vh;
  padding-top: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 30%, rgba(106,92,255,0.35), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(255,106,61,0.35), transparent 55%),
    linear-gradient(180deg, #0b0d17, #070812);
}

.hero-content {
  max-width: 880px;
  text-align: center;
  padding: 0 20px;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(16px);
  animation: heroReveal 0.8s ease forwards;
}

.hero-content > *:nth-child(1) { animation-delay: .1s }
.hero-content > *:nth-child(2) { animation-delay: .2s }
.hero-content > *:nth-child(3) { animation-delay: .3s }
.hero-content > *:nth-child(4) { animation-delay: .4s }
.hero-content > *:nth-child(5) { animation-delay: .5s }

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* HERO TAG */
.hero-tag {
  font-size: 1.15rem;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #ff6a3d, #6a5cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* HERO TITLE */
.hero h1 {
  font-size: 3.6rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 22px;
}

/* HERO TEXT */
.hero p {
  max-width: 640px;
  margin: 0 auto 36px;
  opacity: 0.88;
  line-height: 1.6;
}

/* HERO BUTTONS */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.btn-primary {
  padding: 14px 38px;
  background: var(--gradient);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline {
  padding: 14px 36px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
}

/* HERO STACK */
.hero-stack {
  margin-top: 16px;
  margin-bottom: 42px;
  padding-top: 14px;
  font-size: 0.95rem;
  letter-spacing: 1px;
  opacity: 0.75;
  position: relative;
}

.hero-stack::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transform: translateX(-50%);
}

/* ================= GLOBAL SECTION BASE ================= */
.section,
.services-section,
.whyus-pro,
.tech-pro,
.about-pro,
.contact-pro {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.section {
  background:
    radial-gradient(circle at 18% 25%, rgba(106,92,255,0.16), transparent 55%),
    radial-gradient(circle at 82% 70%, rgba(255,106,61,0.14), transparent 55%);
}

/* soft depth overlay */
.section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.15),
      transparent 30%,
      transparent 70%,
      rgba(0,0,0,0.2)
    );
  pointer-events: none;
}

/* ================= GLOBAL SECTION HEADER ================= */
.section-header {
  max-width: 880px;
  margin: 0 auto 64px;
  text-align: center;
}

/* LABEL */
.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
}

.section-eyebrow .label {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.section-eyebrow .line {
  width: 46px;
  height: 2px;
  background: var(--gradient);
}

/* TITLE */
.section-title {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* PRIMARY DESC */
.section-desc-primary {
  font-size: 1.05rem;
  opacity: 0.8;
  margin-bottom: 12px;
}

/* SECONDARY DESC */
.section-desc-secondary {
  font-size: 0.95rem;
  opacity: 0.7;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}


/* ================= SERVICES SECTION ================= */

/* Subtle depth overlay */
.services-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.15),
      transparent 35%,
      transparent 65%,
      rgba(0,0,0,0.2)
    );
  pointer-events: none;
}


/* ================= GRID ================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 28px;
}

/* ================= CARD ================= */
.service-card {
  position: relative;
  padding: 38px 30px 42px;
  border-radius: 22px;
  text-align: center;

  background:
    linear-gradient(
      160deg,
      rgba(255,255,255,0.085),
      rgba(255,255,255,0.02)
    );

  backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.12);

  box-shadow: 0 24px 52px rgba(0,0,0,0.6);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  overflow: hidden;
  z-index: 1;
}

/* Controlled glow */
.service-card::before {
  content: "";
  position: absolute;
  inset: -35%;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.25;
  z-index: -1;
  transition: opacity 0.45s ease;
}

/* Gradient variants */
.gradient-1::before { background: radial-gradient(circle, rgba(255,90,120,0.9), transparent 65%); }
.gradient-2::before { background: radial-gradient(circle, rgba(90,160,255,0.9), transparent 65%); }
.gradient-3::before { background: radial-gradient(circle, rgba(90,220,255,0.9), transparent 65%); }
.gradient-4::before { background: radial-gradient(circle, rgba(170,120,255,0.9), transparent 65%); }
.gradient-5::before { background: radial-gradient(circle, rgba(255,160,60,0.9), transparent 65%); }
.gradient-6::before { background: radial-gradient(circle, rgba(140,90,255,0.9), transparent 65%); }
.gradient-7::before { background: radial-gradient(circle, rgba(255,170,90,0.9), transparent 65%); }

.service-card:hover::before {
  opacity: 0.85;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255,255,255,0.15), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow:
    0 50px 100px rgba(0,0,0,0.8),
    0 0 60px rgba(106,92,255,0.25);
}

.service-card:hover::after {
  opacity: 1;
}

/* Icon */
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 14px 34px rgba(106,92,255,0.55);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.08);
  box-shadow: 0 18px 40px rgba(106,92,255,0.75);
}

/* Text */
.service-card h3 {
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 14px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.78;
  max-width: 260px;
  margin: 0 auto;
}



/* ================= WHY US ================= */

.whyus-body {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 110px;
  align-items: flex-start;
  position: relative;
}

/* ================= PROCESS RAIL ================= */

.whyus-rail {
  position: relative;
  padding-left: 56px;
}

.rail-line {
  position: absolute;
  left: 13px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,.15),
    rgba(106,92,255,.6),
    rgba(255,106,61,.6)
  );
  z-index: 1;
}


/* ================= RAIL STEPS ================= */

.rail-step {
  position: relative;
  margin-bottom: 46px;
  opacity: 0.32;
  transition: opacity 0.35s ease;
}

.rail-step.active {
  opacity: 1;
}

/* BULLET */
.rail-step::before {
  content: "";
  position: absolute;

  left: -51px;            
  top: 50%;
  transform: translateY(-50%);

  width: 14px;
  height: 14px;
  border-radius: 50%;

  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.45);

  z-index: 3;
}

.rail-step.active::before {
  background: linear-gradient(135deg, #ff6a3d, #6a5cff);
  border-color: transparent;
  box-shadow: 0 0 18px rgba(106,92,255,0.9);
}


.rail-step span {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ff6a3d, #6a5cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rail-step h4 {
  margin: 6px 0 6px;
  font-size: 1.5rem;
  font-weight: 600;
}

.rail-step p {
  font-size: 1.25rem;
  opacity: 0.75;
  line-height: 1.6;
}

/* ================= VALUE CARDS ================= */

.whyus-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* GLASS CARD */
.whyus-glass {
  position: relative;
  padding: 34px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );
  box-shadow: 0 28px 60px rgba(0,0,0,0.6);
  opacity: 0.35;
  transform: scale(0.96);
  transition: all 0.45s ease;
}

.whyus-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(18px);
  border-radius: inherit;
  z-index: -1;
}

.whyus-glass.active {
  opacity: 1;
  transform: scale(1);
  box-shadow:
    0 45px 90px rgba(0,0,0,0.75),
    0 0 45px rgba(106,92,255,0.28);
}

/* Floating stagger */
.c1 { transform: translateY(0) scale(0.96); }
.c2 { transform: translateY(18px) scale(0.96); }
.c3 { transform: translateY(-10px) scale(0.96); }
.c4 { transform: translateY(28px) scale(0.96); }

.whyus-glass.active.c1,
.whyus-glass.active.c2,
.whyus-glass.active.c3,
.whyus-glass.active.c4 {
  transform: translateY(0) scale(1);
}

.whyus-glass h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
   background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.whyus-glass p {
  font-size: 1.25rem;
  opacity: 0.75;
  line-height: 1.6;
}

/* ================= CTA ================= */

.whyus-action {
  margin-top: 120px;
  text-align: center;
}

.whyus-action h3 {
  font-size: 2.3rem;
  margin-bottom: 36px;
}
/* ================= iOS SAFARI ================= */

@supports (-webkit-touch-callout: none) {
  .rail-step::before {
    top: 50%;
    transform: translateY(-50%);
  }
}


/* ================= TECH ================= */
/* Subtle background depth */
.tech-pro::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.15),
      transparent 30%,
      transparent 70%,
      rgba(0,0,0,0.2)
    );
  pointer-events: none;
}


/* ================= BODY GRID ================= */
.tech-body {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 90px;
  align-items: center;
  position: relative;
}

/* ================= LEFT CONTENT ================= */
.tech-content {
  position: relative;
}

.tech-content::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 0;
  width: 4px;
  height: 80px;
  border-radius: 10px;
  background: var(--gradient);
}

.tech-content h3 {
  font-size: 2.1rem;
  margin-bottom: 16px;
}

.tech-content p {
  opacity: .78;
  line-height: 1.6;
  margin-bottom: 30px;
}

.tech-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  opacity: .85;
}

.tech-points li::before {
  content: "✔";
  font-size: 1.0rem;
  color: #6a5cff;
}

/* ================= TECH GRID ================= */
.tech-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Soft orb behind cards */
.tech-grid::before {
  content: "";
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(circle at center, rgba(106,92,255,.12), transparent 60%);
  pointer-events: none;
}
/* ================= TECH GLASS CARDS ================= */
.tech-glass {
  position: relative;
  padding: 32px;
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.08),
      rgba(255,255,255,.03)
    );
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 60px rgba(0,0,0,.55);
  transition: transform .45s ease, box-shadow .45s ease;
}

.tech-glass:hover {
  transform: translateY(-10px);
  box-shadow:
    0 45px 90px rgba(0,0,0,.75),
    0 0 40px rgba(255,106,61,.25);
}

.tech-glass h4 {
  margin-bottom: 18px;
  font-size: 1.1rem;
  letter-spacing: .4px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= TAGS ================= */
.tech-glass span {
  display: inline-block;
  padding: 7px 16px;
  margin: 0 10px 12px 0;
  border-radius: 999px;
  font-size: .85rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  opacity: .8;
  transition: all .35s ease;
}

.tech-glass span:hover {
  opacity: 1;
  background: rgba(106,92,255,.18);
  border-color: rgba(106,92,255,.45);
  transform: translateY(-2px);
}

/* ================= FOOTER ================= */
.tech-footer {
  margin-top: 90px;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  opacity: .7;
  font-size: 1.0rem;
}

/* ================= ABOUT ================= */

/* BODY GRID */
.about-body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 100px;
  margin-top: 80px;
  align-items: center;
}

/* LEFT STORY */
.about-story h3 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 28px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #ffffff;
}


/* HIGHLIGHT STATEMENT */
.about-story p {
  max-width: 620px;
  font-size: 1.02rem;
  line-height: 1.6;       
  margin-bottom: 22px;
  color: rgba(255,255,255,0.82);
}


/* SUBTLE GRADIENT ACCENT BAR */
.about-story p.about-highlight {
  max-width: 510px;
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.35px;
  margin: 46px 0 54px;
  padding-left: 26px;
  position: relative;
  color: rgba(255,255,255,0.95);
}

.about-story p.about-highlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 3px;
  height: 70%;
  border-radius: 6px;
  background: linear-gradient(
    to bottom,
    #ff6a3d,
    #6a5cff
  );
  box-shadow: 0 0 12px rgba(106,92,255,0.45);
}

.about-story p.about-highlight span {
  background: linear-gradient(135deg, #ff6a3d, #6a5cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}


/* RIGHT IMPACT GRID */
.about-impact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.about-glass {
  padding: 36px 30px;
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.09),
      rgba(255,255,255,.03)
    );
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 60px rgba(0,0,0,.6);
  transition: transform .45s ease, box-shadow .45s ease;
}

.about-glass:hover {
  transform: translateY(-8px);
  box-shadow:
    0 45px 90px rgba(0,0,0,.75),
    0 0 40px rgba(106,92,255,.3);
}

.about-glass strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 10px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-glass span {
  font-size: .95rem;
  opacity: .75;
}

/* ================= CONTACT ================= */
/* BODY GRID */
/*.contact-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  margin-top: 80px;
  align-items: center;
}*/

/* LEFT INFO */
/*.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-info p {
  opacity: .82;
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact-points {
  list-style: none;
  padding: 0;
  margin-bottom: 34px;
}

.contact-points li {
  margin-bottom: 12px;
  font-size: .95rem;
  opacity: .9;
}*/

/* SUB NOTE */
/*.contact-note {
  font-size: .9rem;
  opacity: .65;
  border-left: 3px solid #6a5cff;
  padding-left: 14px;
}*/

/* RIGHT GLASS FORM */
/*.contact-glass {
  padding: 40px;
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.09),
      rgba(255,255,255,.03)
    );
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 35px 70px rgba(0,0,0,.65);
}

.contact-glass h4 {
  margin-bottom: 24px;
  font-size: 1.2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}*/

/* FORM */
/*.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,.55);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #6a5cff;
}*/
/* ================= CONTACT (MINIMAL) ================= */

.contact-minimal {
  padding: 120px 0 130px;
  position: relative;
  overflow: hidden;
}

/* Glass card */
.contact-card-glass {
  max-width: 720px;
  margin: 80px auto 0;
  padding: 50px 56px;
  text-align: center;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.10),
      rgba(255,255,255,.03)
    );

  border-radius: 28px;
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,.14);

  box-shadow:
    0 40px 90px rgba(0,0,0,.75),
    0 0 60px rgba(106,92,255,.18);
}

/* Lead text */
.contact-lead {
  font-size: 1.1rem;
  opacity: .8;
  margin-bottom: 34px;
}

/* Actions */
.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 34px;
}

/* Action blocks */
.contact-action {
  padding: 22px 20px;
  border-radius: 18px;
  text-decoration: none;
  color: #fff;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);

  transition: all .4s ease;
}

.contact-action span {
  display: block;
  font-size: .75rem;
  letter-spacing: .8px;
  opacity: .65;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.contact-action strong {
  font-size: 1rem;
  font-weight: 600;
}

/* Primary */
.contact-action.primary {
  background:
    linear-gradient(
      135deg,
      rgba(106,92,255,.28),
      rgba(255,106,61,.22)
    );
  border-color: rgba(255,255,255,.22);
}

.contact-action:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.6);
}

/* Note */
.contact-note {
  font-size: .85rem;
  opacity: .6;
}

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

  .contact-card-glass {
    padding: 40px 26px;
  }
}


/* ================= FOOTER ================= */
.footer-minimal {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* COPYRIGHT */
.footer-copy {
  font-size: 1.0rem;
  opacity: 0.65;
  /*background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 14px;
  margin-right: 90px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #ff6a3d, #6a5cff);
}

.footer-social a:hover svg {
  transform: scale(1.1);
}


.footer-social svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;

  background: linear-gradient(135deg, #ff6a3d, #6a5cff);

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

  box-shadow:
    0 16px 36px rgba(106, 92, 255, 0.45),
    0 0 0 0 rgba(37, 211, 102, 0.4);

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

/* Icon */
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow:
    0 18px 45px rgba(37, 211, 102, 0.65),
    0 0 25px rgba(37, 211, 102, 0.8);
}

/* ================= RESPONSIVE ================= */
/* ===================== ≤ 1200px ===================== */
/* Large tablets / small laptops */
@media (max-width: 1200px) {

  .section-title {
    font-size: 2.4rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .whyus-body,
  .tech-body,
  .about-body {
    gap: 70px;
  }
}

/* ===================== ≤ 992px ===================== */
/* Tablets */
@media (max-width: 992px) {

  /* ---------- HEADER ---------- */
  .nav-menu {
    display: none;
  }

  .nav-cta {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  /* ---------- HERO ---------- */
  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1rem;
  }

  /* ---------- SERVICES ---------- */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ---------- WHY US ---------- */
  .whyus-body {
    grid-template-columns: 1fr;
  }

  .whyus-rail {
    padding-left: 48px;
  }

  /* ---------- TECH ---------- */
  .tech-body {
    grid-template-columns: 1fr;
  }

  .tech-content::before {
    display: none;
  }

  /* ---------- ABOUT ---------- */
  .about-body {
    grid-template-columns: 1fr;
  }

  .about-highlight {
    max-width: 100%;
  }
}

/* ===================== ≤ 768px ===================== */
/* Mobile */
@media (max-width: 768px) {

  /* ---------- GLOBAL ---------- */
  .section,
  .services-section,
  .whyus-pro,
  .tech-pro,
  .about-pro,
  .contact-minimal {
    padding: 90px 0;
  }

  .section-header {
    margin-bottom: 44px;
  }

  .section-title {
    font-size: 2rem;
  }

  /* ---------- HERO ---------- */
  .hero h1 {
    font-size: 2.4rem;
    line-height: 1.2;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  /* ---------- SERVICES ---------- */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* ---------- WHY US ---------- */
  .rail-step span {
    font-size: 1.3rem;
  }
  
  .rail-step::before {
    left: -46px;
  }


  .rail-step h4 {
    font-size: 1.2rem;
  }

  .rail-step p {
    font-size: 1rem;
  }

   .whyus-cards {
    grid-template-columns: 1fr;
  }

  /* ---------- TECH ---------- */
  .tech-grid {
    grid-template-columns: 1fr;
  }

  /* ---------- ABOUT ---------- */
  .about-story h3 {
    font-size: 2rem;
  }

  .about-story p {
    font-size: 0.95rem;
  }

  .about-story p.about-highlight {
    font-size: 1.4rem;
    padding-left: 18px;
  }

  /* ---------- CONTACT ---------- */
  .contact-card-glass {
    margin-top: 40px;
    padding: 36px 24px;
  }
}

/* ===================== ≤ 480px ===================== */
/* Small mobile */
@media (max-width: 480px) {

  /* ---------- LOGO ---------- */
  .logo-img {
    width: 44px;
  }

  .logo-title {
    font-size: 22px;
  }

  .logo-subtitle {
    font-size: 11px;
  }

  /* ---------- HERO ---------- */
  .hero h1 {
    font-size: 2.05rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  /* ---------- SECTION LABEL ---------- */
  .section-eyebrow .label {
    font-size: 1.9rem;
  }

  /* ---------- FOOTER ---------- */
  .footer-bottom-wrap {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  /* ---------- WHATSAPP ---------- */
  .whatsapp-float {
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}
